tencentcloud-sdk-python 3.0.1273__py2.py3-none-any.whl → 3.0.1275__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/apigateway/v20180808/apigateway_client.py +46 -0
- tencentcloud/apigateway/v20180808/models.py +362 -0
- tencentcloud/autoscaling/v20180419/models.py +13 -11
- tencentcloud/bi/v20220105/bi_client.py +46 -0
- tencentcloud/bi/v20220105/errorcodes.py +3 -0
- tencentcloud/bi/v20220105/models.py +701 -24
- tencentcloud/billing/v20180709/models.py +105 -114
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/cdwch/v20200915/errorcodes.py +6 -0
- tencentcloud/cloudhsm/v20191112/models.py +10 -170
- tencentcloud/cls/v20201016/cls_client.py +1 -1
- tencentcloud/cls/v20201016/models.py +16 -4
- tencentcloud/config/v20220802/config_client.py +46 -0
- tencentcloud/config/v20220802/models.py +664 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +46 -0
- tencentcloud/dnspod/v20210323/models.py +188 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +20 -12
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +12 -8
- tencentcloud/goosefs/v20220519/models.py +15 -0
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hunyuan/v20230901/models.py +21 -4
- tencentcloud/ivld/v20210903/errorcodes.py +2 -2
- tencentcloud/lcic/v20220817/lcic_client.py +46 -0
- tencentcloud/lcic/v20220817/models.py +505 -2
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +24 -4
- tencentcloud/live/v20180801/errorcodes.py +12 -0
- tencentcloud/live/v20180801/live_client.py +142 -0
- tencentcloud/live/v20180801/models.py +619 -0
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +35 -1
- tencentcloud/mps/v20190612/models.py +17 -2
- tencentcloud/oceanus/v20190422/models.py +15 -0
- tencentcloud/ocr/v20181119/models.py +132 -1971
- tencentcloud/ocr/v20181119/ocr_client.py +0 -167
- tencentcloud/organization/v20210331/models.py +2 -330
- tencentcloud/privatedns/v20201028/errorcodes.py +0 -42
- tencentcloud/privatedns/v20201028/models.py +712 -2358
- tencentcloud/privatedns/v20201028/privatedns_client.py +0 -230
- tencentcloud/tke/v20220501/models.py +6 -2
- tencentcloud/trtc/v20190722/errorcodes.py +15 -0
- tencentcloud/trtc/v20190722/models.py +218 -0
- tencentcloud/trtc/v20190722/trtc_client.py +47 -0
- tencentcloud/vod/v20180717/models.py +30 -0
- tencentcloud/vpc/v20170312/models.py +30 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/RECORD +53 -53
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/top_level.txt +0 -0
| @@ -1138,13 +1138,10 @@ class AuthNode(AbstractModel): | |
| 1138 1138 | 
             
                def __init__(self):
         | 
| 1139 1139 | 
             
                    r"""
         | 
| 1140 1140 | 
             
                    :param _RelationId: 互信主体关系ID
         | 
| 1141 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1142 1141 | 
             
                    :type RelationId: int
         | 
| 1143 1142 | 
             
                    :param _AuthName: 互信主体名称
         | 
| 1144 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1145 1143 | 
             
                    :type AuthName: str
         | 
| 1146 1144 | 
             
                    :param _Manager: 主体管理员
         | 
| 1147 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1148 1145 | 
             
                    :type Manager: :class:`tencentcloud.organization.v20210331.models.MemberMainInfo`
         | 
| 1149 1146 | 
             
                    """
         | 
| 1150 1147 | 
             
                    self._RelationId = None
         | 
| @@ -1154,7 +1151,6 @@ class AuthNode(AbstractModel): | |
| 1154 1151 | 
             
                @property
         | 
| 1155 1152 | 
             
                def RelationId(self):
         | 
| 1156 1153 | 
             
                    """互信主体关系ID
         | 
| 1157 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1158 1154 | 
             
                    :rtype: int
         | 
| 1159 1155 | 
             
                    """
         | 
| 1160 1156 | 
             
                    return self._RelationId
         | 
| @@ -1166,7 +1162,6 @@ class AuthNode(AbstractModel): | |
| 1166 1162 | 
             
                @property
         | 
| 1167 1163 | 
             
                def AuthName(self):
         | 
| 1168 1164 | 
             
                    """互信主体名称
         | 
| 1169 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1170 1165 | 
             
                    :rtype: str
         | 
| 1171 1166 | 
             
                    """
         | 
| 1172 1167 | 
             
                    return self._AuthName
         | 
| @@ -1178,7 +1173,6 @@ class AuthNode(AbstractModel): | |
| 1178 1173 | 
             
                @property
         | 
| 1179 1174 | 
             
                def Manager(self):
         | 
| 1180 1175 | 
             
                    """主体管理员
         | 
| 1181 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1182 1176 | 
             
                    :rtype: :class:`tencentcloud.organization.v20210331.models.MemberMainInfo`
         | 
| 1183 1177 | 
             
                    """
         | 
| 1184 1178 | 
             
                    return self._Manager
         | 
| @@ -1212,10 +1206,8 @@ class AuthRelationFile(AbstractModel): | |
| 1212 1206 | 
             
                def __init__(self):
         | 
| 1213 1207 | 
             
                    r"""
         | 
| 1214 1208 | 
             
                    :param _Name: 文件名。
         | 
| 1215 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1216 1209 | 
             
                    :type Name: str
         | 
| 1217 1210 | 
             
                    :param _Url: 文件路径。
         | 
| 1218 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1219 1211 | 
             
                    :type Url: str
         | 
| 1220 1212 | 
             
                    """
         | 
| 1221 1213 | 
             
                    self._Name = None
         | 
| @@ -1224,7 +1216,6 @@ class AuthRelationFile(AbstractModel): | |
| 1224 1216 | 
             
                @property
         | 
| 1225 1217 | 
             
                def Name(self):
         | 
| 1226 1218 | 
             
                    """文件名。
         | 
| 1227 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1228 1219 | 
             
                    :rtype: str
         | 
| 1229 1220 | 
             
                    """
         | 
| 1230 1221 | 
             
                    return self._Name
         | 
| @@ -1236,7 +1227,6 @@ class AuthRelationFile(AbstractModel): | |
| 1236 1227 | 
             
                @property
         | 
| 1237 1228 | 
             
                def Url(self):
         | 
| 1238 1229 | 
             
                    """文件路径。
         | 
| 1239 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1240 1230 | 
             
                    :rtype: str
         | 
| 1241 1231 | 
             
                    """
         | 
| 1242 1232 | 
             
                    return self._Url
         | 
| @@ -1936,7 +1926,6 @@ class CreateOrganizationIdentityResponse(AbstractModel): | |
| 1936 1926 | 
             
                def __init__(self):
         | 
| 1937 1927 | 
             
                    r"""
         | 
| 1938 1928 | 
             
                    :param _IdentityId: 身份ID
         | 
| 1939 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1940 1929 | 
             
                    :type IdentityId: int
         | 
| 1941 1930 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 1942 1931 | 
             
                    :type RequestId: str
         | 
| @@ -1947,7 +1936,6 @@ class CreateOrganizationIdentityResponse(AbstractModel): | |
| 1947 1936 | 
             
                @property
         | 
| 1948 1937 | 
             
                def IdentityId(self):
         | 
| 1949 1938 | 
             
                    """身份ID
         | 
| 1950 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1951 1939 | 
             
                    :rtype: int
         | 
| 1952 1940 | 
             
                    """
         | 
| 1953 1941 | 
             
                    return self._IdentityId
         | 
| @@ -2141,7 +2129,6 @@ class CreateOrganizationMemberPolicyResponse(AbstractModel): | |
| 2141 2129 | 
             
                def __init__(self):
         | 
| 2142 2130 | 
             
                    r"""
         | 
| 2143 2131 | 
             
                    :param _PolicyId: 策略ID。
         | 
| 2144 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2145 2132 | 
             
                    :type PolicyId: int
         | 
| 2146 2133 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 2147 2134 | 
             
                    :type RequestId: str
         | 
| @@ -2152,7 +2139,6 @@ class CreateOrganizationMemberPolicyResponse(AbstractModel): | |
| 2152 2139 | 
             
                @property
         | 
| 2153 2140 | 
             
                def PolicyId(self):
         | 
| 2154 2141 | 
             
                    """策略ID。
         | 
| 2155 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2156 2142 | 
             
                    :rtype: int
         | 
| 2157 2143 | 
             
                    """
         | 
| 2158 2144 | 
             
                    return self._PolicyId
         | 
| @@ -2377,7 +2363,6 @@ class CreateOrganizationMemberResponse(AbstractModel): | |
| 2377 2363 | 
             
                def __init__(self):
         | 
| 2378 2364 | 
             
                    r"""
         | 
| 2379 2365 | 
             
                    :param _Uin: 成员Uin。
         | 
| 2380 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2381 2366 | 
             
                    :type Uin: int
         | 
| 2382 2367 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 2383 2368 | 
             
                    :type RequestId: str
         | 
| @@ -2388,7 +2373,6 @@ class CreateOrganizationMemberResponse(AbstractModel): | |
| 2388 2373 | 
             
                @property
         | 
| 2389 2374 | 
             
                def Uin(self):
         | 
| 2390 2375 | 
             
                    """成员Uin。
         | 
| 2391 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2392 2376 | 
             
                    :rtype: int
         | 
| 2393 2377 | 
             
                    """
         | 
| 2394 2378 | 
             
                    return self._Uin
         | 
| @@ -2503,7 +2487,6 @@ class CreateOrganizationMembersPolicyResponse(AbstractModel): | |
| 2503 2487 | 
             
                def __init__(self):
         | 
| 2504 2488 | 
             
                    r"""
         | 
| 2505 2489 | 
             
                    :param _PolicyId: 策略ID。
         | 
| 2506 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2507 2490 | 
             
                    :type PolicyId: int
         | 
| 2508 2491 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 2509 2492 | 
             
                    :type RequestId: str
         | 
| @@ -2514,7 +2497,6 @@ class CreateOrganizationMembersPolicyResponse(AbstractModel): | |
| 2514 2497 | 
             
                @property
         | 
| 2515 2498 | 
             
                def PolicyId(self):
         | 
| 2516 2499 | 
             
                    """策略ID。
         | 
| 2517 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 2518 2500 | 
             
                    :rtype: int
         | 
| 2519 2501 | 
             
                    """
         | 
| 2520 2502 | 
             
                    return self._PolicyId
         | 
| @@ -4946,7 +4928,6 @@ class DescribeEffectivePolicyResponse(AbstractModel): | |
| 4946 4928 | 
             
                def __init__(self):
         | 
| 4947 4929 | 
             
                    r"""
         | 
| 4948 4930 | 
             
                    :param _EffectivePolicy: 有效策略。
         | 
| 4949 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 4950 4931 | 
             
                    :type EffectivePolicy: :class:`tencentcloud.organization.v20210331.models.EffectivePolicy`
         | 
| 4951 4932 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 4952 4933 | 
             
                    :type RequestId: str
         | 
| @@ -4957,7 +4938,6 @@ class DescribeEffectivePolicyResponse(AbstractModel): | |
| 4957 4938 | 
             
                @property
         | 
| 4958 4939 | 
             
                def EffectivePolicy(self):
         | 
| 4959 4940 | 
             
                    """有效策略。
         | 
| 4960 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 4961 4941 | 
             
                    :rtype: :class:`tencentcloud.organization.v20210331.models.EffectivePolicy`
         | 
| 4962 4942 | 
             
                    """
         | 
| 4963 4943 | 
             
                    return self._EffectivePolicy
         | 
| @@ -5183,10 +5163,8 @@ class DescribeOrganizationAuthNodeResponse(AbstractModel): | |
| 5183 5163 | 
             
                def __init__(self):
         | 
| 5184 5164 | 
             
                    r"""
         | 
| 5185 5165 | 
             
                    :param _Total: 总数。
         | 
| 5186 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5187 5166 | 
             
                    :type Total: int
         | 
| 5188 5167 | 
             
                    :param _Items: 条目详情。
         | 
| 5189 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5190 5168 | 
             
                    :type Items: list of AuthNode
         | 
| 5191 5169 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 5192 5170 | 
             
                    :type RequestId: str
         | 
| @@ -5198,7 +5176,6 @@ class DescribeOrganizationAuthNodeResponse(AbstractModel): | |
| 5198 5176 | 
             
                @property
         | 
| 5199 5177 | 
             
                def Total(self):
         | 
| 5200 5178 | 
             
                    """总数。
         | 
| 5201 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5202 5179 | 
             
                    :rtype: int
         | 
| 5203 5180 | 
             
                    """
         | 
| 5204 5181 | 
             
                    return self._Total
         | 
| @@ -5210,7 +5187,6 @@ class DescribeOrganizationAuthNodeResponse(AbstractModel): | |
| 5210 5187 | 
             
                @property
         | 
| 5211 5188 | 
             
                def Items(self):
         | 
| 5212 5189 | 
             
                    """条目详情。
         | 
| 5213 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5214 5190 | 
             
                    :rtype: list of AuthNode
         | 
| 5215 5191 | 
             
                    """
         | 
| 5216 5192 | 
             
                    return self._Items
         | 
| @@ -5361,13 +5337,10 @@ class DescribeOrganizationFinancialByMemberResponse(AbstractModel): | |
| 5361 5337 | 
             
                def __init__(self):
         | 
| 5362 5338 | 
             
                    r"""
         | 
| 5363 5339 | 
             
                    :param _TotalCost: 当月总消耗。
         | 
| 5364 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5365 5340 | 
             
                    :type TotalCost: float
         | 
| 5366 5341 | 
             
                    :param _Items: 成员消耗详情。
         | 
| 5367 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5368 5342 | 
             
                    :type Items: list of OrgMemberFinancial
         | 
| 5369 5343 | 
             
                    :param _Total: 总数目。
         | 
| 5370 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5371 5344 | 
             
                    :type Total: int
         | 
| 5372 5345 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 5373 5346 | 
             
                    :type RequestId: str
         | 
| @@ -5380,7 +5353,6 @@ class DescribeOrganizationFinancialByMemberResponse(AbstractModel): | |
| 5380 5353 | 
             
                @property
         | 
| 5381 5354 | 
             
                def TotalCost(self):
         | 
| 5382 5355 | 
             
                    """当月总消耗。
         | 
| 5383 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5384 5356 | 
             
                    :rtype: float
         | 
| 5385 5357 | 
             
                    """
         | 
| 5386 5358 | 
             
                    return self._TotalCost
         | 
| @@ -5392,7 +5364,6 @@ class DescribeOrganizationFinancialByMemberResponse(AbstractModel): | |
| 5392 5364 | 
             
                @property
         | 
| 5393 5365 | 
             
                def Items(self):
         | 
| 5394 5366 | 
             
                    """成员消耗详情。
         | 
| 5395 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5396 5367 | 
             
                    :rtype: list of OrgMemberFinancial
         | 
| 5397 5368 | 
             
                    """
         | 
| 5398 5369 | 
             
                    return self._Items
         | 
| @@ -5404,7 +5375,6 @@ class DescribeOrganizationFinancialByMemberResponse(AbstractModel): | |
| 5404 5375 | 
             
                @property
         | 
| 5405 5376 | 
             
                def Total(self):
         | 
| 5406 5377 | 
             
                    """总数目。
         | 
