zrg
2024-08-16 18865d8bf24382e850e661dec6cca0e8b9dba6ae
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.scene21d8pajl08.Request
{
    /// <summary>
    /// TOP API: dingtalk.oapi.lingjiu.test
    /// </summary>
    public class DingtalkOapiLingjiuTestRequest : BaseQimenCloudRequest<QimenCloud.Api.scene21d8pajl08.Response.DingtalkOapiLingjiuTestResponse>
    {
        #region IQimenCloudRequest Members
 
        public override string GetApiName()
        {
            return "dingtalk.oapi.lingjiu.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
    }
}