wtt
2024-10-25 e7965a19a7c7cfb8fdb28ed6cc922d523c7d4aeb
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
138
139
140
141
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiAuthorizationRbacPermissionGetResponse.
    /// </summary>
    public class OapiAuthorizationRbacPermissionGetResponse : DingTalkResponse
    {
        /// <summary>
        /// 服务端响应
        /// </summary>
        [XmlElement("result")]
        public DingOpenResultDomain Result { get; set; }
 
    /// <summary>
/// OpenContactScopeVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class OpenContactScopeVoDomain : TopObject
{
            /// <summary>
            /// 部门id列表
            /// </summary>
            [XmlArray("dept_ids")]
            [XmlArrayItem("number")]
            public List<long> DeptIds { get; set; }
    
            /// <summary>
            /// 被授权人所在的部门
            /// </summary>
            [XmlElement("include_member_depts")]
            public bool IncludeMemberDepts { get; set; }
    
            /// <summary>
            /// 被授权人所管理的部门
            /// </summary>
            [XmlElement("include_self_manage_depts")]
            public bool IncludeSelfManageDepts { get; set; }
    
            /// <summary>
            /// 员工列表
            /// </summary>
            [XmlArray("userids")]
            [XmlArrayItem("string")]
            public List<string> Userids { get; set; }
}
 
    /// <summary>
/// OpenConditionVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class OpenConditionVoDomain : TopObject
{
            /// <summary>
            /// 通讯录范围约束
            /// </summary>
            [XmlElement("open_contact_scope")]
            public OpenContactScopeVoDomain OpenContactScope { get; set; }
}
 
    /// <summary>
/// OpenActionResultVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class OpenActionResultVoDomain : TopObject
{
            /// <summary>
            /// actionId
            /// </summary>
            [XmlElement("action_id")]
            public string ActionId { get; set; }
    
            /// <summary>
            /// 权限的范围约束
            /// </summary>
            [XmlElement("open_condition")]
            public OpenConditionVoDomain OpenCondition { get; set; }
}
 
    /// <summary>
/// PermitResultVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class PermitResultVoDomain : TopObject
{
            /// <summary>
            /// action列表
            /// </summary>
            [XmlArray("open_action_results")]
            [XmlArrayItem("open_action_result_vo")]
            public List<OpenActionResultVoDomain> OpenActionResults { get; set; }
    
            /// <summary>
            /// 是否有权限
            /// </summary>
            [XmlElement("permit")]
            public bool Permit { get; set; }
}
 
    /// <summary>
/// DingOpenResultDomain Data Structure.
/// </summary>
[Serializable]
 
public class DingOpenResultDomain : TopObject
{
            /// <summary>
            /// errcode
            /// </summary>
            [XmlElement("errcode")]
            public long Errcode { get; set; }
    
            /// <summary>
            /// errmsg
            /// </summary>
            [XmlElement("errmsg")]
            public string Errmsg { get; set; }
    
            /// <summary>
            /// PermitResultVo
            /// </summary>
            [XmlElement("result")]
            public PermitResultVoDomain Result { get; set; }
    
            /// <summary>
            /// 鉴权成功
            /// </summary>
            [XmlElement("success")]
            public bool Success { get; set; }
}
 
    }
}