| 5407 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5408 5378 | 
             
                    :rtype: int
         | 
| 5409 5379 | 
             
                    """
         | 
| 5410 5380 | 
             
                    return self._Total
         | 
| @@ -5526,7 +5496,6 @@ class DescribeOrganizationFinancialByMonthResponse(AbstractModel): | |
| 5526 5496 | 
             
                def __init__(self):
         | 
| 5527 5497 | 
             
                    r"""
         | 
| 5528 5498 | 
             
                    :param _Items: 产品消耗详情。
         | 
| 5529 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5530 5499 | 
             
                    :type Items: list of OrgFinancialByMonth
         | 
| 5531 5500 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 5532 5501 | 
             
                    :type RequestId: str
         | 
| @@ -5537,7 +5506,6 @@ class DescribeOrganizationFinancialByMonthResponse(AbstractModel): | |
| 5537 5506 | 
             
                @property
         | 
| 5538 5507 | 
             
                def Items(self):
         | 
| 5539 5508 | 
             
                    """产品消耗详情。
         | 
| 5540 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5541 5509 | 
             
                    :rtype: list of OrgFinancialByMonth
         | 
| 5542 5510 | 
             
                    """
         | 
| 5543 5511 | 
             
                    return self._Items
         | 
| @@ -5687,13 +5655,10 @@ class DescribeOrganizationFinancialByProductResponse(AbstractModel): | |
| 5687 5655 | 
             
                def __init__(self):
         | 
| 5688 5656 | 
             
                    r"""
         | 
| 5689 5657 | 
             
                    :param _TotalCost: 当月总消耗。
         | 
| 5690 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5691 5658 | 
             
                    :type TotalCost: float
         | 
| 5692 5659 | 
             
                    :param _Items: 产品消耗详情。
         | 
| 5693 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5694 5660 | 
             
                    :type Items: list of OrgProductFinancial
         | 
| 5695 5661 | 
             
                    :param _Total: 总数目。
         | 
| 5696 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5697 5662 | 
             
                    :type Total: int
         | 
| 5698 5663 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 5699 5664 | 
             
                    :type RequestId: str
         | 
| @@ -5706,7 +5671,6 @@ class DescribeOrganizationFinancialByProductResponse(AbstractModel): | |
| 5706 5671 | 
             
                @property
         | 
| 5707 5672 | 
             
                def TotalCost(self):
         | 
| 5708 5673 | 
             
                    """当月总消耗。
         | 
| 5709 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5710 5674 | 
             
                    :rtype: float
         | 
| 5711 5675 | 
             
                    """
         | 
| 5712 5676 | 
             
                    return self._TotalCost
         | 
| @@ -5718,7 +5682,6 @@ class DescribeOrganizationFinancialByProductResponse(AbstractModel): | |
| 5718 5682 | 
             
                @property
         | 
| 5719 5683 | 
             
                def Items(self):
         | 
| 5720 5684 | 
             
                    """产品消耗详情。
         | 
| 5721 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5722 5685 | 
             
                    :rtype: list of OrgProductFinancial
         | 
| 5723 5686 | 
             
                    """
         | 
| 5724 5687 | 
             
                    return self._Items
         | 
| @@ -5730,7 +5693,6 @@ class DescribeOrganizationFinancialByProductResponse(AbstractModel): | |
| 5730 5693 | 
             
                @property
         | 
| 5731 5694 | 
             
                def Total(self):
         | 
| 5732 5695 | 
             
                    """总数目。
         | 
| 5733 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5734 5696 | 
             
                    :rtype: int
         | 
| 5735 5697 | 
             
                    """
         | 
| 5736 5698 | 
             
                    return self._Total
         | 
| @@ -5852,10 +5814,8 @@ class DescribeOrganizationMemberAuthAccountsResponse(AbstractModel): | |
| 5852 5814 | 
             
                def __init__(self):
         | 
| 5853 5815 | 
             
                    r"""
         | 
| 5854 5816 | 
             
                    :param _Items: 列表
         | 
| 5855 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5856 5817 | 
             
                    :type Items: list of OrgMemberAuthAccount
         | 
| 5857 5818 | 
             
                    :param _Total: 总数目
         | 
| 5858 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5859 5819 | 
             
                    :type Total: int
         | 
| 5860 5820 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 5861 5821 | 
             
                    :type RequestId: str
         | 
| @@ -5867,7 +5827,6 @@ class DescribeOrganizationMemberAuthAccountsResponse(AbstractModel): | |
| 5867 5827 | 
             
                @property
         | 
| 5868 5828 | 
             
                def Items(self):
         | 
| 5869 5829 | 
             
                    """列表
         | 
| 5870 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5871 5830 | 
             
                    :rtype: list of OrgMemberAuthAccount
         | 
| 5872 5831 | 
             
                    """
         | 
| 5873 5832 | 
             
                    return self._Items
         | 
| @@ -5879,7 +5838,6 @@ class DescribeOrganizationMemberAuthAccountsResponse(AbstractModel): | |
| 5879 5838 | 
             
                @property
         | 
| 5880 5839 | 
             
                def Total(self):
         | 
| 5881 5840 | 
             
                    """总数目
         | 
| 5882 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 5883 5841 | 
             
                    :rtype: int
         | 
| 5884 5842 | 
             
                    """
         | 
| 5885 5843 | 
             
                    return self._Total
         | 
| @@ -6000,10 +5958,8 @@ class DescribeOrganizationMemberAuthIdentitiesResponse(AbstractModel): | |
| 6000 5958 | 
             
                def __init__(self):
         | 
| 6001 5959 | 
             
                    r"""
         | 
| 6002 5960 | 
             
                    :param _Items: 授权身份列表。
         | 
| 6003 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6004 5961 | 
             
                    :type Items: list of OrgMemberAuthIdentity
         | 
| 6005 5962 | 
             
                    :param _Total: 总数目。
         | 
| 6006 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6007 5963 | 
             
                    :type Total: int
         | 
| 6008 5964 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 6009 5965 | 
             
                    :type RequestId: str
         | 
| @@ -6015,7 +5971,6 @@ class DescribeOrganizationMemberAuthIdentitiesResponse(AbstractModel): | |
| 6015 5971 | 
             
                @property
         | 
| 6016 5972 | 
             
                def Items(self):
         | 
| 6017 5973 | 
             
                    """授权身份列表。
         | 
| 6018 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6019 5974 | 
             
                    :rtype: list of OrgMemberAuthIdentity
         | 
| 6020 5975 | 
             
                    """
         | 
| 6021 5976 | 
             
                    return self._Items
         | 
| @@ -6027,7 +5982,6 @@ class DescribeOrganizationMemberAuthIdentitiesResponse(AbstractModel): | |
| 6027 5982 | 
             
                @property
         | 
| 6028 5983 | 
             
                def Total(self):
         | 
| 6029 5984 | 
             
                    """总数目。
         | 
| 6030 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6031 5985 | 
             
                    :rtype: int
         | 
| 6032 5986 | 
             
                    """
         | 
| 6033 5987 | 
             
                    return self._Total
         | 
| @@ -6103,31 +6057,22 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6103 6057 | 
             
                def __init__(self):
         | 
| 6104 6058 | 
             
                    r"""
         | 
| 6105 6059 | 
             
                    :param _BindId: 绑定ID。
         | 
| 6106 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6107 6060 | 
             
                    :type BindId: int
         | 
| 6108 6061 | 
             
                    :param _ApplyTime: 申请时间。
         | 
| 6109 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6110 6062 | 
             
                    :type ApplyTime: str
         | 
| 6111 6063 | 
             
                    :param _Email: 邮箱地址。
         | 
| 6112 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6113 6064 | 
             
                    :type Email: str
         | 
| 6114 6065 | 
             
                    :param _Phone: 安全手机号。
         | 
| 6115 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6116 6066 | 
             
                    :type Phone: str
         | 
| 6117 6067 | 
             
                    :param _BindStatus: 绑定状态。    未绑定:Unbound,待激活:Valid,绑定成功:Success,绑定失败:Failed
         | 
| 6118 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6119 6068 | 
             
                    :type BindStatus: str
         | 
| 6120 6069 | 
             
                    :param _BindTime: 绑定时间。
         | 
| 6121 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6122 6070 | 
             
                    :type BindTime: str
         | 
| 6123 6071 | 
             
                    :param _Description: 失败说明。
         | 
| 6124 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6125 6072 | 
             
                    :type Description: str
         | 
| 6126 6073 | 
             
                    :param _PhoneBind: 安全手机绑定状态 。 未绑定:0,已绑定:1
         | 
| 6127 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6128 6074 | 
             
                    :type PhoneBind: int
         | 
| 6129 6075 | 
             
                    :param _CountryCode: 国际区号。
         | 
| 6130 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6131 6076 | 
             
                    :type CountryCode: str
         | 
| 6132 6077 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 6133 6078 | 
             
                    :type RequestId: str
         | 
| @@ -6146,7 +6091,6 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6146 6091 | 
             
                @property
         | 
| 6147 6092 | 
             
                def BindId(self):
         | 
| 6148 6093 | 
             
                    """绑定ID。
         | 
| 6149 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6150 6094 | 
             
                    :rtype: int
         | 
| 6151 6095 | 
             
                    """
         | 
| 6152 6096 | 
             
                    return self._BindId
         | 
| @@ -6158,7 +6102,6 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6158 6102 | 
             
                @property
         | 
| 6159 6103 | 
             
                def ApplyTime(self):
         | 
| 6160 6104 | 
             
                    """申请时间。
         | 
| 6161 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6162 6105 | 
             
                    :rtype: str
         | 
| 6163 6106 | 
             
                    """
         | 
| 6164 6107 | 
             
                    return self._ApplyTime
         | 
| @@ -6170,7 +6113,6 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6170 6113 | 
             
                @property
         | 
| 6171 6114 | 
             
                def Email(self):
         | 
| 6172 6115 | 
             
                    """邮箱地址。
         | 
| 6173 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6174 6116 | 
             
                    :rtype: str
         | 
| 6175 6117 | 
             
                    """
         | 
| 6176 6118 | 
             
                    return self._Email
         | 
| @@ -6182,7 +6124,6 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6182 6124 | 
             
                @property
         | 
| 6183 6125 | 
             
                def Phone(self):
         | 
| 6184 6126 | 
             
                    """安全手机号。
         | 
| 6185 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6186 6127 | 
             
                    :rtype: str
         | 
| 6187 6128 | 
             
                    """
         | 
| 6188 6129 | 
             
                    return self._Phone
         | 
| @@ -6194,7 +6135,6 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6194 6135 | 
             
                @property
         | 
| 6195 6136 | 
             
                def BindStatus(self):
         | 
| 6196 6137 | 
             
                    """绑定状态。    未绑定:Unbound,待激活:Valid,绑定成功:Success,绑定失败:Failed
         | 
| 6197 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6198 6138 | 
             
                    :rtype: str
         | 
| 6199 6139 | 
             
                    """
         | 
| 6200 6140 | 
             
                    return self._BindStatus
         | 
| @@ -6206,7 +6146,6 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6206 6146 | 
             
                @property
         | 
| 6207 6147 | 
             
                def BindTime(self):
         | 
| 6208 6148 | 
             
                    """绑定时间。
         | 
| 6209 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6210 6149 | 
             
                    :rtype: str
         | 
| 6211 6150 | 
             
                    """
         | 
| 6212 6151 | 
             
                    return self._BindTime
         | 
| @@ -6218,7 +6157,6 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6218 6157 | 
             
                @property
         | 
| 6219 6158 | 
             
                def Description(self):
         | 
| 6220 6159 | 
             
                    """失败说明。
         | 
| 6221 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6222 6160 | 
             
                    :rtype: str
         | 
| 6223 6161 | 
             
                    """
         | 
| 6224 6162 | 
             
                    return self._Description
         | 
| @@ -6230,7 +6168,6 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6230 6168 | 
             
                @property
         | 
| 6231 6169 | 
             
                def PhoneBind(self):
         | 
| 6232 6170 | 
             
                    """安全手机绑定状态 。 未绑定:0,已绑定:1
         | 
| 6233 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6234 6171 | 
             
                    :rtype: int
         | 
| 6235 6172 | 
             
                    """
         | 
| 6236 6173 | 
             
                    return self._PhoneBind
         | 
| @@ -6242,7 +6179,6 @@ class DescribeOrganizationMemberEmailBindResponse(AbstractModel): | |
| 6242 6179 | 
             
                @property
         | 
| 6243 6180 | 
             
                def CountryCode(self):
         | 
| 6244 6181 | 
             
                    """国际区号。
         | 
| 6245 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6246 6182 | 
             
                    :rtype: str
         | 
| 6247 6183 | 
             
                    """
         | 
| 6248 6184 | 
             
                    return self._CountryCode
         | 
| @@ -6365,10 +6301,8 @@ class DescribeOrganizationMemberPoliciesResponse(AbstractModel): | |
| 6365 6301 | 
             
                def __init__(self):
         | 
| 6366 6302 | 
             
                    r"""
         | 
| 6367 6303 | 
             
                    :param _Items: 列表。
         | 
| 6368 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6369 6304 | 
             
                    :type Items: list of OrgMemberPolicy
         | 
| 6370 6305 | 
             
                    :param _Total: 总数目。
         | 
| 6371 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6372 6306 | 
             
                    :type Total: int
         | 
| 6373 6307 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 6374 6308 | 
             
                    :type RequestId: str
         | 
| @@ -6380,7 +6314,6 @@ class DescribeOrganizationMemberPoliciesResponse(AbstractModel): | |
| 6380 6314 | 
             
                @property
         | 
| 6381 6315 | 
             
                def Items(self):
         | 
| 6382 6316 | 
             
                    """列表。
         | 
| 6383 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6384 6317 | 
             
                    :rtype: list of OrgMemberPolicy
         | 
| 6385 6318 | 
             
                    """
         | 
| 6386 6319 | 
             
                    return self._Items
         | 
| @@ -6392,7 +6325,6 @@ class DescribeOrganizationMemberPoliciesResponse(AbstractModel): | |
| 6392 6325 | 
             
                @property
         | 
| 6393 6326 | 
             
                def Total(self):
         | 
| 6394 6327 | 
             
                    """总数目。
         | 
| 6395 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6396 6328 | 
             
                    :rtype: int
         | 
| 6397 6329 | 
             
                    """
         | 
| 6398 6330 | 
             
                    return self._Total
         | 
| @@ -6697,10 +6629,8 @@ class DescribeOrganizationNodesResponse(AbstractModel): | |
| 6697 6629 | 
             
                def __init__(self):
         | 
| 6698 6630 | 
             
                    r"""
         | 
| 6699 6631 | 
             
                    :param _Total: 总数。
         | 
| 6700 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6701 6632 | 
             
                    :type Total: int
         | 
| 6702 6633 | 
             
                    :param _Items: 列表详情。
         | 
| 6703 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6704 6634 | 
             
                    :type Items: list of OrgNode
         | 
| 6705 6635 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 6706 6636 | 
             
                    :type RequestId: str
         | 
