duhe
2024-10-25 948bc8f68b05abd2c942217159de1fe31075f8cd
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiCallBackGetCallBackFailedResultResponse.
    /// </summary>
    public class OapiCallBackGetCallBackFailedResultResponse : DingTalkResponse
    {
        /// <summary>
        /// errcode
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// errmsg
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 事件列表,一次最多200个
        /// </summary>
        [XmlArray("failed_list")]
        [XmlArrayItem("failed")]
        public List<FailedDomain> FailedList { get; set; }
 
        /// <summary>
        /// has_more
        /// </summary>
        [XmlElement("has_more")]
        public bool HasMore { get; set; }
 
    /// <summary>
/// FailedDomain Data Structure.
/// </summary>
[Serializable]
 
public class FailedDomain : TopObject
{
            /// <summary>
            /// bpms_instance_change
            /// </summary>
            [XmlElement("bpms_instance_change")]
            public string BpmsInstanceChange { get; set; }
    
            /// <summary>
            /// bpms_task_change
            /// </summary>
            [XmlElement("bpms_task_change")]
            public string BpmsTaskChange { get; set; }
    
            /// <summary>
            /// 事件类型,有20种,“user_add_org”, “user_modify_org”, “user_leave_org”,“org_admin_add”, “org_admin_remove”, “org_dept_create”, “org_dept_modify”, “org_dept_remove”, “org_remove”, “chat_add_member”, “chat_remove_member”, “chat_quit”, “chat_update_owner”, “chat_update_title”, “chat_disband”,“chat_disband_microapp”, “check_in”,“bpms_task_change”,“bpms_instance_change”,“label_user_change”, “label_conf_add”, “label_conf_modify”,“label_conf_del”
            /// </summary>
            [XmlElement("call_back_tag")]
            public string CallBackTag { get; set; }
    
            /// <summary>
            /// check_in
            /// </summary>
            [XmlElement("check_in")]
            public string CheckIn { get; set; }
    
            /// <summary>
            /// data
            /// </summary>
            [XmlElement("data")]
            public string Data { get; set; }
    
            /// <summary>
            /// event_time
            /// </summary>
            [XmlElement("event_time")]
            public long EventTime { get; set; }
    
            /// <summary>
            /// org_admin_add
            /// </summary>
            [XmlElement("org_admin_add")]
            public string OrgAdminAdd { get; set; }
    
            /// <summary>
            /// org_admin_remove
            /// </summary>
            [XmlElement("org_admin_remove")]
            public string OrgAdminRemove { get; set; }
    
            /// <summary>
            /// org_change
            /// </summary>
            [XmlElement("org_change")]
            public string OrgChange { get; set; }
    
            /// <summary>
            /// org_dept_create
            /// </summary>
            [XmlElement("org_dept_create")]
            public string OrgDeptCreate { get; set; }
    
            /// <summary>
            /// org_dept_modify
            /// </summary>
            [XmlElement("org_dept_modify")]
            public string OrgDeptModify { get; set; }
    
            /// <summary>
            /// org_dept_remove
            /// </summary>
            [XmlElement("org_dept_remove")]
            public string OrgDeptRemove { get; set; }
    
            /// <summary>
            /// user_add_org
            /// </summary>
            [XmlElement("user_add_org")]
            public string UserAddOrg { get; set; }
    
            /// <summary>
            /// user_leave_org
            /// </summary>
            [XmlElement("user_leave_org")]
            public string UserLeaveOrg { get; set; }
    
            /// <summary>
            /// user_modify_org
            /// </summary>
            [XmlElement("user_modify_org")]
            public string UserModifyOrg { get; set; }
}
 
    }
}