wtt
2024-10-18 cd50e79ee0899945e12c0092b83b105649e70e84
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api.Util;
using Top.Api;
using Top.Api.DingTalk;
 
namespace DingTalk.Api.Request
{
    /// <summary>
    /// TOP API: dingtalk.oapi.smartdevice.batchevent.post
    /// </summary>
    public class OapiSmartdeviceBatcheventPostRequest : BaseDingTalkRequest<DingTalk.Api.Response.OapiSmartdeviceBatcheventPostResponse>
    {
        /// <summary>
        /// 自动创建
        /// </summary>
        public string DeviceEventVos { get; set; }
 
        public List<DeviceEventVoDomain> DeviceEventVos_ { set { this.DeviceEventVos = TopUtils.ObjectToJson(value); } } 
 
        #region IDingTalkRequest Members
 
        public override string GetApiName()
        {
            return "dingtalk.oapi.smartdevice.batchevent.post";
        }
 
        public override string GetApiCallType()
        {
            return DingTalkConstants.CALL_TYPE_OAPI;
        }
 
        public override IDictionary<string, string> GetParameters()
        {
            TopDictionary parameters = new TopDictionary();
            parameters.Add("device_event_vos", this.DeviceEventVos);
            if (this.otherParams != null)
            {
                parameters.AddAll(this.otherParams);
            }
            return parameters;
        }
 
        public override void Validate()
        {
            RequestValidator.ValidateObjectMaxListSize("device_event_vos", this.DeviceEventVos, 999);
        }
 
    /// <summary>
/// DeviceEventVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class DeviceEventVoDomain : TopObject
{
            /// <summary>
            /// json格式的数据体
            /// </summary>
            [XmlElement("data")]
            public string Data { get; set; }
    
            /// <summary>
            /// 设备名称
            /// </summary>
            [XmlElement("dn")]
            public string Dn { get; set; }
    
            /// <summary>
            /// 产品key
            /// </summary>
            [XmlElement("pk")]
            public string Pk { get; set; }
    
            /// <summary>
            /// 事件对应的topic
            /// </summary>
            [XmlElement("topic")]
            public string Topic { get; set; }
}
 
        #endregion
    }
}