| @@ -6712,7 +6642,6 @@ class DescribeOrganizationNodesResponse(AbstractModel): | |
| 6712 6642 | 
             
                @property
         | 
| 6713 6643 | 
             
                def Total(self):
         | 
| 6714 6644 | 
             
                    """总数。
         | 
| 6715 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6716 6645 | 
             
                    :rtype: int
         | 
| 6717 6646 | 
             
                    """
         | 
| 6718 6647 | 
             
                    return self._Total
         | 
| @@ -6724,7 +6653,6 @@ class DescribeOrganizationNodesResponse(AbstractModel): | |
| 6724 6653 | 
             
                @property
         | 
| 6725 6654 | 
             
                def Items(self):
         | 
| 6726 6655 | 
             
                    """列表详情。
         | 
| 6727 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6728 6656 | 
             
                    :rtype: list of OrgNode
         | 
| 6729 6657 | 
             
                    """
         | 
| 6730 6658 | 
             
                    return self._Items
         | 
| @@ -6815,52 +6743,36 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6815 6743 | 
             
                def __init__(self):
         | 
| 6816 6744 | 
             
                    r"""
         | 
| 6817 6745 | 
             
                    :param _OrgId: 企业组织ID。
         | 
| 6818 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6819 6746 | 
             
                    :type OrgId: int
         | 
| 6820 6747 | 
             
                    :param _HostUin: 创建者UIN。
         | 
| 6821 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6822 6748 | 
             
                    :type HostUin: int
         | 
| 6823 6749 | 
             
                    :param _NickName: 创建者昵称。
         | 
| 6824 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6825 6750 | 
             
                    :type NickName: str
         | 
| 6826 6751 | 
             
                    :param _OrgType: 企业组织类型。
         | 
| 6827 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6828 6752 | 
             
                    :type OrgType: int
         | 
| 6829 6753 | 
             
                    :param _IsManager: 是否组织管理员。是:true ,否:false
         | 
| 6830 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6831 6754 | 
             
                    :type IsManager: bool
         | 
| 6832 6755 | 
             
                    :param _OrgPolicyType: 策略类型。财务管理:Financial
         | 
| 6833 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6834 6756 | 
             
                    :type OrgPolicyType: str
         | 
| 6835 6757 | 
             
                    :param _OrgPolicyName: 策略名。
         | 
| 6836 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6837 6758 | 
             
                    :type OrgPolicyName: str
         | 
| 6838 6759 | 
             
                    :param _OrgPermission: 成员财务权限列表。
         | 
| 6839 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6840 6760 | 
             
                    :type OrgPermission: list of OrgPermission
         | 
| 6841 6761 | 
             
                    :param _RootNodeId: 组织根节点ID。
         | 
| 6842 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6843 6762 | 
             
                    :type RootNodeId: int
         | 
| 6844 6763 | 
             
                    :param _CreateTime: 组织创建时间。
         | 
| 6845 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6846 6764 | 
             
                    :type CreateTime: str
         | 
| 6847 6765 | 
             
                    :param _JoinTime: 成员加入时间。
         | 
| 6848 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6849 6766 | 
             
                    :type JoinTime: str
         | 
| 6850 6767 | 
             
                    :param _IsAllowQuit: 成员是否允许退出。允许:Allow,不允许:Denied
         | 
| 6851 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6852 6768 | 
             
                    :type IsAllowQuit: str
         | 
| 6853 6769 | 
             
                    :param _PayUin: 代付者Uin。
         | 
| 6854 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6855 6770 | 
             
                    :type PayUin: str
         | 
| 6856 6771 | 
             
                    :param _PayName: 代付者名称。
         | 
| 6857 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6858 6772 | 
             
                    :type PayName: str
         | 
| 6859 6773 | 
             
                    :param _IsAssignManager: 是否可信服务管理员。是:true,否:false
         | 
| 6860 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6861 6774 | 
             
                    :type IsAssignManager: bool
         | 
| 6862 6775 | 
             
                    :param _IsAuthManager: 是否实名主体管理员。是:true,否:false
         | 
| 6863 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6864 6776 | 
             
                    :type IsAuthManager: bool
         | 
| 6865 6777 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 6866 6778 | 
             
                    :type RequestId: str
         | 
| @@ -6886,7 +6798,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6886 6798 | 
             
                @property
         | 
| 6887 6799 | 
             
                def OrgId(self):
         | 
| 6888 6800 | 
             
                    """企业组织ID。
         | 
| 6889 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6890 6801 | 
             
                    :rtype: int
         | 
| 6891 6802 | 
             
                    """
         | 
| 6892 6803 | 
             
                    return self._OrgId
         | 
| @@ -6898,7 +6809,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6898 6809 | 
             
                @property
         | 
| 6899 6810 | 
             
                def HostUin(self):
         | 
| 6900 6811 | 
             
                    """创建者UIN。
         | 
| 6901 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6902 6812 | 
             
                    :rtype: int
         | 
| 6903 6813 | 
             
                    """
         | 
| 6904 6814 | 
             
                    return self._HostUin
         | 
| @@ -6910,7 +6820,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6910 6820 | 
             
                @property
         | 
| 6911 6821 | 
             
                def NickName(self):
         | 
| 6912 6822 | 
             
                    """创建者昵称。
         | 
| 6913 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6914 6823 | 
             
                    :rtype: str
         | 
| 6915 6824 | 
             
                    """
         | 
| 6916 6825 | 
             
                    return self._NickName
         | 
| @@ -6922,7 +6831,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6922 6831 | 
             
                @property
         | 
| 6923 6832 | 
             
                def OrgType(self):
         | 
| 6924 6833 | 
             
                    """企业组织类型。
         | 
| 6925 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6926 6834 | 
             
                    :rtype: int
         | 
| 6927 6835 | 
             
                    """
         | 
| 6928 6836 | 
             
                    return self._OrgType
         | 
| @@ -6934,7 +6842,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6934 6842 | 
             
                @property
         | 
| 6935 6843 | 
             
                def IsManager(self):
         | 
| 6936 6844 | 
             
                    """是否组织管理员。是:true ,否:false
         | 
| 6937 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6938 6845 | 
             
                    :rtype: bool
         | 
| 6939 6846 | 
             
                    """
         | 
| 6940 6847 | 
             
                    return self._IsManager
         | 
| @@ -6946,7 +6853,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6946 6853 | 
             
                @property
         | 
| 6947 6854 | 
             
                def OrgPolicyType(self):
         | 
| 6948 6855 | 
             
                    """策略类型。财务管理:Financial
         | 
| 6949 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6950 6856 | 
             
                    :rtype: str
         | 
| 6951 6857 | 
             
                    """
         | 
| 6952 6858 | 
             
                    return self._OrgPolicyType
         | 
| @@ -6958,7 +6864,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6958 6864 | 
             
                @property
         | 
| 6959 6865 | 
             
                def OrgPolicyName(self):
         | 
| 6960 6866 | 
             
                    """策略名。
         | 
| 6961 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6962 6867 | 
             
                    :rtype: str
         | 
| 6963 6868 | 
             
                    """
         | 
| 6964 6869 | 
             
                    return self._OrgPolicyName
         | 
| @@ -6970,7 +6875,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6970 6875 | 
             
                @property
         | 
| 6971 6876 | 
             
                def OrgPermission(self):
         | 
| 6972 6877 | 
             
                    """成员财务权限列表。
         | 
| 6973 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6974 6878 | 
             
                    :rtype: list of OrgPermission
         | 
| 6975 6879 | 
             
                    """
         | 
| 6976 6880 | 
             
                    return self._OrgPermission
         | 
| @@ -6982,7 +6886,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6982 6886 | 
             
                @property
         | 
| 6983 6887 | 
             
                def RootNodeId(self):
         | 
| 6984 6888 | 
             
                    """组织根节点ID。
         | 
| 6985 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6986 6889 | 
             
                    :rtype: int
         | 
| 6987 6890 | 
             
                    """
         | 
| 6988 6891 | 
             
                    return self._RootNodeId
         | 
| @@ -6994,7 +6897,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 6994 6897 | 
             
                @property
         | 
| 6995 6898 | 
             
                def CreateTime(self):
         | 
| 6996 6899 | 
             
                    """组织创建时间。
         | 
| 6997 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 6998 6900 | 
             
                    :rtype: str
         | 
| 6999 6901 | 
             
                    """
         | 
| 7000 6902 | 
             
                    return self._CreateTime
         | 
| @@ -7006,7 +6908,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 7006 6908 | 
             
                @property
         | 
| 7007 6909 | 
             
                def JoinTime(self):
         | 
| 7008 6910 | 
             
                    """成员加入时间。
         | 
| 7009 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7010 6911 | 
             
                    :rtype: str
         | 
| 7011 6912 | 
             
                    """
         | 
| 7012 6913 | 
             
                    return self._JoinTime
         | 
| @@ -7018,7 +6919,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 7018 6919 | 
             
                @property
         | 
| 7019 6920 | 
             
                def IsAllowQuit(self):
         | 
| 7020 6921 | 
             
                    """成员是否允许退出。允许:Allow,不允许:Denied
         | 
| 7021 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7022 6922 | 
             
                    :rtype: str
         | 
| 7023 6923 | 
             
                    """
         | 
| 7024 6924 | 
             
                    return self._IsAllowQuit
         | 
| @@ -7030,7 +6930,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 7030 6930 | 
             
                @property
         | 
| 7031 6931 | 
             
                def PayUin(self):
         | 
| 7032 6932 | 
             
                    """代付者Uin。
         | 
| 7033 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7034 6933 | 
             
                    :rtype: str
         | 
| 7035 6934 | 
             
                    """
         | 
| 7036 6935 | 
             
                    return self._PayUin
         | 
| @@ -7042,7 +6941,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 7042 6941 | 
             
                @property
         | 
| 7043 6942 | 
             
                def PayName(self):
         | 
| 7044 6943 | 
             
                    """代付者名称。
         | 
| 7045 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7046 6944 | 
             
                    :rtype: str
         | 
| 7047 6945 | 
             
                    """
         | 
| 7048 6946 | 
             
                    return self._PayName
         | 
| @@ -7054,7 +6952,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 7054 6952 | 
             
                @property
         | 
| 7055 6953 | 
             
                def IsAssignManager(self):
         | 
| 7056 6954 | 
             
                    """是否可信服务管理员。是:true,否:false
         | 
| 7057 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7058 6955 | 
             
                    :rtype: bool
         | 
| 7059 6956 | 
             
                    """
         | 
| 7060 6957 | 
             
                    return self._IsAssignManager
         | 
| @@ -7066,7 +6963,6 @@ class DescribeOrganizationResponse(AbstractModel): | |
| 7066 6963 | 
             
                @property
         | 
| 7067 6964 | 
             
                def IsAuthManager(self):
         | 
| 7068 6965 | 
             
                    """是否实名主体管理员。是:true,否:false
         | 
| 7069 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7070 6966 | 
             
                    :rtype: bool
         | 
| 7071 6967 | 
             
                    """
         | 
| 7072 6968 | 
             
                    return self._IsAuthManager
         | 
| @@ -7459,7 +7355,6 @@ class DescribeShareAreasResponse(AbstractModel): | |
| 7459 7355 | 
             
                def __init__(self):
         | 
| 7460 7356 | 
             
                    r"""
         | 
| 7461 7357 | 
             
                    :param _Items: 详情
         | 
| 7462 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7463 7358 | 
             
                    :type Items: list of ShareArea
         | 
| 7464 7359 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 7465 7360 | 
             
                    :type RequestId: str
         | 
| @@ -7470,7 +7365,6 @@ class DescribeShareAreasResponse(AbstractModel): | |
| 7470 7365 | 
             
                @property
         | 
| 7471 7366 | 
             
                def Items(self):
         | 
| 7472 7367 | 
             
                    """详情
         | 
| 7473 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7474 7368 | 
             
                    :rtype: list of ShareArea
         | 
| 7475 7369 | 
             
                    """
         | 
| 7476 7370 | 
             
                    return self._Items
         | 
| @@ -7605,10 +7499,8 @@ class DescribeShareUnitMembersResponse(AbstractModel): | |
| 7605 7499 | 
             
                def __init__(self):
         | 
| 7606 7500 | 
             
                    r"""
         | 
| 7607 7501 | 
             
                    :param _Total: 总数目。
         | 
| 7608 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7609 7502 | 
             
                    :type Total: int
         | 
| 7610 7503 | 
             
                    :param _Items: 共享单元成员列表。
         | 
| 7611 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7612 7504 | 
             
                    :type Items: list of ShareUnitMember
         | 
| 7613 7505 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 7614 7506 | 
             
                    :type RequestId: str
         | 
| @@ -7620,7 +7512,6 @@ class DescribeShareUnitMembersResponse(AbstractModel): | |
| 7620 7512 | 
             
                @property
         | 
| 7621 7513 | 
             
                def Total(self):
         | 
| 7622 7514 | 
             
                    """总数目。
         | 
| 7623 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7624 7515 | 
             
                    :rtype: int
         | 
| 7625 7516 | 
             
                    """
         | 
| 7626 7517 | 
             
                    return self._Total
         | 
| @@ -7632,7 +7523,6 @@ class DescribeShareUnitMembersResponse(AbstractModel): | |
| 7632 7523 | 
             
                @property
         | 
| 7633 7524 | 
             
                def Items(self):
         | 
| 7634 7525 | 
             
                    """共享单元成员列表。
         | 
| 7635 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7636 7526 | 
             
                    :rtype: list of ShareUnitMember
         | 
| 7637 7527 | 
             
                    """
         | 
| 7638 7528 | 
             
                    return self._Items
         | 
| @@ -7783,10 +7673,8 @@ class DescribeShareUnitResourcesResponse(AbstractModel): | |
| 7783 7673 | 
             
                def __init__(self):
         | 
| 7784 7674 | 
             
                    r"""
         | 
| 7785 7675 | 
             
                    :param _Total: 总数目。
         | 
| 7786 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7787 7676 | 
             
                    :type Total: int
         | 
| 7788 7677 | 
             
                    :param _Items: 共享单元资源列表。
         | 
| 7789 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7790 7678 | 
             
                    :type Items: list of ShareUnitResource
         | 
| 7791 7679 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 7792 7680 | 
             
                    :type RequestId: str
         | 
| @@ -7798,7 +7686,6 @@ class DescribeShareUnitResourcesResponse(AbstractModel): | |
| 7798 7686 | 
             
                @property
         | 
| 7799 7687 | 
             
                def Total(self):
         | 
| 7800 7688 | 
             
                    """总数目。
         | 
| 7801 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7802 7689 | 
             
                    :rtype: int
         | 
| 7803 7690 | 
             
                    """
         | 
| 7804 7691 | 
             
                    return self._Total
         | 
| @@ -7810,7 +7697,6 @@ class DescribeShareUnitResourcesResponse(AbstractModel): | |
| 7810 7697 | 
             
                @property
         | 
| 7811 7698 | 
             
                def Items(self):
         | 
| 7812 7699 | 
             
                    """共享单元资源列表。
         | 
| 7813 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7814 7700 | 
             
                    :rtype: list of ShareUnitResource
         | 
| 7815 7701 | 
             
                    """
         | 
| 7816 7702 | 
             
                    return self._Items
         | 
