1
yusijie
2 天以前 bff221c68b6ba5644a5b810e304479af15cf48d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using Top.Api.Util;
using Top.Api;
 
namespace QimenCloud.Api.scenen95wrxpkif.Request
{
    /// <summary>
    /// TOP API: cilai.dingtalk.test
    /// </summary>
    public class CilaiDingtalkTestRequest : BaseQimenCloudRequest<QimenCloud.Api.scenen95wrxpkif.Response.CilaiDingtalkTestResponse>
    {
        #region IQimenCloudRequest Members
 
        public override string GetApiName()
        {
            return "cilai.dingtalk.test";
        }
        
        public override IDictionary<string, string> GetParameters()
        {
            TopDictionary parameters = new TopDictionary();
            if (this.otherParams != null)
            {
                parameters.AddAll(this.otherParams);
            }
            return parameters;
        }
 
        public override void Validate()
        {
        }
 
        #endregion
    }
}