| @@ -7931,10 +7817,8 @@ class DescribeShareUnitsResponse(AbstractModel): | |
| 7931 7817 | 
             
                def __init__(self):
         | 
| 7932 7818 | 
             
                    r"""
         | 
| 7933 7819 | 
             
                    :param _Total: 总数目。
         | 
| 7934 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7935 7820 | 
             
                    :type Total: int
         | 
| 7936 7821 | 
             
                    :param _Items: 共享单元列表。
         | 
| 7937 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7938 7822 | 
             
                    :type Items: list of ManagerShareUnit
         | 
| 7939 7823 | 
             
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 7940 7824 | 
             
                    :type RequestId: str
         | 
| @@ -7946,7 +7830,6 @@ class DescribeShareUnitsResponse(AbstractModel): | |
| 7946 7830 | 
             
                @property
         | 
| 7947 7831 | 
             
                def Total(self):
         | 
| 7948 7832 | 
             
                    """总数目。
         | 
| 7949 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7950 7833 | 
             
                    :rtype: int
         | 
| 7951 7834 | 
             
                    """
         | 
| 7952 7835 | 
             
                    return self._Total
         | 
| @@ -7958,7 +7841,6 @@ class DescribeShareUnitsResponse(AbstractModel): | |
| 7958 7841 | 
             
                @property
         | 
| 7959 7842 | 
             
                def Items(self):
         | 
| 7960 7843 | 
             
                    """共享单元列表。
         | 
| 7961 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 7962 7844 | 
             
                    :rtype: list of ManagerShareUnit
         | 
| 7963 7845 | 
             
                    """
         | 
| 7964 7846 | 
             
                    return self._Items
         | 
| @@ -14242,10 +14124,8 @@ class MemberIdentity(AbstractModel): | |
| 14242 14124 | 
             
                def __init__(self):
         | 
| 14243 14125 | 
             
                    r"""
         | 
| 14244 14126 | 
             
                    :param _IdentityId: 身份ID。
         | 
| 14245 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14246 14127 | 
             
                    :type IdentityId: int
         | 
| 14247 14128 | 
             
                    :param _IdentityAliasName: 身份名称。
         | 
| 14248 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14249 14129 | 
             
                    :type IdentityAliasName: str
         | 
| 14250 14130 | 
             
                    """
         | 
| 14251 14131 | 
             
                    self._IdentityId = None
         | 
| @@ -14254,7 +14134,6 @@ class MemberIdentity(AbstractModel): | |
| 14254 14134 | 
             
                @property
         | 
| 14255 14135 | 
             
                def IdentityId(self):
         | 
| 14256 14136 | 
             
                    """身份ID。
         | 
| 14257 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14258 14137 | 
             
                    :rtype: int
         | 
| 14259 14138 | 
             
                    """
         | 
| 14260 14139 | 
             
                    return self._IdentityId
         | 
| @@ -14266,7 +14145,6 @@ class MemberIdentity(AbstractModel): | |
| 14266 14145 | 
             
                @property
         | 
| 14267 14146 | 
             
                def IdentityAliasName(self):
         | 
| 14268 14147 | 
             
                    """身份名称。
         | 
| 14269 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14270 14148 | 
             
                    :rtype: str
         | 
| 14271 14149 | 
             
                    """
         | 
| 14272 14150 | 
             
                    return self._IdentityAliasName
         | 
| @@ -14297,10 +14175,8 @@ class MemberMainInfo(AbstractModel): | |
| 14297 14175 | 
             
                def __init__(self):
         | 
| 14298 14176 | 
             
                    r"""
         | 
| 14299 14177 | 
             
                    :param _MemberUin: 成员uin
         | 
| 14300 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14301 14178 | 
             
                    :type MemberUin: int
         | 
| 14302 | 
            -
                    :param _MemberName: 成员名称 | 
| 14303 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14179 | 
            +
                    :param _MemberName: 成员名称
         | 
| 14304 14180 | 
             
                    :type MemberName: str
         | 
| 14305 14181 | 
             
                    """
         | 
| 14306 14182 | 
             
                    self._MemberUin = None
         | 
| @@ -14309,7 +14185,6 @@ class MemberMainInfo(AbstractModel): | |
| 14309 14185 | 
             
                @property
         | 
| 14310 14186 | 
             
                def MemberUin(self):
         | 
| 14311 14187 | 
             
                    """成员uin
         | 
| 14312 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14313 14188 | 
             
                    :rtype: int
         | 
| 14314 14189 | 
             
                    """
         | 
| 14315 14190 | 
             
                    return self._MemberUin
         | 
| @@ -14320,8 +14195,7 @@ class MemberMainInfo(AbstractModel): | |
| 14320 14195 |  | 
| 14321 14196 | 
             
                @property
         | 
| 14322 14197 | 
             
                def MemberName(self):
         | 
| 14323 | 
            -
                    """成员名称 | 
| 14324 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14198 | 
            +
                    """成员名称
         | 
| 14325 14199 | 
             
                    :rtype: str
         | 
| 14326 14200 | 
             
                    """
         | 
| 14327 14201 | 
             
                    return self._MemberName
         | 
| @@ -14486,31 +14360,22 @@ class NotAllowReason(AbstractModel): | |
| 14486 14360 | 
             
                def __init__(self):
         | 
| 14487 14361 | 
             
                    r"""
         | 
| 14488 14362 | 
             
                    :param _IsCreateMember: 是否创建的成员。true-是、false-否;成员不是创建的成员不允许删除
         | 
| 14489 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14490 14363 | 
             
                    :type IsCreateMember: bool
         | 
| 14491 14364 | 
             
                    :param _DeletionPermission: 成员删除许可。true-开启、false-关闭;成员删除许可关闭时不允许删除
         | 
| 14492 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14493 14365 | 
             
                    :type DeletionPermission: bool
         | 
| 14494 14366 | 
             
                    :param _IsAssignManager: 是否可信服务委派管理员。true-是、false-否;成员是可信服务委派管理员不允许删除
         | 
| 14495 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14496 14367 | 
             
                    :type IsAssignManager: bool
         | 
| 14497 14368 | 
             
                    :param _IsAuthManager: 是否主体管理员。true-是、false-否;成员是主体管理员不允许删除
         | 
| 14498 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14499 14369 | 
             
                    :type IsAuthManager: bool
         | 
| 14500 14370 | 
             
                    :param _IsShareManager: 是否共享资源管理员。true-是、false-否;成员是共享资源管理员不允许删除
         | 
| 14501 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14502 14371 | 
             
                    :type IsShareManager: bool
         | 
| 14503 14372 | 
             
                    :param _OperateProcess: 成员是否设置了操作审批。true-是、false-否;成员设置了操作审批时不允许删除
         | 
| 14504 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14505 14373 | 
             
                    :type OperateProcess: bool
         | 
| 14506 14374 | 
             
                    :param _BillingPermission: 是否允许解除成员财务权限。true-是、false-否;成员不能解除财务权限时不允许删除
         | 
| 14507 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14508 14375 | 
             
                    :type BillingPermission: bool
         | 
| 14509 14376 | 
             
                    :param _ExistResources: 存在的资源列表。账号存在资源时不允许删除
         | 
| 14510 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14511 14377 | 
             
                    :type ExistResources: list of str
         | 
| 14512 14378 | 
             
                    :param _DetectFailedResources: 检测失败的资源列表。账号有资源检测失败时不允许删除。
         | 
| 14513 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14514 14379 | 
             
                    :type DetectFailedResources: list of str
         | 
| 14515 14380 | 
             
                    """
         | 
| 14516 14381 | 
             
                    self._IsCreateMember = None
         | 
| @@ -14526,7 +14391,6 @@ class NotAllowReason(AbstractModel): | |
| 14526 14391 | 
             
                @property
         | 
| 14527 14392 | 
             
                def IsCreateMember(self):
         | 
| 14528 14393 | 
             
                    """是否创建的成员。true-是、false-否;成员不是创建的成员不允许删除
         | 
| 14529 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14530 14394 | 
             
                    :rtype: bool
         | 
| 14531 14395 | 
             
                    """
         | 
| 14532 14396 | 
             
                    return self._IsCreateMember
         | 
| @@ -14538,7 +14402,6 @@ class NotAllowReason(AbstractModel): | |
| 14538 14402 | 
             
                @property
         | 
| 14539 14403 | 
             
                def DeletionPermission(self):
         | 
| 14540 14404 | 
             
                    """成员删除许可。true-开启、false-关闭;成员删除许可关闭时不允许删除
         | 
| 14541 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14542 14405 | 
             
                    :rtype: bool
         | 
| 14543 14406 | 
             
                    """
         | 
| 14544 14407 | 
             
                    return self._DeletionPermission
         | 
| @@ -14550,7 +14413,6 @@ class NotAllowReason(AbstractModel): | |
| 14550 14413 | 
             
                @property
         | 
| 14551 14414 | 
             
                def IsAssignManager(self):
         | 
| 14552 14415 | 
             
                    """是否可信服务委派管理员。true-是、false-否;成员是可信服务委派管理员不允许删除
         | 
| 14553 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14554 14416 | 
             
                    :rtype: bool
         | 
| 14555 14417 | 
             
                    """
         | 
| 14556 14418 | 
             
                    return self._IsAssignManager
         | 
| @@ -14562,7 +14424,6 @@ class NotAllowReason(AbstractModel): | |
| 14562 14424 | 
             
                @property
         | 
| 14563 14425 | 
             
                def IsAuthManager(self):
         | 
| 14564 14426 | 
             
                    """是否主体管理员。true-是、false-否;成员是主体管理员不允许删除
         | 
| 14565 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14566 14427 | 
             
                    :rtype: bool
         | 
| 14567 14428 | 
             
                    """
         | 
| 14568 14429 | 
             
                    return self._IsAuthManager
         | 
| @@ -14574,7 +14435,6 @@ class NotAllowReason(AbstractModel): | |
| 14574 14435 | 
             
                @property
         | 
| 14575 14436 | 
             
                def IsShareManager(self):
         | 
| 14576 14437 | 
             
                    """是否共享资源管理员。true-是、false-否;成员是共享资源管理员不允许删除
         | 
| 14577 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14578 14438 | 
             
                    :rtype: bool
         | 
| 14579 14439 | 
             
                    """
         | 
| 14580 14440 | 
             
                    return self._IsShareManager
         | 
| @@ -14586,7 +14446,6 @@ class NotAllowReason(AbstractModel): | |
| 14586 14446 | 
             
                @property
         | 
| 14587 14447 | 
             
                def OperateProcess(self):
         | 
| 14588 14448 | 
             
                    """成员是否设置了操作审批。true-是、false-否;成员设置了操作审批时不允许删除
         | 
| 14589 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14590 14449 | 
             
                    :rtype: bool
         | 
| 14591 14450 | 
             
                    """
         | 
| 14592 14451 | 
             
                    return self._OperateProcess
         | 
| @@ -14598,7 +14457,6 @@ class NotAllowReason(AbstractModel): | |
| 14598 14457 | 
             
                @property
         | 
| 14599 14458 | 
             
                def BillingPermission(self):
         | 
| 14600 14459 | 
             
                    """是否允许解除成员财务权限。true-是、false-否;成员不能解除财务权限时不允许删除
         | 
| 14601 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14602 14460 | 
             
                    :rtype: bool
         | 
| 14603 14461 | 
             
                    """
         | 
| 14604 14462 | 
             
                    return self._BillingPermission
         | 
| @@ -14610,7 +14468,6 @@ class NotAllowReason(AbstractModel): | |
| 14610 14468 | 
             
                @property
         | 
| 14611 14469 | 
             
                def ExistResources(self):
         | 
| 14612 14470 | 
             
                    """存在的资源列表。账号存在资源时不允许删除
         | 
| 14613 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14614 14471 | 
             
                    :rtype: list of str
         | 
| 14615 14472 | 
             
                    """
         | 
| 14616 14473 | 
             
                    return self._ExistResources
         | 
| @@ -14622,7 +14479,6 @@ class NotAllowReason(AbstractModel): | |
| 14622 14479 | 
             
                @property
         | 
| 14623 14480 | 
             
                def DetectFailedResources(self):
         | 
| 14624 14481 | 
             
                    """检测失败的资源列表。账号有资源检测失败时不允许删除。
         | 
| 14625 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14626 14482 | 
             
                    :rtype: list of str
         | 
| 14627 14483 | 
             
                    """
         | 
| 14628 14484 | 
             
                    return self._DetectFailedResources
         | 
| @@ -14828,22 +14684,16 @@ class OrgIdentity(AbstractModel): | |
| 14828 14684 | 
             
                def __init__(self):
         | 
| 14829 14685 | 
             
                    r"""
         | 
| 14830 14686 | 
             
                    :param _IdentityId: 身份ID。
         | 
| 14831 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14832 14687 | 
             
                    :type IdentityId: int
         | 
| 14833 14688 | 
             
                    :param _IdentityAliasName: 身份名称。
         | 
| 14834 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14835 14689 | 
             
                    :type IdentityAliasName: str
         | 
| 14836 14690 | 
             
                    :param _Description: 描述。
         | 
| 14837 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14838 14691 | 
             
                    :type Description: str
         | 
| 14839 14692 | 
             
                    :param _IdentityPolicy: 身份策略。
         | 
| 14840 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14841 14693 | 
             
                    :type IdentityPolicy: list of IdentityPolicy
         | 
| 14842 14694 | 
             
                    :param _IdentityType: 身份类型。 1-预设、 2-自定义
         | 
| 14843 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14844 14695 | 
             
                    :type IdentityType: int
         | 
| 14845 14696 | 
             
                    :param _UpdateTime: 更新时间。
         | 
| 14846 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14847 14697 | 
             
                    :type UpdateTime: str
         | 
| 14848 14698 | 
             
                    """
         | 
| 14849 14699 | 
             
                    self._IdentityId = None
         | 
| @@ -14856,7 +14706,6 @@ class OrgIdentity(AbstractModel): | |
| 14856 14706 | 
             
                @property
         | 
| 14857 14707 | 
             
                def IdentityId(self):
         | 
| 14858 14708 | 
             
                    """身份ID。
         | 
| 14859 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14860 14709 | 
             
                    :rtype: int
         | 
| 14861 14710 | 
             
                    """
         | 
| 14862 14711 | 
             
                    return self._IdentityId
         | 
| @@ -14868,7 +14717,6 @@ class OrgIdentity(AbstractModel): | |
| 14868 14717 | 
             
                @property
         | 
| 14869 14718 | 
             
                def IdentityAliasName(self):
         | 
| 14870 14719 | 
             
                    """身份名称。
         | 
| 14871 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14872 14720 | 
             
                    :rtype: str
         | 
| 14873 14721 | 
             
                    """
         | 
| 14874 14722 | 
             
                    return self._IdentityAliasName
         | 
| @@ -14880,7 +14728,6 @@ class OrgIdentity(AbstractModel): | |
| 14880 14728 | 
             
                @property
         | 
| 14881 14729 | 
             
                def Description(self):
         | 
| 14882 14730 | 
             
                    """描述。
         | 
| 14883 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14884 14731 | 
             
                    :rtype: str
         | 
| 14885 14732 | 
             
                    """
         | 
| 14886 14733 | 
             
                    return self._Description
         | 
| @@ -14892,7 +14739,6 @@ class OrgIdentity(AbstractModel): | |
| 14892 14739 | 
             
                @property
         | 
| 14893 14740 | 
             
                def IdentityPolicy(self):
         | 
| 14894 14741 | 
             
                    """身份策略。
         | 
| 14895 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14896 14742 | 
             
                    :rtype: list of IdentityPolicy
         | 
| 14897 14743 | 
             
                    """
         | 
| 14898 14744 | 
             
                    return self._IdentityPolicy
         | 
| @@ -14904,7 +14750,6 @@ class OrgIdentity(AbstractModel): | |
| 14904 14750 | 
             
                @property
         | 
| 14905 14751 | 
             
                def IdentityType(self):
         | 
| 14906 14752 | 
             
                    """身份类型。 1-预设、 2-自定义
         | 
| 14907 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14908 14753 | 
             
                    :rtype: int
         | 
| 14909 14754 | 
             
                    """
         | 
| 14910 14755 | 
             
                    return self._IdentityType
         | 
| @@ -14916,7 +14761,6 @@ class OrgIdentity(AbstractModel): | |
| 14916 14761 | 
             
                @property
         | 
| 14917 14762 | 
             
                def UpdateTime(self):
         | 
| 14918 14763 | 
             
                    """更新时间。
         | 
| 14919 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14920 14764 | 
             
                    :rtype: str
         | 
| 14921 14765 | 
             
                    """
         | 
| 14922 14766 | 
             
                    return self._UpdateTime
         | 
| @@ -14956,58 +14800,40 @@ class OrgMember(AbstractModel): | |
| 14956 14800 | 
             
                def __init__(self):
         | 
| 14957 14801 | 
             
                    r"""
         | 
| 14958 14802 | 
             
                    :param _MemberUin: 成员Uin
         | 
| 14959 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14960 14803 | 
             
                    :type MemberUin: int
         | 
| 14961 14804 | 
             
                    :param _Name: 成员名
         | 
| 14962 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14963 14805 | 
             
                    :type Name: str
         | 
| 14964 14806 | 
             
                    :param _MemberType: 成员类型,邀请:Invite, 创建:Create
         | 
| 14965 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14966 14807 | 
             
                    :type MemberType: str
         | 
| 14967 14808 | 
             
                    :param _OrgPolicyType: 关系策略类型
         | 
| 14968 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14969 14809 | 
             
                    :type OrgPolicyType: str
         | 
| 14970 14810 | 
             
                    :param _OrgPolicyName: 关系策略名
         | 
| 14971 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14972 14811 | 
             
                    :type OrgPolicyName: str
         | 
| 14973 14812 | 
             
                    :param _OrgPermission: 关系策略权限
         | 
| 14974 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14975 14813 | 
             
                    :type OrgPermission: list of OrgPermission
         | 
| 14976 14814 | 
             
                    :param _NodeId: 所属节点ID
         | 
| 14977 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14978 14815 | 
             
                    :type NodeId: int
         | 
| 14979 14816 | 
             
                    :param _NodeName: 所属节点名
         | 
| 14980 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14981 14817 | 
             
                    :type NodeName: str
         | 
| 14982 14818 | 
             
                    :param _Remark: 备注
         | 
| 14983 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14984 14819 | 
             
                    :type Remark: str
         | 
| 14985 14820 | 
             
                    :param _CreateTime: 创建时间
         | 
| 14986 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14987 14821 | 
             
                    :type CreateTime: str
         | 
| 14988 14822 | 
             
                    :param _UpdateTime: 更新时间
         | 
| 14989 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14990 14823 | 
             
                    :type UpdateTime: str
         | 
| 14991 14824 | 
             
                    :param _IsAllowQuit: 是否允许成员退出。允许:Allow,不允许:Denied。
         | 
| 14992 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14993 14825 | 
             
                    :type IsAllowQuit: str
         | 
| 14994 14826 | 
             
                    :param _PayUin: 代付者Uin
         | 
| 14995 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14996 14827 | 
             
                    :type PayUin: str
         | 
| 14997 14828 | 
             
                    :param _PayName: 代付者名称
         | 
| 14998 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14999 14829 | 
             
                    :type PayName: str
         | 
| 15000 14830 | 
             
                    :param _OrgIdentity: 管理身份
         | 
| 15001 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15002 14831 | 
             
                    :type OrgIdentity: list of MemberIdentity
         | 
| 15003 14832 | 
             
                    :param _BindStatus: 安全信息绑定状态  未绑定:Unbound,待激活:Valid,绑定成功:Success,绑定失败:Failed
         | 
| 15004 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15005 14833 | 
             
                    :type BindStatus: str
         | 
| 15006 14834 | 
             
                    :param _PermissionStatus: 成员权限状态 已确认:Confirmed ,待确认:UnConfirmed
         | 
| 15007 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15008 14835 | 
             
                    :type PermissionStatus: str
         | 
| 15009 14836 | 
             
                    :param _Tags: 成员标签列表
         | 
| 15010 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15011 14837 | 
             
                    :type Tags: list of Tag
         | 
| 15012 14838 | 
             
                    """
         | 
| 15013 14839 | 
             
                    self._MemberUin = None
         | 
| @@ -15032,7 +14858,6 @@ class OrgMember(AbstractModel): | |
| 15032 14858 | 
             
                @property
         | 
| 15033 14859 | 
             
                def MemberUin(self):
         | 
| 15034 14860 | 
             
                    """成员Uin
         | 
| 15035 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15036 14861 | 
             
                    :rtype: int
         | 
| 15037 14862 | 
             
                    """
         | 
| 15038 14863 | 
             
                    return self._MemberUin
         | 
| @@ -15044,7 +14869,6 @@ class OrgMember(AbstractModel): | |
| 15044 14869 | 
             
                @property
         | 
| 15045 14870 | 
             
                def Name(self):
         | 
| 15046 14871 | 
             
                    """成员名
         | 
| 15047 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15048 14872 | 
             
                    :rtype: str
         | 
| 15049 14873 | 
             
                    """
         | 
| 15050 14874 | 
             
                    return self._Name
         | 
| @@ -15056,7 +14880,6 @@ class OrgMember(AbstractModel): | |
| 15056 14880 | 
             
                @property
         | 
| 15057 14881 | 
             
                def MemberType(self):
         | 
| 15058 14882 | 
             
                    """成员类型,邀请:Invite, 创建:Create
         | 
| 15059 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15060 14883 | 
             
                    :rtype: str
         | 
| 15061 14884 | 
             
                    """
         | 
| 15062 14885 | 
             
                    return self._MemberType
         | 
| @@ -15068,7 +14891,6 @@ class OrgMember(AbstractModel): | |
| 15068 14891 | 
             
                @property
         | 
| 15069 14892 | 
             
                def OrgPolicyType(self):
         | 
| 15070 14893 | 
             
                    """关系策略类型
         | 
| 15071 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15072 14894 | 
             
                    :rtype: str
         | 
| 15073 14895 | 
             
                    """
         | 
| 15074 14896 | 
             
                    return self._OrgPolicyType
         | 
| @@ -15080,7 +14902,6 @@ class OrgMember(AbstractModel): | |
| 15080 14902 | 
             
                @property
         | 
| 15081 14903 | 
             
                def OrgPolicyName(self):
         | 
| 15082 14904 | 
             
                    """关系策略名
         | 
| 15083 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15084 14905 | 
             
                    :rtype: str
         | 
| 15085 14906 | 
             
                    """
         | 
| 15086 14907 | 
             
                    return self._OrgPolicyName
         | 
| @@ -15092,7 +14913,6 @@ class OrgMember(AbstractModel): | |
| 15092 14913 | 
             
                @property
         | 
| 15093 14914 | 
             
                def OrgPermission(self):
         | 
| 15094 14915 | 
             
                    """关系策略权限
         | 
| 15095 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15096 14916 | 
             
                    :rtype: list of OrgPermission
         | 
| 15097 14917 | 
             
                    """
         | 
| 15098 14918 | 
             
                    return self._OrgPermission
         | 
| @@ -15104,7 +14924,6 @@ class OrgMember(AbstractModel): | |
| 15104 14924 | 
             
                @property
         | 
| 15105 14925 | 
             
                def NodeId(self):
         | 
| 15106 14926 | 
             
                    """所属节点ID
         | 
| 15107 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15108 14927 | 
             
                    :rtype: int
         | 
| 15109 14928 | 
             
                    """
         | 
| 15110 14929 | 
             
                    return self._NodeId
         | 
| @@ -15116,7 +14935,6 @@ class OrgMember(AbstractModel): | |
| 15116 14935 | 
             
                @property
         | 
| 15117 14936 | 
             
                def NodeName(self):
         | 
| 15118 14937 | 
             
                    """所属节点名
         | 
| 15119 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15120 14938 | 
             
                    :rtype: str
         | 
| 15121 14939 | 
             
                    """
         | 
| 15122 14940 | 
             
                    return self._NodeName
         | 
| @@ -15128,7 +14946,6 @@ class OrgMember(AbstractModel): | |
| 15128 14946 | 
             
                @property
         | 
| 15129 14947 | 
             
                def Remark(self):
         | 
| 15130 14948 | 
             
                    """备注
         | 
| 15131 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15132 14949 | 
             
                    :rtype: str
         | 
| 15133 14950 | 
             
                    """
         | 
| 15134 14951 | 
             
                    return self._Remark
         | 
| @@ -15140,7 +14957,6 @@ class OrgMember(AbstractModel): | |
| 15140 14957 | 
             
                @property
         | 
| 15141 14958 | 
             
                def CreateTime(self):
         | 
| 15142 14959 | 
             
                    """创建时间
         | 
| 15143 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15144 14960 | 
             
                    :rtype: str
         | 
| 15145 14961 | 
             
                    """
         | 
| 15146 14962 | 
             
                    return self._CreateTime
         | 
| @@ -15152,7 +14968,6 @@ class OrgMember(AbstractModel): | |
| 15152 14968 | 
             
                @property
         | 
| 15153 14969 | 
             
                def UpdateTime(self):
         | 
| 15154 14970 | 
             
                    """更新时间
         | 
| 15155 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15156 14971 | 
             
                    :rtype: str
         | 
| 15157 14972 | 
             
                    """
         | 
| 15158 14973 | 
             
                    return self._UpdateTime
         | 
| @@ -15164,7 +14979,6 @@ class OrgMember(AbstractModel): | |
| 15164 14979 | 
             
                @property
         | 
| 15165 14980 | 
             
                def IsAllowQuit(self):
         | 
| 15166 14981 | 
             
                    """是否允许成员退出。允许:Allow,不允许:Denied。
         | 
| 15167 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15168 14982 | 
             
                    :rtype: str
         | 
| 15169 14983 | 
             
                    """
         | 
| 15170 14984 | 
             
                    return self._IsAllowQuit
         | 
| @@ -15176,7 +14990,6 @@ class OrgMember(AbstractModel): | |
| 15176 14990 | 
             
                @property
         | 
| 15177 14991 | 
             
                def PayUin(self):
         | 
| 15178 14992 | 
             
                    """代付者Uin
         | 
| 15179 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15180 14993 | 
             
                    :rtype: str
         | 
| 15181 14994 | 
             
                    """
         | 
| 15182 14995 | 
             
                    return self._PayUin
         | 
| @@ -15188,7 +15001,6 @@ class OrgMember(AbstractModel): | |
| 15188 15001 | 
             
                @property
         | 
| 15189 15002 | 
             
                def PayName(self):
         | 
| 15190 15003 | 
             
                    """代付者名称
         | 
| 15191 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15192 15004 | 
             
                    :rtype: str
         | 
| 15193 15005 | 
             
                    """
         | 
| 15194 15006 | 
             
                    return self._PayName
         | 
| @@ -15200,7 +15012,6 @@ class OrgMember(AbstractModel): | |
| 15200 15012 | 
             
                @property
         | 
| 15201 15013 | 
             
                def OrgIdentity(self):
         | 
| 15202 15014 | 
             
                    """管理身份
         | 
| 15203 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15204 15015 | 
             
                    :rtype: list of MemberIdentity
         | 
| 15205 15016 | 
             
                    """
         | 
| 15206 15017 | 
             
                    return self._OrgIdentity
         | 
| @@ -15212,7 +15023,6 @@ class OrgMember(AbstractModel): | |
| 15212 15023 | 
             
                @property
         | 
| 15213 15024 | 
             
                def BindStatus(self):
         | 
| 15214 15025 | 
             
                    """安全信息绑定状态  未绑定:Unbound,待激活:Valid,绑定成功:Success,绑定失败:Failed
         | 
| 15215 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15216 15026 | 
             
                    :rtype: str
         | 
| 15217 15027 | 
             
                    """
         | 
| 15218 15028 | 
             
                    return self._BindStatus
         | 
| @@ -15224,7 +15034,6 @@ class OrgMember(AbstractModel): | |
| 15224 15034 | 
             
                @property
         | 
| 15225 15035 | 
             
                def PermissionStatus(self):
         | 
| 15226 15036 | 
             
                    """成员权限状态 已确认:Confirmed ,待确认:UnConfirmed
         | 
| 15227 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15228 15037 | 
             
                    :rtype: str
         | 
| 15229 15038 | 
             
                    """
         | 
| 15230 15039 | 
             
                    return self._PermissionStatus
         | 
| @@ -15236,7 +15045,6 @@ class OrgMember(AbstractModel): | |
| 15236 15045 | 
             
                @property
         | 
| 15237 15046 | 
             
                def Tags(self):
         | 
| 15238 15047 | 
             
                    """成员标签列表
         | 
| 15239 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15240 15048 | 
             
                    :rtype: list of Tag
         | 
| 15241 15049 | 
             
                    """
         | 
| 15242 15050 | 
             
                    return self._Tags
         | 
| @@ -15298,31 +15106,22 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15298 15106 | 
             
                def __init__(self):
         | 
| 15299 15107 | 
             
                    r"""
         | 
| 15300 15108 | 
             
                    :param _OrgSubAccountUin: 组织子账号Uin。
         | 
| 15301 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15302 15109 | 
             
                    :type OrgSubAccountUin: int
         | 
| 15303 15110 | 
             
                    :param _PolicyId: 策略ID。
         | 
| 15304 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15305 15111 | 
             
                    :type PolicyId: int
         | 
| 15306 15112 | 
             
                    :param _PolicyName: 策略名。
         | 
| 15307 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15308 15113 | 
             
                    :type PolicyName: str
         | 
| 15309 15114 | 
             
                    :param _IdentityId: 身份ID。
         | 
| 15310 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15311 15115 | 
             
                    :type IdentityId: int
         | 
| 15312 15116 | 
             
                    :param _IdentityRoleName: 身份角色名。
         | 
| 15313 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15314 15117 | 
             
                    :type IdentityRoleName: str
         | 
| 15315 15118 | 
             
                    :param _IdentityRoleAliasName: 身份角色别名。
         | 
| 15316 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15317 15119 | 
             
                    :type IdentityRoleAliasName: str
         | 
| 15318 15120 | 
             
                    :param _CreateTime: 创建时间。
         | 
| 15319 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15320 15121 | 
             
                    :type CreateTime: str
         | 
| 15321 15122 | 
             
                    :param _UpdateTime: 更新时间。
         | 
| 15322 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15323 15123 | 
             
                    :type UpdateTime: str
         | 
| 15324 15124 | 
             
                    :param _OrgSubAccountName: 子账号名称
         | 
| 15325 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15326 15125 | 
             
                    :type OrgSubAccountName: str
         | 
| 15327 15126 | 
             
                    """
         | 
| 15328 15127 | 
             
                    self._OrgSubAccountUin = None
         | 
| @@ -15338,7 +15137,6 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15338 15137 | 
             
                @property
         | 
| 15339 15138 | 
             
                def OrgSubAccountUin(self):
         | 
| 15340 15139 | 
             
                    """组织子账号Uin。
         | 
| 15341 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15342 15140 | 
             
                    :rtype: int
         | 
| 15343 15141 | 
             
                    """
         | 
| 15344 15142 | 
             
                    return self._OrgSubAccountUin
         | 
| @@ -15350,7 +15148,6 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15350 15148 | 
             
                @property
         | 
| 15351 15149 | 
             
                def PolicyId(self):
         | 
| 15352 15150 | 
             
                    """策略ID。
         | 
| 15353 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15354 15151 | 
             
                    :rtype: int
         | 
| 15355 15152 | 
             
                    """
         | 
| 15356 15153 | 
             
                    return self._PolicyId
         | 
| @@ -15362,7 +15159,6 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15362 15159 | 
             
                @property
         | 
| 15363 15160 | 
             
                def PolicyName(self):
         | 
| 15364 15161 | 
             
                    """策略名。
         | 
| 15365 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15366 15162 | 
             
                    :rtype: str
         | 
| 15367 15163 | 
             
                    """
         | 
| 15368 15164 | 
             
                    return self._PolicyName
         | 
| @@ -15374,7 +15170,6 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15374 15170 | 
             
                @property
         | 
| 15375 15171 | 
             
                def IdentityId(self):
         | 
| 15376 15172 | 
             
                    """身份ID。
         | 
| 15377 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15378 15173 | 
             
                    :rtype: int
         | 
| 15379 15174 | 
             
                    """
         | 
| 15380 15175 | 
             
                    return self._IdentityId
         | 
| @@ -15386,7 +15181,6 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15386 15181 | 
             
                @property
         | 
| 15387 15182 | 
             
                def IdentityRoleName(self):
         | 
| 15388 15183 | 
             
                    """身份角色名。
         | 
| 15389 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15390 15184 | 
             
                    :rtype: str
         | 
| 15391 15185 | 
             
                    """
         | 
| 15392 15186 | 
             
                    return self._IdentityRoleName
         | 
| @@ -15398,7 +15192,6 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15398 15192 | 
             
                @property
         | 
| 15399 15193 | 
             
                def IdentityRoleAliasName(self):
         | 
| 15400 15194 | 
             
                    """身份角色别名。
         | 
| 15401 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15402 15195 | 
             
                    :rtype: str
         | 
| 15403 15196 | 
             
                    """
         | 
| 15404 15197 | 
             
                    return self._IdentityRoleAliasName
         | 
| @@ -15410,7 +15203,6 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15410 15203 | 
             
                @property
         | 
| 15411 15204 | 
             
                def CreateTime(self):
         | 
| 15412 15205 | 
             
                    """创建时间。
         | 
| 15413 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15414 15206 | 
             
                    :rtype: str
         | 
| 15415 15207 | 
             
                    """
         | 
| 15416 15208 | 
             
                    return self._CreateTime
         | 
| @@ -15422,7 +15214,6 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15422 15214 | 
             
                @property
         | 
| 15423 15215 | 
             
                def UpdateTime(self):
         | 
| 15424 15216 | 
             
                    """更新时间。
         | 
| 15425 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15426 15217 | 
             
                    :rtype: str
         | 
| 15427 15218 | 
             
                    """
         | 
| 15428 15219 | 
             
                    return self._UpdateTime
         | 
| @@ -15434,7 +15225,6 @@ class OrgMemberAuthAccount(AbstractModel): | |
| 15434 15225 | 
             
                @property
         | 
| 15435 15226 | 
             
                def OrgSubAccountName(self):
         | 
| 15436 15227 | 
             
                    """子账号名称
         | 
| 15437 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15438 15228 | 
             
                    :rtype: str
         | 
| 15439 15229 | 
             
                    """
         | 
| 15440 15230 | 
             
                    return self._OrgSubAccountName
         | 
| @@ -15472,34 +15262,24 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15472 15262 | 
             
                def __init__(self):
         | 
| 15473 15263 | 
             
                    r"""
         | 
| 15474 15264 | 
             
                    :param _IdentityId: 身份ID。
         | 
| 15475 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15476 15265 | 
             
                    :type IdentityId: int
         | 
| 15477 15266 | 
             
                    :param _IdentityRoleName: 身份的角色名。
         | 
| 15478 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15479 15267 | 
             
                    :type IdentityRoleName: str
         | 
| 15480 15268 | 
             
                    :param _IdentityRoleAliasName: 身份的角色别名。
         | 
| 15481 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15482 15269 | 
             
                    :type IdentityRoleAliasName: str
         | 
| 15483 15270 | 
             
                    :param _Description: 身份描述。
         | 
| 15484 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15485 15271 | 
             
                    :type Description: str
         | 
| 15486 15272 | 
             
                    :param _CreateTime: 首次配置成功的时间。
         | 
| 15487 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15488 15273 | 
             
                    :type CreateTime: str
         | 
| 15489 15274 | 
             
                    :param _UpdateTime: 最后一次配置成功的时间。
         | 
| 15490 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15491 15275 | 
             
                    :type UpdateTime: str
         | 
| 15492 15276 | 
             
                    :param _IdentityType: 身份类型。取值: 1-预设身份  2-自定义身份
         | 
| 15493 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15494 15277 | 
             
                    :type IdentityType: int
         | 
| 15495 15278 | 
             
                    :param _Status: 配置状态。取值:1-配置完成 2-需重新配置
         | 
| 15496 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15497 15279 | 
             
                    :type Status: int
         | 
| 15498 15280 | 
             
                    :param _MemberUin: 成员Uin。
         | 
| 15499 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15500 15281 | 
             
                    :type MemberUin: int
         | 
| 15501 15282 | 
             
                    :param _MemberName: 成员名称。
         | 
| 15502 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15503 15283 | 
             
                    :type MemberName: str
         | 
| 15504 15284 | 
             
                    """
         | 
| 15505 15285 | 
             
                    self._IdentityId = None
         | 
| @@ -15516,7 +15296,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15516 15296 | 
             
                @property
         | 
| 15517 15297 | 
             
                def IdentityId(self):
         | 
| 15518 15298 | 
             
                    """身份ID。
         | 
| 15519 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15520 15299 | 
             
                    :rtype: int
         | 
| 15521 15300 | 
             
                    """
         | 
| 15522 15301 | 
             
                    return self._IdentityId
         | 
| @@ -15528,7 +15307,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15528 15307 | 
             
                @property
         | 
| 15529 15308 | 
             
                def IdentityRoleName(self):
         | 
| 15530 15309 | 
             
                    """身份的角色名。
         | 
| 15531 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15532 15310 | 
             
                    :rtype: str
         | 
| 15533 15311 | 
             
                    """
         | 
| 15534 15312 | 
             
                    return self._IdentityRoleName
         | 
| @@ -15540,7 +15318,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15540 15318 | 
             
                @property
         | 
| 15541 15319 | 
             
                def IdentityRoleAliasName(self):
         | 
| 15542 15320 | 
             
                    """身份的角色别名。
         | 
| 15543 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15544 15321 | 
             
                    :rtype: str
         | 
| 15545 15322 | 
             
                    """
         | 
| 15546 15323 | 
             
                    return self._IdentityRoleAliasName
         | 
| @@ -15552,7 +15329,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15552 15329 | 
             
                @property
         | 
| 15553 15330 | 
             
                def Description(self):
         | 
| 15554 15331 | 
             
                    """身份描述。
         | 
| 15555 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15556 15332 | 
             
                    :rtype: str
         | 
| 15557 15333 | 
             
                    """
         | 
| 15558 15334 | 
             
                    return self._Description
         | 
| @@ -15564,7 +15340,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15564 15340 | 
             
                @property
         | 
| 15565 15341 | 
             
                def CreateTime(self):
         | 
| 15566 15342 | 
             
                    """首次配置成功的时间。
         | 
| 15567 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15568 15343 | 
             
                    :rtype: str
         | 
| 15569 15344 | 
             
                    """
         | 
| 15570 15345 | 
             
                    return self._CreateTime
         | 
| @@ -15576,7 +15351,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15576 15351 | 
             
                @property
         | 
| 15577 15352 | 
             
                def UpdateTime(self):
         | 
| 15578 15353 | 
             
                    """最后一次配置成功的时间。
         | 
| 15579 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15580 15354 | 
             
                    :rtype: str
         | 
| 15581 15355 | 
             
                    """
         | 
| 15582 15356 | 
             
                    return self._UpdateTime
         | 
| @@ -15588,7 +15362,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15588 15362 | 
             
                @property
         | 
| 15589 15363 | 
             
                def IdentityType(self):
         | 
| 15590 15364 | 
             
                    """身份类型。取值: 1-预设身份  2-自定义身份
         | 
| 15591 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15592 15365 | 
             
                    :rtype: int
         | 
| 15593 15366 | 
             
                    """
         | 
| 15594 15367 | 
             
                    return self._IdentityType
         | 
| @@ -15600,7 +15373,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15600 15373 | 
             
                @property
         | 
| 15601 15374 | 
             
                def Status(self):
         | 
| 15602 15375 | 
             
                    """配置状态。取值:1-配置完成 2-需重新配置
         | 
| 15603 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15604 15376 | 
             
                    :rtype: int
         | 
| 15605 15377 | 
             
                    """
         | 
| 15606 15378 | 
             
                    return self._Status
         | 
| @@ -15612,7 +15384,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15612 15384 | 
             
                @property
         | 
| 15613 15385 | 
             
                def MemberUin(self):
         | 
| 15614 15386 | 
             
                    """成员Uin。
         | 
| 15615 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15616 15387 | 
             
                    :rtype: int
         | 
| 15617 15388 | 
             
                    """
         | 
| 15618 15389 | 
             
                    return self._MemberUin
         | 
| @@ -15624,7 +15395,6 @@ class OrgMemberAuthIdentity(AbstractModel): | |
| 15624 15395 | 
             
                @property
         | 
| 15625 15396 | 
             
                def MemberName(self):
         | 
| 15626 15397 | 
             
                    """成员名称。
         | 
| 15627 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15628 15398 | 
             
                    :rtype: str
         | 
| 15629 15399 | 
             
                    """
         | 
| 15630 15400 | 
             
                    return self._MemberName
         | 
| @@ -15663,16 +15433,12 @@ class OrgMemberFinancial(AbstractModel): | |
| 15663 15433 | 
             
                def __init__(self):
         | 
| 15664 15434 | 
             
                    r"""
         | 
| 15665 15435 | 
             
                    :param _MemberUin: 成员Uin。
         | 
| 15666 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15667 15436 | 
             
                    :type MemberUin: int
         | 
| 15668 15437 | 
             
                    :param _MemberName: 成员名称。
         | 
| 15669 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15670 15438 | 
             
                    :type MemberName: str
         | 
| 15671 15439 | 
             
                    :param _TotalCost: 消耗金额,单位:元。
         | 
| 15672 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15673 15440 | 
             
                    :type TotalCost: float
         | 
| 15674 15441 | 
             
                    :param _Ratio: 占比%。
         | 
| 15675 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15676 15442 | 
             
                    :type Ratio: str
         | 
| 15677 15443 | 
             
                    """
         | 
| 15678 15444 | 
             
                    self._MemberUin = None
         | 
| @@ -15683,7 +15449,6 @@ class OrgMemberFinancial(AbstractModel): | |
| 15683 15449 | 
             
                @property
         | 
| 15684 15450 | 
             
                def MemberUin(self):
         | 
| 15685 15451 | 
             
                    """成员Uin。
         | 
| 15686 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15687 15452 | 
             
                    :rtype: int
         | 
| 15688 15453 | 
             
                    """
         | 
| 15689 15454 | 
             
                    return self._MemberUin
         | 
| @@ -15695,7 +15460,6 @@ class OrgMemberFinancial(AbstractModel): | |
| 15695 15460 | 
             
                @property
         | 
| 15696 15461 | 
             
                def MemberName(self):
         | 
| 15697 15462 | 
             
                    """成员名称。
         | 
| 15698 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15699 15463 | 
             
                    :rtype: str
         | 
| 15700 15464 | 
             
                    """
         | 
| 15701 15465 | 
             
                    return self._MemberName
         | 
| @@ -15707,7 +15471,6 @@ class OrgMemberFinancial(AbstractModel): | |
| 15707 15471 | 
             
                @property
         | 
| 15708 15472 | 
             
                def TotalCost(self):
         | 
| 15709 15473 | 
             
                    """消耗金额,单位:元。
         | 
| 15710 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15711 15474 | 
             
                    :rtype: float
         | 
| 15712 15475 | 
             
                    """
         | 
| 15713 15476 | 
             
                    return self._TotalCost
         | 
| @@ -15719,7 +15482,6 @@ class OrgMemberFinancial(AbstractModel): | |
| 15719 15482 | 
             
                @property
         | 
| 15720 15483 | 
             
                def Ratio(self):
         | 
| 15721 15484 | 
             
                    """占比%。
         | 
| 15722 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15723 15485 | 
             
                    :rtype: str
         | 
| 15724 15486 | 
             
                    """
         | 
| 15725 15487 | 
             
                    return self._Ratio
         | 
| @@ -15752,28 +15514,20 @@ class OrgMemberPolicy(AbstractModel): | |
| 15752 15514 | 
             
                def __init__(self):
         | 
| 15753 15515 | 
             
                    r"""
         | 
| 15754 15516 | 
             
                    :param _PolicyId: 策略ID。
         | 
| 15755 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15756 15517 | 
             
                    :type PolicyId: int
         | 
| 15757 15518 | 
             
                    :param _PolicyName: 策略名。
         | 
| 15758 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15759 15519 | 
             
                    :type PolicyName: str
         | 
| 15760 15520 | 
             
                    :param _IdentityId: 身份ID。
         | 
| 15761 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15762 15521 | 
             
                    :type IdentityId: int
         | 
| 15763 15522 | 
             
                    :param _IdentityRoleName: 身份角色名。
         | 
| 15764 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15765 15523 | 
             
                    :type IdentityRoleName: str
         | 
| 15766 15524 | 
             
                    :param _IdentityRoleAliasName: 身份角色别名。
         | 
| 15767 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15768 15525 | 
             
                    :type IdentityRoleAliasName: str
         | 
| 15769 15526 | 
             
                    :param _Description: 描述。
         | 
| 15770 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15771 15527 | 
             
                    :type Description: str
         | 
| 15772 15528 | 
             
                    :param _CreateTime: 创建时间。
         | 
| 15773 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15774 15529 | 
             
                    :type CreateTime: str
         | 
| 15775 15530 | 
             
                    :param _UpdateTime: 更新时间。
         | 
| 15776 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15777 15531 | 
             
                    :type UpdateTime: str
         | 
| 15778 15532 | 
             
                    """
         | 
| 15779 15533 | 
             
                    self._PolicyId = None
         | 
| @@ -15788,7 +15542,6 @@ class OrgMemberPolicy(AbstractModel): | |
| 15788 15542 | 
             
                @property
         | 
| 15789 15543 | 
             
                def PolicyId(self):
         | 
| 15790 15544 | 
             
                    """策略ID。
         | 
| 15791 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15792 15545 | 
             
                    :rtype: int
         | 
| 15793 15546 | 
             
                    """
         | 
| 15794 15547 | 
             
                    return self._PolicyId
         | 
| @@ -15800,7 +15553,6 @@ class OrgMemberPolicy(AbstractModel): | |
| 15800 15553 | 
             
                @property
         | 
| 15801 15554 | 
             
                def PolicyName(self):
         | 
| 15802 15555 | 
             
                    """策略名。
         | 
| 15803 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15804 15556 | 
             
                    :rtype: str
         | 
| 15805 15557 | 
             
                    """
         | 
| 15806 15558 | 
             
                    return self._PolicyName
         | 
| @@ -15812,7 +15564,6 @@ class OrgMemberPolicy(AbstractModel): | |
| 15812 15564 | 
             
                @property
         | 
| 15813 15565 | 
             
                def IdentityId(self):
         | 
| 15814 15566 | 
             
                    """身份ID。
         | 
| 15815 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15816 15567 | 
             
                    :rtype: int
         | 
| 15817 15568 | 
             
                    """
         | 
| 15818 15569 | 
             
                    return self._IdentityId
         | 
| @@ -15824,7 +15575,6 @@ class OrgMemberPolicy(AbstractModel): | |
| 15824 15575 | 
             
                @property
         | 
| 15825 15576 | 
             
                def IdentityRoleName(self):
         | 
| 15826 15577 | 
             
                    """身份角色名。
         | 
| 15827 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15828 15578 | 
             
                    :rtype: str
         | 
| 15829 15579 | 
             
                    """
         | 
| 15830 15580 | 
             
                    return self._IdentityRoleName
         | 
| @@ -15836,7 +15586,6 @@ class OrgMemberPolicy(AbstractModel): | |
| 15836 15586 | 
             
                @property
         | 
| 15837 15587 | 
             
                def IdentityRoleAliasName(self):
         | 
| 15838 15588 | 
             
                    """身份角色别名。
         | 
| 15839 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15840 15589 | 
             
                    :rtype: str
         | 
| 15841 15590 | 
             
                    """
         | 
| 15842 15591 | 
             
                    return self._IdentityRoleAliasName
         | 
| @@ -15848,7 +15597,6 @@ class OrgMemberPolicy(AbstractModel): | |
| 15848 15597 | 
             
                @property
         | 
| 15849 15598 | 
             
                def Description(self):
         | 
| 15850 15599 | 
             
                    """描述。
         | 
| 15851 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15852 15600 | 
             
                    :rtype: str
         | 
| 15853 15601 | 
             
                    """
         | 
| 15854 15602 | 
             
                    return self._Description
         | 
| @@ -15860,7 +15608,6 @@ class OrgMemberPolicy(AbstractModel): | |
| 15860 15608 | 
             
                @property
         | 
| 15861 15609 | 
             
                def CreateTime(self):
         | 
| 15862 15610 | 
             
                    """创建时间。
         | 
| 15863 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15864 15611 | 
             
                    :rtype: str
         | 
| 15865 15612 | 
             
                    """
         | 
| 15866 15613 | 
             
                    return self._CreateTime
         | 
| @@ -15872,7 +15619,6 @@ class OrgMemberPolicy(AbstractModel): | |
| 15872 15619 | 
             
                @property
         | 
| 15873 15620 | 
             
                def UpdateTime(self):
         | 
| 15874 15621 | 
             
                    """更新时间。
         | 
| 15875 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15876 15622 | 
             
                    :rtype: str
         | 
| 15877 15623 | 
             
                    """
         | 
| 15878 15624 | 
             
                    return self._UpdateTime
         | 
| @@ -15909,25 +15655,18 @@ class OrgNode(AbstractModel): | |
| 15909 15655 | 
             
                def __init__(self):
         | 
| 15910 15656 | 
             
                    r"""
         | 
| 15911 15657 | 
             
                    :param _NodeId: 组织节点ID
         | 
| 15912 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15913 15658 | 
             
                    :type NodeId: int
         | 
| 15914 15659 | 
             
                    :param _Name: 名称
         | 
| 15915 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15916 15660 | 
             
                    :type Name: str
         | 
| 15917 15661 | 
             
                    :param _ParentNodeId: 父节点ID
         | 
| 15918 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15919 15662 | 
             
                    :type ParentNodeId: int
         | 
| 15920 15663 | 
             
                    :param _Remark: 备注
         | 
| 15921 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15922 15664 | 
             
                    :type Remark: str
         | 
| 15923 15665 | 
             
                    :param _CreateTime: 创建时间
         | 
| 15924 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15925 15666 | 
             
                    :type CreateTime: str
         | 
| 15926 15667 | 
             
                    :param _UpdateTime: 更新时间
         | 
| 15927 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15928 15668 | 
             
                    :type UpdateTime: str
         | 
| 15929 15669 | 
             
                    :param _Tags: 成员标签列表
         | 
| 15930 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15931 15670 | 
             
                    :type Tags: list of Tag
         | 
| 15932 15671 | 
             
                    """
         | 
| 15933 15672 | 
             
                    self._NodeId = None
         | 
| @@ -15941,7 +15680,6 @@ class OrgNode(AbstractModel): | |
| 15941 15680 | 
             
                @property
         | 
| 15942 15681 | 
             
                def NodeId(self):
         | 
| 15943 15682 | 
             
                    """组织节点ID
         | 
| 15944 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15945 15683 | 
             
                    :rtype: int
         | 
| 15946 15684 | 
             
                    """
         | 
| 15947 15685 | 
             
                    return self._NodeId
         | 
| @@ -15953,7 +15691,6 @@ class OrgNode(AbstractModel): | |
| 15953 15691 | 
             
                @property
         | 
| 15954 15692 | 
             
                def Name(self):
         | 
| 15955 15693 | 
             
                    """名称
         | 
| 15956 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15957 15694 | 
             
                    :rtype: str
         | 
| 15958 15695 | 
             
                    """
         | 
| 15959 15696 | 
             
                    return self._Name
         | 
| @@ -15965,7 +15702,6 @@ class OrgNode(AbstractModel): | |
| 15965 15702 | 
             
                @property
         | 
| 15966 15703 | 
             
                def ParentNodeId(self):
         | 
| 15967 15704 | 
             
                    """父节点ID
         | 
| 15968 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15969 15705 | 
             
                    :rtype: int
         | 
| 15970 15706 | 
             
                    """
         | 
| 15971 15707 | 
             
                    return self._ParentNodeId
         | 
| @@ -15977,7 +15713,6 @@ class OrgNode(AbstractModel): | |
| 15977 15713 | 
             
                @property
         | 
| 15978 15714 | 
             
                def Remark(self):
         | 
| 15979 15715 | 
             
                    """备注
         | 
| 15980 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15981 15716 | 
             
                    :rtype: str
         | 
| 15982 15717 | 
             
                    """
         | 
| 15983 15718 | 
             
                    return self._Remark
         | 
| @@ -15989,7 +15724,6 @@ class OrgNode(AbstractModel): | |
| 15989 15724 | 
             
                @property
         | 
| 15990 15725 | 
             
                def CreateTime(self):
         | 
| 15991 15726 | 
             
                    """创建时间
         | 
| 15992 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15993 15727 | 
             
                    :rtype: str
         | 
| 15994 15728 | 
             
                    """
         | 
| 15995 15729 | 
             
                    return self._CreateTime
         | 
| @@ -16001,7 +15735,6 @@ class OrgNode(AbstractModel): | |
| 16001 15735 | 
             
                @property
         | 
| 16002 15736 | 
             
                def UpdateTime(self):
         | 
| 16003 15737 | 
             
                    """更新时间
         | 
| 16004 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16005 15738 | 
             
                    :rtype: str
         | 
| 16006 15739 | 
             
                    """
         | 
| 16007 15740 | 
             
                    return self._UpdateTime
         | 
| @@ -16013,7 +15746,6 @@ class OrgNode(AbstractModel): | |
| 16013 15746 | 
             
                @property
         | 
| 16014 15747 | 
             
                def Tags(self):
         | 
| 16015 15748 | 
             
                    """成员标签列表
         | 
| 16016 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16017 15749 | 
             
                    :rtype: list of Tag
         | 
| 16018 15750 | 
             
                    """
         | 
| 16019 15751 | 
             
                    return self._Tags
         | 
| @@ -16194,44 +15926,31 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16194 15926 | 
             
                def __init__(self):
         | 
| 16195 15927 | 
             
                    r"""
         | 
| 16196 15928 | 
             
                    :param _ServiceId: 集团服务ID。
         | 
| 16197 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16198 15929 | 
             
                    :type ServiceId: int
         | 
| 16199 15930 | 
             
                    :param _ProductName: 集团服务产品名称。
         | 
| 16200 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16201 15931 | 
             
                    :type ProductName: str
         | 
| 16202 15932 | 
             
                    :param _IsAssign: 是否支持委派。取值: 1-是  2-否
         | 
| 16203 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16204 15933 | 
             
                    :type IsAssign: int
         | 
| 16205 15934 | 
             
                    :param _Description: 集团服务描述。
         | 
| 16206 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16207 15935 | 
             
                    :type Description: str
         | 
| 16208 15936 | 
             
                    :param _MemberNum: 当前委派管理员数。
         | 
| 16209 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16210 15937 | 
             
                    :type MemberNum: str
         | 
| 16211 15938 | 
             
                    :param _Document: 帮助文档。
         | 
| 16212 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16213 15939 | 
             
                    :type Document: str
         | 
| 16214 15940 | 
             
                    :param _ConsoleUrl: 集团服务产品控制台路径。
         | 
| 16215 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16216 15941 | 
             
                    :type ConsoleUrl: str
         | 
| 16217 15942 | 
             
                    :param _IsUsageStatus: 是否接入使用状态。取值: 1-是 
         | 
| 16218 15943 | 
             
             2-否
         | 
| 16219 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16220 15944 | 
             
                    :type IsUsageStatus: int
         | 
| 16221 15945 | 
             
                    :param _CanAssignCount: 委派管理员数量限制。
         | 
| 16222 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16223 15946 | 
             
                    :type CanAssignCount: int
         | 
| 16224 15947 | 
             
                    :param _Product: 集团服务产品标识。
         | 
| 16225 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16226 15948 | 
             
                    :type Product: str
         | 
| 16227 15949 | 
             
                    :param _ServiceGrant: 是否支持集团服务授权。取值 1-是、2-否
         | 
| 16228 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16229 15950 | 
             
                    :type ServiceGrant: int
         | 
| 16230 15951 | 
             
                    :param _GrantStatus: 集团服务授权启用状态。ServiceGrant值为1时该字段有效 ,取值:Enabled-开启  Disabled-关闭 
         | 
| 16231 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16232 15952 | 
             
                    :type GrantStatus: str
         | 
| 16233 15953 | 
             
                    :param _IsSetManagementScope: 是否支持设置委派管理范围。取值: 1-是  2-否
         | 
| 16234 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16235 15954 | 
             
                    :type IsSetManagementScope: int
         | 
| 16236 15955 | 
             
                    """
         | 
| 16237 15956 | 
             
                    self._ServiceId = None
         | 
| @@ -16251,7 +15970,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16251 15970 | 
             
                @property
         | 
| 16252 15971 | 
             
                def ServiceId(self):
         | 
| 16253 15972 | 
             
                    """集团服务ID。
         | 
| 16254 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16255 15973 | 
             
                    :rtype: int
         | 
| 16256 15974 | 
             
                    """
         | 
| 16257 15975 | 
             
                    return self._ServiceId
         | 
| @@ -16263,7 +15981,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16263 15981 | 
             
                @property
         | 
| 16264 15982 | 
             
                def ProductName(self):
         | 
| 16265 15983 | 
             
                    """集团服务产品名称。
         | 
| 16266 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16267 15984 | 
             
                    :rtype: str
         | 
| 16268 15985 | 
             
                    """
         | 
| 16269 15986 | 
             
                    return self._ProductName
         | 
| @@ -16275,7 +15992,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16275 15992 | 
             
                @property
         | 
| 16276 15993 | 
             
                def IsAssign(self):
         | 
| 16277 15994 | 
             
                    """是否支持委派。取值: 1-是  2-否
         | 
| 16278 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16279 15995 | 
             
                    :rtype: int
         | 
| 16280 15996 | 
             
                    """
         | 
| 16281 15997 | 
             
                    return self._IsAssign
         | 
| @@ -16287,7 +16003,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16287 16003 | 
             
                @property
         | 
| 16288 16004 | 
             
                def Description(self):
         | 
| 16289 16005 | 
             
                    """集团服务描述。
         | 
| 16290 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16291 16006 | 
             
                    :rtype: str
         | 
| 16292 16007 | 
             
                    """
         | 
| 16293 16008 | 
             
                    return self._Description
         | 
| @@ -16299,7 +16014,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16299 16014 | 
             
                @property
         | 
| 16300 16015 | 
             
                def MemberNum(self):
         | 
| 16301 16016 | 
             
                    """当前委派管理员数。
         | 
| 16302 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16303 16017 | 
             
                    :rtype: str
         | 
| 16304 16018 | 
             
                    """
         | 
| 16305 16019 | 
             
                    return self._MemberNum
         | 
| @@ -16311,7 +16025,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16311 16025 | 
             
                @property
         | 
| 16312 16026 | 
             
                def Document(self):
         | 
| 16313 16027 | 
             
                    """帮助文档。
         | 
| 16314 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16315 16028 | 
             
                    :rtype: str
         | 
| 16316 16029 | 
             
                    """
         | 
| 16317 16030 | 
             
                    return self._Document
         | 
| @@ -16323,7 +16036,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16323 16036 | 
             
                @property
         | 
| 16324 16037 | 
             
                def ConsoleUrl(self):
         | 
| 16325 16038 | 
             
                    """集团服务产品控制台路径。
         | 
| 16326 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16327 16039 | 
             
                    :rtype: str
         | 
| 16328 16040 | 
             
                    """
         | 
| 16329 16041 | 
             
                    return self._ConsoleUrl
         | 
| @@ -16336,7 +16048,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16336 16048 | 
             
                def IsUsageStatus(self):
         | 
| 16337 16049 | 
             
                    """是否接入使用状态。取值: 1-是 
         | 
| 16338 16050 | 
             
             2-否
         | 
| 16339 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16340 16051 | 
             
                    :rtype: int
         | 
| 16341 16052 | 
             
                    """
         | 
| 16342 16053 | 
             
                    return self._IsUsageStatus
         | 
| @@ -16348,7 +16059,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16348 16059 | 
             
                @property
         | 
| 16349 16060 | 
             
                def CanAssignCount(self):
         | 
| 16350 16061 | 
             
                    """委派管理员数量限制。
         | 
| 16351 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16352 16062 | 
             
                    :rtype: int
         | 
| 16353 16063 | 
             
                    """
         | 
| 16354 16064 | 
             
                    return self._CanAssignCount
         | 
| @@ -16360,7 +16070,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16360 16070 | 
             
                @property
         | 
| 16361 16071 | 
             
                def Product(self):
         | 
| 16362 16072 | 
             
                    """集团服务产品标识。
         | 
| 16363 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16364 16073 | 
             
                    :rtype: str
         | 
| 16365 16074 | 
             
                    """
         | 
| 16366 16075 | 
             
                    return self._Product
         | 
| @@ -16372,7 +16081,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16372 16081 | 
             
                @property
         | 
| 16373 16082 | 
             
                def ServiceGrant(self):
         | 
| 16374 16083 | 
             
                    """是否支持集团服务授权。取值 1-是、2-否
         | 
| 16375 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16376 16084 | 
             
                    :rtype: int
         | 
| 16377 16085 | 
             
                    """
         | 
| 16378 16086 | 
             
                    return self._ServiceGrant
         | 
| @@ -16384,7 +16092,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16384 16092 | 
             
                @property
         | 
| 16385 16093 | 
             
                def GrantStatus(self):
         | 
| 16386 16094 | 
             
                    """集团服务授权启用状态。ServiceGrant值为1时该字段有效 ,取值:Enabled-开启  Disabled-关闭 
         | 
| 16387 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16388 16095 | 
             
                    :rtype: str
         | 
| 16389 16096 | 
             
                    """
         | 
| 16390 16097 | 
             
                    return self._GrantStatus
         | 
| @@ -16396,7 +16103,6 @@ class OrganizationServiceAssign(AbstractModel): | |
| 16396 16103 | 
             
                @property
         | 
| 16397 16104 | 
             
                def IsSetManagementScope(self):
         | 
| 16398 16105 | 
             
                    """是否支持设置委派管理范围。取值: 1-是  2-否
         | 
| 16399 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16400 16106 | 
             
                    :rtype: int
         | 
| 16401 16107 | 
             
                    """
         | 
| 16402 16108 | 
             
                    return self._IsSetManagementScope
         | 
| @@ -16438,31 +16144,22 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16438 16144 | 
             
                def __init__(self):
         | 
| 16439 16145 | 
             
                    r"""
         | 
| 16440 16146 | 
             
                    :param _ServiceId: 集团服务ID。
         | 
| 16441 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16442 16147 | 
             
                    :type ServiceId: int
         | 
| 16443 16148 | 
             
                    :param _ProductName: 集团服务产品名称。
         | 
| 16444 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16445 16149 | 
             
                    :type ProductName: str
         | 
| 16446 16150 | 
             
                    :param _MemberUin: 委派管理员Uin。
         | 
| 16447 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16448 16151 | 
             
                    :type MemberUin: int
         | 
| 16449 16152 | 
             
                    :param _MemberName: 委派管理员名称。
         | 
| 16450 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16451 16153 | 
             
                    :type MemberName: str
         | 
| 16452 16154 | 
             
                    :param _UsageStatus: 启用状态 。取值:0-服务无启用状态  1-已启用  2-未启用
         | 
| 16453 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16454 16155 | 
             
                    :type UsageStatus: int
         | 
| 16455 16156 | 
             
                    :param _CreateTime: 委派时间。
         | 
| 16456 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16457 16157 | 
             
                    :type CreateTime: str
         | 
| 16458 16158 | 
             
                    :param _ManagementScope: 委派管理员管理范围。取值: 1-全部成员  2-部分成员
         | 
| 16459 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16460 16159 | 
             
                    :type ManagementScope: int
         | 
| 16461 16160 | 
             
                    :param _ManagementScopeMembers: 管理的成员Uin列表。ManagementScope值为2时该参数有效
         | 
| 16462 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16463 16161 | 
             
                    :type ManagementScopeMembers: list of MemberMainInfo
         | 
| 16464 16162 | 
             
                    :param _ManagementScopeNodes: 管理的部门ID列表。ManagementScope值为2时该参数有效
         | 
| 16465 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16466 16163 | 
             
                    :type ManagementScopeNodes: list of NodeMainInfo
         | 
| 16467 16164 | 
             
                    """
         | 
| 16468 16165 | 
             
                    self._ServiceId = None
         | 
| @@ -16478,7 +16175,6 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16478 16175 | 
             
                @property
         | 
| 16479 16176 | 
             
                def ServiceId(self):
         | 
| 16480 16177 | 
             
                    """集团服务ID。
         | 
| 16481 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16482 16178 | 
             
                    :rtype: int
         | 
| 16483 16179 | 
             
                    """
         | 
| 16484 16180 | 
             
                    return self._ServiceId
         | 
| @@ -16490,7 +16186,6 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16490 16186 | 
             
                @property
         | 
| 16491 16187 | 
             
                def ProductName(self):
         | 
| 16492 16188 | 
             
                    """集团服务产品名称。
         | 
| 16493 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16494 16189 | 
             
                    :rtype: str
         | 
| 16495 16190 | 
             
                    """
         | 
| 16496 16191 | 
             
                    return self._ProductName
         | 
| @@ -16502,7 +16197,6 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16502 16197 | 
             
                @property
         | 
| 16503 16198 | 
             
                def MemberUin(self):
         | 
| 16504 16199 | 
             
                    """委派管理员Uin。
         | 
| 16505 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16506 16200 | 
             
                    :rtype: int
         | 
| 16507 16201 | 
             
                    """
         | 
| 16508 16202 | 
             
                    return self._MemberUin
         | 
| @@ -16514,7 +16208,6 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16514 16208 | 
             
                @property
         | 
| 16515 16209 | 
             
                def MemberName(self):
         | 
| 16516 16210 | 
             
                    """委派管理员名称。
         | 
| 16517 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16518 16211 | 
             
                    :rtype: str
         | 
| 16519 16212 | 
             
                    """
         | 
| 16520 16213 | 
             
                    return self._MemberName
         | 
| @@ -16526,7 +16219,6 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16526 16219 | 
             
                @property
         | 
| 16527 16220 | 
             
                def UsageStatus(self):
         | 
| 16528 16221 | 
             
                    """启用状态 。取值:0-服务无启用状态  1-已启用  2-未启用
         | 
| 16529 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16530 16222 | 
             
                    :rtype: int
         | 
| 16531 16223 | 
             
                    """
         | 
| 16532 16224 | 
             
                    return self._UsageStatus
         | 
| @@ -16538,7 +16230,6 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16538 16230 | 
             
                @property
         | 
| 16539 16231 | 
             
                def CreateTime(self):
         | 
| 16540 16232 | 
             
                    """委派时间。
         | 
| 16541 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16542 16233 | 
             
                    :rtype: str
         | 
| 16543 16234 | 
             
                    """
         | 
| 16544 16235 | 
             
                    return self._CreateTime
         | 
| @@ -16550,7 +16241,6 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16550 16241 | 
             
                @property
         | 
| 16551 16242 | 
             
                def ManagementScope(self):
         | 
| 16552 16243 | 
             
                    """委派管理员管理范围。取值: 1-全部成员  2-部分成员
         | 
| 16553 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16554 16244 | 
             
                    :rtype: int
         | 
| 16555 16245 | 
             
                    """
         | 
| 16556 16246 | 
             
                    return self._ManagementScope
         | 
| @@ -16562,7 +16252,6 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16562 16252 | 
             
                @property
         | 
| 16563 16253 | 
             
                def ManagementScopeMembers(self):
         | 
| 16564 16254 | 
             
                    """管理的成员Uin列表。ManagementScope值为2时该参数有效
         | 
| 16565 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16566 16255 | 
             
                    :rtype: list of MemberMainInfo
         | 
| 16567 16256 | 
             
                    """
         | 
| 16568 16257 | 
             
                    return self._ManagementScopeMembers
         | 
| @@ -16574,7 +16263,6 @@ class OrganizationServiceAssignMember(AbstractModel): | |
| 16574 16263 | 
             
                @property
         | 
| 16575 16264 | 
             
                def ManagementScopeNodes(self):
         | 
| 16576 16265 | 
             
                    """管理的部门ID列表。ManagementScope值为2时该参数有效
         | 
| 16577 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 16578 16266 | 
             
                    :rtype: list of NodeMainInfo
         | 
| 16579 16267 | 
             
                    """
         | 
| 16580 16268 | 
             
                    return self._ManagementScopeNodes
         | 
| @@ -17282,13 +16970,10 @@ class ResourceTagMapping(AbstractModel): | |
| 17282 16970 | 
             
                    r"""
         | 
| 17283 16971 | 
             
                    :param _Resource: 资源六段式。腾讯云使用资源六段式描述一个资源。
         | 
| 17284 16972 | 
             
            例如:qcs::${ServiceType}:${Region}:${Account}:${ResourcePreifx}/${ResourceId}。
         | 
| 17285 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 17286 16973 | 
             
                    :type Resource: str
         | 
| 17287 16974 | 
             
                    :param _ComplianceDetails: 合规详情。
         | 
| 17288 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 17289 16975 | 
             
                    :type ComplianceDetails: :class:`tencentcloud.organization.v20210331.models.TagComplianceDetails`
         | 
| 17290 16976 | 
             
                    :param _Tags: 资源标签。
         | 
| 17291 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 17292 16977 | 
             
                    :type Tags: list of Tags
         | 
| 17293 16978 | 
             
                    """
         | 
| 17294 16979 | 
             
                    self._Resource = None
         | 
| @@ -17299,7 +16984,6 @@ class ResourceTagMapping(AbstractModel): | |
| 17299 16984 | 
             
                def Resource(self):
         | 
| 17300 16985 | 
             
                    """资源六段式。腾讯云使用资源六段式描述一个资源。
         | 
| 17301 16986 | 
             
            例如:qcs::${ServiceType}:${Region}:${Account}:${ResourcePreifx}/${ResourceId}。
         | 
| 17302 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 17303 16987 | 
             
                    :rtype: str
         | 
| 17304 16988 | 
             
                    """
         | 
| 17305 16989 | 
             
                    return self._Resource
         | 
| @@ -17311,7 +16995,6 @@ class ResourceTagMapping(AbstractModel): | |
| 17311 16995 | 
             
                @property
         | 
| 17312 16996 | 
             
                def ComplianceDetails(self):
         | 
| 17313 16997 | 
             
                    """合规详情。
         | 
| 17314 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 17315 16998 | 
             
                    :rtype: :class:`tencentcloud.organization.v20210331.models.TagComplianceDetails`
         | 
| 17316 16999 | 
             
                    """
         | 
| 17317 17000 | 
             
                    return self._ComplianceDetails
         | 
| @@ -17323,7 +17006,6 @@ class ResourceTagMapping(AbstractModel): | |
| 17323 17006 | 
             
                @property
         | 
| 17324 17007 | 
             
                def Tags(self):
         | 
| 17325 17008 | 
             
                    """资源标签。
         | 
| 17326 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 17327 17009 | 
             
                    :rtype: list of Tags
         | 
| 17328 17010 | 
             
                    """
         | 
| 17329 17011 | 
             
                    return self._Tags
         | 
| @@ -19261,13 +18943,10 @@ class TagComplianceDetails(AbstractModel): | |
| 19261 18943 | 
             
                def __init__(self):
         | 
| 19262 18944 | 
             
                    r"""
         | 
| 19263 18945 | 
             
                    :param _ComplianceStatus: 合规状态。true-合规,false-不合规
         | 
| 19264 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19265 18946 | 
             
                    :type ComplianceStatus: bool
         | 
| 19266 18947 | 
             
                    :param _KeysWithNonCompliantValues: 值不合规的标签键列表。
         | 
| 19267 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19268 18948 | 
             
                    :type KeysWithNonCompliantValues: list of str
         | 
| 19269 18949 | 
             
                    :param _NonCompliantKeys: 键不合规的标签键列表。
         | 
| 19270 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19271 18950 | 
             
                    :type NonCompliantKeys: list of str
         | 
| 19272 18951 | 
             
                    """
         | 
| 19273 18952 | 
             
                    self._ComplianceStatus = None
         | 
| @@ -19277,7 +18956,6 @@ class TagComplianceDetails(AbstractModel): | |
| 19277 18956 | 
             
                @property
         | 
| 19278 18957 | 
             
                def ComplianceStatus(self):
         | 
| 19279 18958 | 
             
                    """合规状态。true-合规,false-不合规
         | 
| 19280 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19281 18959 | 
             
                    :rtype: bool
         | 
| 19282 18960 | 
             
                    """
         | 
| 19283 18961 | 
             
                    return self._ComplianceStatus
         | 
| @@ -19289,7 +18967,6 @@ class TagComplianceDetails(AbstractModel): | |
| 19289 18967 | 
             
                @property
         | 
| 19290 18968 | 
             
                def KeysWithNonCompliantValues(self):
         | 
| 19291 18969 | 
             
                    """值不合规的标签键列表。
         | 
| 19292 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19293 18970 | 
             
                    :rtype: list of str
         | 
| 19294 18971 | 
             
                    """
         | 
| 19295 18972 | 
             
                    return self._KeysWithNonCompliantValues
         | 
| @@ -19301,7 +18978,6 @@ class TagComplianceDetails(AbstractModel): | |
| 19301 18978 | 
             
                @property
         | 
| 19302 18979 | 
             
                def NonCompliantKeys(self):
         | 
| 19303 18980 | 
             
                    """键不合规的标签键列表。
         | 
| 19304 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19305 18981 | 
             
                    :rtype: list of str
         | 
| 19306 18982 | 
             
                    """
         | 
| 19307 18983 | 
             
                    return self._NonCompliantKeys
         | 
| @@ -19333,10 +19009,8 @@ class Tags(AbstractModel): | |
| 19333 19009 | 
             
                def __init__(self):
         | 
| 19334 19010 | 
             
                    r"""
         | 
| 19335 19011 | 
             
                    :param _TagKey: 标签键。
         | 
| 19336 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19337 19012 | 
             
                    :type TagKey: str
         | 
| 19338 19013 | 
             
                    :param _TagValue: 标签值。
         | 
| 19339 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19340 19014 | 
             
                    :type TagValue: str
         | 
| 19341 19015 | 
             
                    """
         | 
| 19342 19016 | 
             
                    self._TagKey = None
         | 
| @@ -19345,7 +19019,6 @@ class Tags(AbstractModel): | |
| 19345 19019 | 
             
                @property
         | 
| 19346 19020 | 
             
                def TagKey(self):
         | 
| 19347 19021 | 
             
                    """标签键。
         | 
| 19348 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19349 19022 | 
             
                    :rtype: str
         | 
| 19350 19023 | 
             
                    """
         | 
| 19351 19024 | 
             
                    return self._TagKey
         | 
| @@ -19357,7 +19030,6 @@ class Tags(AbstractModel): | |
| 19357 19030 | 
             
                @property
         | 
| 19358 19031 | 
             
                def TagValue(self):
         | 
| 19359 19032 | 
             
                    """标签值。
         | 
| 19360 | 
            -
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 19361 19033 | 
             
                    :rtype: str
         | 
| 19362 19034 | 
             
                    """
         | 
| 19363 19035 | 
             
                    return self._TagValue
         |