tencentcloud-sdk-python 3.0.1299__py2.py3-none-any.whl → 3.0.1300__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/aiart/v20221229/aiart_client.py +55 -0
- tencentcloud/aiart/v20221229/models.py +367 -0
- tencentcloud/batch/v20170312/models.py +2 -2
- tencentcloud/cdb/v20170320/models.py +27 -0
- tencentcloud/cmq/v20190304/cmq_client.py +0 -365
- tencentcloud/cmq/v20190304/models.py +324 -2473
- tencentcloud/config/v20220802/config_client.py +46 -0
- tencentcloud/config/v20220802/errorcodes.py +3 -0
- tencentcloud/config/v20220802/models.py +716 -26
- tencentcloud/csxg/v20230303/errorcodes.py +48 -0
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/ecm/v20190719/models.py +0 -18
- tencentcloud/ess/v20201111/ess_client.py +25 -4
- tencentcloud/ess/v20201111/models.py +6 -46
- tencentcloud/essbasic/v20210526/models.py +4 -18
- tencentcloud/hai/v20230812/hai_client.py +23 -0
- tencentcloud/hai/v20230812/models.py +326 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +92 -0
- tencentcloud/iotexplorer/v20190423/models.py +1012 -36
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +23 -0
- tencentcloud/iotvideo/v20211125/models.py +135 -0
- tencentcloud/lkeap/v20240522/errorcodes.py +3 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/lkeap/v20240522/models.py +54 -16
- tencentcloud/mna/v20210119/models.py +0 -20
- tencentcloud/redis/v20180412/models.py +6 -2
- tencentcloud/sms/v20190711/errorcodes.py +6 -0
- tencentcloud/sms/v20190711/models.py +81 -0
- tencentcloud/sms/v20210111/errorcodes.py +6 -0
- tencentcloud/sms/v20210111/models.py +81 -0
- tencentcloud/tcb/v20180608/models.py +2 -86
- tencentcloud/trro/v20220325/models.py +15 -0
- tencentcloud/tse/v20201207/models.py +30 -0
- tencentcloud/vpc/v20170312/errorcodes.py +12 -0
- tencentcloud/vpc/v20170312/models.py +2 -12
- tencentcloud/wedata/v20210820/models.py +126 -0
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1300.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1300.dist-info}/RECORD +42 -42
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1300.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1300.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1299.dist-info → tencentcloud_sdk_python-3.0.1300.dist-info}/top_level.txt +0 -0
@@ -14,8 +14,56 @@
|
|
14
14
|
# limitations under the License.
|
15
15
|
|
16
16
|
|
17
|
+
# CAM签名/鉴权错误。
|
18
|
+
AUTHFAILURE = 'AuthFailure'
|
19
|
+
|
20
|
+
# 请求未CAM授权
|
21
|
+
AUTHFAILURE_UNAUTHORIZEDOPERATION = 'AuthFailure.UnauthorizedOperation'
|
22
|
+
|
23
|
+
# 操作失败。
|
24
|
+
FAILEDOPERATION = 'FailedOperation'
|
25
|
+
|
26
|
+
# 内部错误。
|
27
|
+
INTERNALERROR = 'InternalError'
|
28
|
+
|
29
|
+
# 参数错误。
|
30
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
31
|
+
|
32
|
+
# 参数取值错误。
|
33
|
+
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
34
|
+
|
17
35
|
# 超过配额限制。
|
18
36
|
LIMITEXCEEDED = 'LimitExceeded'
|
19
37
|
|
38
|
+
# 缺少参数错误。
|
39
|
+
MISSINGPARAMETER = 'MissingParameter'
|
40
|
+
|
41
|
+
# 操作被拒绝。
|
42
|
+
OPERATIONDENIED = 'OperationDenied'
|
43
|
+
|
44
|
+
# 请求的次数超过了频率限制。
|
45
|
+
REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
|
46
|
+
|
47
|
+
# 资源被占用。
|
48
|
+
RESOURCEINUSE = 'ResourceInUse'
|
49
|
+
|
50
|
+
# 资源不足。
|
51
|
+
RESOURCEINSUFFICIENT = 'ResourceInsufficient'
|
52
|
+
|
20
53
|
# 资源不存在。
|
21
54
|
RESOURCENOTFOUND = 'ResourceNotFound'
|
55
|
+
|
56
|
+
# 资源不可用。
|
57
|
+
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
58
|
+
|
59
|
+
# 资源售罄。
|
60
|
+
RESOURCESSOLDOUT = 'ResourcesSoldOut'
|
61
|
+
|
62
|
+
# 未授权操作。
|
63
|
+
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
|
64
|
+
|
65
|
+
# 未知参数错误。
|
66
|
+
UNKNOWNPARAMETER = 'UnknownParameter'
|
67
|
+
|
68
|
+
# 操作不支持。
|
69
|
+
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
@@ -20517,7 +20517,7 @@ class SystemDisk(AbstractModel):
|
|
20517
20517
|
<li>CLOUD_BASIC:普通云硬盘</li>
|
20518
20518
|
<li>CLOUD_SSD:SSD云硬盘</li>
|
20519
20519
|
<li>CLOUD_PREMIUM:高性能云硬盘</li>
|
20520
|
-
<li>CLOUD_BSSD
|
20520
|
+
<li>CLOUD_BSSD:通用型SSD云硬盘</li>
|
20521
20521
|
<li>CLOUD_HSSD:增强型SSD云硬盘</li>
|
20522
20522
|
<li>CLOUD_TSSD:极速型SSD云硬盘</li><br>
|
20523
20523
|
默认取值:当前有库存的硬盘类型。
|
@@ -20550,7 +20550,7 @@ class SystemDisk(AbstractModel):
|
|
20550
20550
|
<li>CLOUD_BASIC:普通云硬盘</li>
|
20551
20551
|
<li>CLOUD_SSD:SSD云硬盘</li>
|
20552
20552
|
<li>CLOUD_PREMIUM:高性能云硬盘</li>
|
20553
|
-
<li>CLOUD_BSSD
|
20553
|
+
<li>CLOUD_BSSD:通用型SSD云硬盘</li>
|
20554
20554
|
<li>CLOUD_HSSD:增强型SSD云硬盘</li>
|
20555
20555
|
<li>CLOUD_TSSD:极速型SSD云硬盘</li><br>
|
20556
20556
|
默认取值:当前有库存的硬盘类型。
|
@@ -8937,7 +8937,6 @@ class DescribeNetworkInterfacesResponse(AbstractModel):
|
|
8937
8937
|
:param _TotalCount: 符合条件的实例数量。
|
8938
8938
|
:type TotalCount: int
|
8939
8939
|
:param _NetworkInterfaceSet: 实例详细信息列表。
|
8940
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8941
8940
|
:type NetworkInterfaceSet: list of NetworkInterface
|
8942
8941
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8943
8942
|
:type RequestId: str
|
@@ -8960,7 +8959,6 @@ class DescribeNetworkInterfacesResponse(AbstractModel):
|
|
8960
8959
|
@property
|
8961
8960
|
def NetworkInterfaceSet(self):
|
8962
8961
|
"""实例详细信息列表。
|
8963
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8964
8962
|
:rtype: list of NetworkInterface
|
8965
8963
|
"""
|
8966
8964
|
return self._NetworkInterfaceSet
|
@@ -9973,7 +9971,6 @@ class DescribeRouteTablesResponse(AbstractModel):
|
|
9973
9971
|
:param _TotalCount: 符合条件的实例数量
|
9974
9972
|
:type TotalCount: int
|
9975
9973
|
:param _RouteTableSet: 路由表列表
|
9976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9977
9974
|
:type RouteTableSet: list of RouteTable
|
9978
9975
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9979
9976
|
:type RequestId: str
|
@@ -9996,7 +9993,6 @@ class DescribeRouteTablesResponse(AbstractModel):
|
|
9996
9993
|
@property
|
9997
9994
|
def RouteTableSet(self):
|
9998
9995
|
"""路由表列表
|
9999
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10000
9996
|
:rtype: list of RouteTable
|
10001
9997
|
"""
|
10002
9998
|
return self._RouteTableSet
|
@@ -10730,7 +10726,6 @@ class DescribeSubnetsResponse(AbstractModel):
|
|
10730
10726
|
:param _TotalCount: 符合条件的实例数量。
|
10731
10727
|
:type TotalCount: int
|
10732
10728
|
:param _SubnetSet: 子网对象。
|
10733
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10734
10729
|
:type SubnetSet: list of Subnet
|
10735
10730
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10736
10731
|
:type RequestId: str
|
@@ -10753,7 +10748,6 @@ class DescribeSubnetsResponse(AbstractModel):
|
|
10753
10748
|
@property
|
10754
10749
|
def SubnetSet(self):
|
10755
10750
|
"""子网对象。
|
10756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10757
10751
|
:rtype: list of Subnet
|
10758
10752
|
"""
|
10759
10753
|
return self._SubnetSet
|
@@ -11342,7 +11336,6 @@ class DescribeVpcsResponse(AbstractModel):
|
|
11342
11336
|
:param _TotalCount: 符合条件的对象数。
|
11343
11337
|
:type TotalCount: int
|
11344
11338
|
:param _VpcSet: 私有网络对象。
|
11345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11346
11339
|
:type VpcSet: list of VpcInfo
|
11347
11340
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11348
11341
|
:type RequestId: str
|
@@ -11365,7 +11358,6 @@ class DescribeVpcsResponse(AbstractModel):
|
|
11365
11358
|
@property
|
11366
11359
|
def VpcSet(self):
|
11367
11360
|
"""私有网络对象。
|
11368
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11369
11361
|
:rtype: list of VpcInfo
|
11370
11362
|
"""
|
11371
11363
|
return self._VpcSet
|
@@ -22284,7 +22276,6 @@ class PrivateIpAddressSpecification(AbstractModel):
|
|
22284
22276
|
:param _PrivateIpAddress: 内网IP地址。
|
22285
22277
|
:type PrivateIpAddress: str
|
22286
22278
|
:param _Primary: 是否是主IP。
|
22287
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22288
22279
|
:type Primary: bool
|
22289
22280
|
:param _PublicIpAddress: 公网IP地址。
|
22290
22281
|
:type PublicIpAddress: str
|
@@ -22293,7 +22284,6 @@ class PrivateIpAddressSpecification(AbstractModel):
|
|
22293
22284
|
:param _Description: 内网IP描述信息。
|
22294
22285
|
:type Description: str
|
22295
22286
|
:param _IsWanIpBlocked: 公网IP是否被封堵。
|
22296
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22297
22287
|
:type IsWanIpBlocked: bool
|
22298
22288
|
:param _State: IP状态:
|
22299
22289
|
PENDING:生产中
|
@@ -22324,7 +22314,6 @@ AVAILABLE:可用的
|
|
22324
22314
|
@property
|
22325
22315
|
def Primary(self):
|
22326
22316
|
"""是否是主IP。
|
22327
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22328
22317
|
:rtype: bool
|
22329
22318
|
"""
|
22330
22319
|
return self._Primary
|
@@ -22369,7 +22358,6 @@ AVAILABLE:可用的
|
|
22369
22358
|
@property
|
22370
22359
|
def IsWanIpBlocked(self):
|
22371
22360
|
"""公网IP是否被封堵。
|
22372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22373
22361
|
:rtype: bool
|
22374
22362
|
"""
|
22375
22363
|
return self._IsWanIpBlocked
|
@@ -25431,7 +25419,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
25431
25419
|
:param _PolicyDescription: 安全组规则描述。
|
25432
25420
|
:type PolicyDescription: str
|
25433
25421
|
:param _ModifyTime: 修改时间,例如 2020-07-22 19:27:23
|
25434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25435
25422
|
:type ModifyTime: str
|
25436
25423
|
:param _Ipv6CidrBlock: 网段或IPv6(互斥)。
|
25437
25424
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -25551,7 +25538,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
25551
25538
|
@property
|
25552
25539
|
def ModifyTime(self):
|
25553
25540
|
"""修改时间,例如 2020-07-22 19:27:23
|
25554
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25555
25541
|
:rtype: str
|
25556
25542
|
"""
|
25557
25543
|
return self._ModifyTime
|
@@ -27024,10 +27010,8 @@ class Tag(AbstractModel):
|
|
27024
27010
|
def __init__(self):
|
27025
27011
|
r"""
|
27026
27012
|
:param _Key: 标签健。
|
27027
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27028
27013
|
:type Key: str
|
27029
27014
|
:param _Value: 标签值。
|
27030
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27031
27015
|
:type Value: str
|
27032
27016
|
"""
|
27033
27017
|
self._Key = None
|
@@ -27036,7 +27020,6 @@ class Tag(AbstractModel):
|
|
27036
27020
|
@property
|
27037
27021
|
def Key(self):
|
27038
27022
|
"""标签健。
|
27039
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27040
27023
|
:rtype: str
|
27041
27024
|
"""
|
27042
27025
|
return self._Key
|
@@ -27048,7 +27031,6 @@ class Tag(AbstractModel):
|
|
27048
27031
|
@property
|
27049
27032
|
def Value(self):
|
27050
27033
|
"""标签值。
|
27051
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27052
27034
|
:rtype: str
|
27053
27035
|
"""
|
27054
27036
|
return self._Value
|
@@ -415,7 +415,9 @@ class EssClient(AbstractClient):
|
|
415
415
|
|
416
416
|
|
417
417
|
### 填充模板中定义的填写控件
|
418
|
-
模板中配置的<font color="red">发起人填充控件</font>可以通过本接口的**FormFields
|
418
|
+
模板中配置的<font color="red">发起人填充控件</font>可以通过本接口的**FormFields数组**字段填充。
|
419
|
+
|
420
|
+
**<font color="red">填充填写控件需要进行Pdf合成工作,文档合成完成后会收到[文档合成完成后回调通知](https://qian.tencent.com/developers/company/callback_types_file_resources),建议在收到此回调后再调用 [StartFlow](https://qian.tencent.com/developers/companyApis/startFlows/StartFlow) 接口。</font>**
|
419
421
|
|
420
422
|

|
421
423
|
|
@@ -2270,13 +2272,32 @@ class EssClient(AbstractClient):
|
|
2270
2272
|
|
2271
2273
|
|
2272
2274
|
def DescribeFlowComponents(self, request):
|
2273
|
-
"""
|
2274
|
-
|
2275
|
+
"""您可以通过合同流程ID查询相关的<font color="red"><b>填写控件</b></font>信息及其内容。这包括控件的归属方、控件的填写状态(是否已填写)以及具体的填写内容。
|
2275
2276
|
|
2276
|
-
|
2277
|
+
无论是发起方还是签署方填写的控件,均包含在查询结果中。
|
2277
2278
|
|
2278
2279
|

|
2279
2280
|
|
2281
|
+
|
2282
|
+
### 2. 那些控件会出现在结果里边?
|
2283
|
+
**A.不返回的控件类型:**
|
2284
|
+
- 动态表格
|
2285
|
+
- 附件控件
|
2286
|
+
- 水印控件
|
2287
|
+
|
2288
|
+
**B.返回的控件类型:**
|
2289
|
+
- 单行文本
|
2290
|
+
- 多行文本
|
2291
|
+
- 勾选框控件
|
2292
|
+
- 数字控件
|
2293
|
+
- 日期控件
|
2294
|
+
- 图片控件(图片下载地址)
|
2295
|
+
- 邮箱控件
|
2296
|
+
- 地址控件
|
2297
|
+
- 学历控件
|
2298
|
+
- 性别控件
|
2299
|
+
- 省市区控件
|
2300
|
+
|
2280
2301
|
:param request: Request instance for DescribeFlowComponents.
|
2281
2302
|
:type request: :class:`tencentcloud.ess.v20201111.models.DescribeFlowComponentsRequest`
|
2282
2303
|
:rtype: :class:`tencentcloud.ess.v20201111.models.DescribeFlowComponentsResponse`
|
@@ -5820,10 +5820,8 @@ class CreateDocumentResponse(AbstractModel):
|
|
5820
5820
|
|
5821
5821
|
注: `1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL`
|
5822
5822
|
`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容`
|
5823
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5824
5823
|
:type PreviewFileUrl: str
|
5825
5824
|
:param _Approvers: 签署方信息,如角色ID、角色名称等
|
5826
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5827
5825
|
:type Approvers: list of ApproverItem
|
5828
5826
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5829
5827
|
:type RequestId: str
|
@@ -5853,7 +5851,6 @@ class CreateDocumentResponse(AbstractModel):
|
|
5853
5851
|
|
5854
5852
|
注: `1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL`
|
5855
5853
|
`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容`
|
5856
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5857
5854
|
:rtype: str
|
5858
5855
|
"""
|
5859
5856
|
return self._PreviewFileUrl
|
@@ -5865,7 +5862,6 @@ class CreateDocumentResponse(AbstractModel):
|
|
5865
5862
|
@property
|
5866
5863
|
def Approvers(self):
|
5867
5864
|
"""签署方信息,如角色ID、角色名称等
|
5868
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5869
5865
|
:rtype: list of ApproverItem
|
5870
5866
|
"""
|
5871
5867
|
return self._Approvers
|
@@ -6698,7 +6694,6 @@ class CreateFlowApproversResponse(AbstractModel):
|
|
6698
6694
|
:param _FillError: 批量补充签署人时,补充失败的报错说明
|
6699
6695
|
|
6700
6696
|
注:`目前仅补充动态签署人时会返回补充失败的原因`
|
6701
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6702
6697
|
:type FillError: list of FillError
|
6703
6698
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6704
6699
|
:type RequestId: str
|
@@ -6711,7 +6706,6 @@ class CreateFlowApproversResponse(AbstractModel):
|
|
6711
6706
|
"""批量补充签署人时,补充失败的报错说明
|
6712
6707
|
|
6713
6708
|
注:`目前仅补充动态签署人时会返回补充失败的原因`
|
6714
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6715
6709
|
:rtype: list of FillError
|
6716
6710
|
"""
|
6717
6711
|
return self._FillError
|
@@ -7452,10 +7446,8 @@ class CreateFlowByFilesResponse(AbstractModel):
|
|
7452
7446
|
:param _PreviewUrl: 合同预览链接URL。
|
7453
7447
|
|
7454
7448
|
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
|
7455
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7456
7449
|
:type PreviewUrl: str
|
7457
7450
|
:param _Approvers: 签署方信息,如角色ID、角色名称等
|
7458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7459
7451
|
:type Approvers: list of ApproverItem
|
7460
7452
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7461
7453
|
:type RequestId: str
|
@@ -7486,7 +7478,6 @@ class CreateFlowByFilesResponse(AbstractModel):
|
|
7486
7478
|
"""合同预览链接URL。
|
7487
7479
|
|
7488
7480
|
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
|
7489
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7490
7481
|
:rtype: str
|
7491
7482
|
"""
|
7492
7483
|
return self._PreviewUrl
|
@@ -7498,7 +7489,6 @@ class CreateFlowByFilesResponse(AbstractModel):
|
|
7498
7489
|
@property
|
7499
7490
|
def Approvers(self):
|
7500
7491
|
"""签署方信息,如角色ID、角色名称等
|
7501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7502
7492
|
:rtype: list of ApproverItem
|
7503
7493
|
"""
|
7504
7494
|
return self._Approvers
|
@@ -7634,7 +7624,6 @@ class CreateFlowEvidenceReportResponse(AbstractModel):
|
|
7634
7624
|
def __init__(self):
|
7635
7625
|
r"""
|
7636
7626
|
:param _ReportId: 出证报告 ID,可用于<a href="https://qian.tencent.com/developers/companyApis/certificate/DescribeFlowEvidenceReport" target="_blank">获取出证报告任务执行结果</a>查询出证任务结果和出证PDF的下载URL
|
7637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7638
7627
|
:type ReportId: str
|
7639
7628
|
:param _Status: 出证任务执行的状态, 状态含义如下:
|
7640
7629
|
|
@@ -7657,7 +7646,6 @@ class CreateFlowEvidenceReportResponse(AbstractModel):
|
|
7657
7646
|
@property
|
7658
7647
|
def ReportId(self):
|
7659
7648
|
"""出证报告 ID,可用于<a href="https://qian.tencent.com/developers/companyApis/certificate/DescribeFlowEvidenceReport" target="_blank">获取出证报告任务执行结果</a>查询出证任务结果和出证PDF的下载URL
|
7660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7661
7649
|
:rtype: str
|
7662
7650
|
"""
|
7663
7651
|
return self._ReportId
|
@@ -8045,10 +8033,8 @@ class CreateFlowGroupByTemplatesResponse(AbstractModel):
|
|
8045
8033
|
def __init__(self):
|
8046
8034
|
r"""
|
8047
8035
|
:param _FlowGroupId: 合同(流程)组的合同组Id
|
8048
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8049
8036
|
:type FlowGroupId: str
|
8050
8037
|
:param _FlowIds: 合同(流程)组中子合同列表.
|
8051
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8052
8038
|
:type FlowIds: list of str
|
8053
8039
|
:param _Approvers: 合同组签署人信息。
|
8054
8040
|
:type Approvers: list of FlowGroupApprovers
|
@@ -8063,7 +8049,6 @@ class CreateFlowGroupByTemplatesResponse(AbstractModel):
|
|
8063
8049
|
@property
|
8064
8050
|
def FlowGroupId(self):
|
8065
8051
|
"""合同(流程)组的合同组Id
|
8066
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8067
8052
|
:rtype: str
|
8068
8053
|
"""
|
8069
8054
|
return self._FlowGroupId
|
@@ -8075,7 +8060,6 @@ class CreateFlowGroupByTemplatesResponse(AbstractModel):
|
|
8075
8060
|
@property
|
8076
8061
|
def FlowIds(self):
|
8077
8062
|
"""合同(流程)组中子合同列表.
|
8078
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8079
8063
|
:rtype: list of str
|
8080
8064
|
"""
|
8081
8065
|
return self._FlowIds
|
@@ -12485,18 +12469,14 @@ class CreatePersonAuthCertificateImageResponse(AbstractModel):
|
|
12485
12469
|
该编号会合成到个人用户证书证明图片。
|
12486
12470
|
|
12487
12471
|
注: `个人用户认证证书的编号和证明图片绑定, 获取新的证明图片编号会变动`
|
12488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12489
12472
|
:type ImageCertId: str
|
12490
12473
|
:param _SerialNumber: 在数字证书申请过程中,系统会自动生成一个独一无二的序列号。请注意,当证书到期并自动续期时,该序列号将会发生变化。值得注意的是,此序列号不会被合成至个人用户证书的证明图片中。
|
12491
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12492
12474
|
:type SerialNumber: str
|
12493
12475
|
:param _ValidFrom: CA证书颁发时间,格式为Unix标准时间戳(秒)
|
12494
12476
|
该时间格式化后会合成到个人用户证书证明图片
|
12495
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12496
12477
|
:type ValidFrom: int
|
12497
12478
|
:param _ValidTo: CA证书有效截止时间,格式为Unix标准时间戳(秒)
|
12498
12479
|
该时间格式化后会合成到个人用户证书证明图片
|
12499
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12500
12480
|
:type ValidTo: int
|
12501
12481
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12502
12482
|
:type RequestId: str
|
@@ -12525,7 +12505,6 @@ class CreatePersonAuthCertificateImageResponse(AbstractModel):
|
|
12525
12505
|
该编号会合成到个人用户证书证明图片。
|
12526
12506
|
|
12527
12507
|
注: `个人用户认证证书的编号和证明图片绑定, 获取新的证明图片编号会变动`
|
12528
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12529
12508
|
:rtype: str
|
12530
12509
|
"""
|
12531
12510
|
return self._ImageCertId
|
@@ -12537,7 +12516,6 @@ class CreatePersonAuthCertificateImageResponse(AbstractModel):
|
|
12537
12516
|
@property
|
12538
12517
|
def SerialNumber(self):
|
12539
12518
|
"""在数字证书申请过程中,系统会自动生成一个独一无二的序列号。请注意,当证书到期并自动续期时,该序列号将会发生变化。值得注意的是,此序列号不会被合成至个人用户证书的证明图片中。
|
12540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12541
12519
|
:rtype: str
|
12542
12520
|
"""
|
12543
12521
|
return self._SerialNumber
|
@@ -12550,7 +12528,6 @@ class CreatePersonAuthCertificateImageResponse(AbstractModel):
|
|
12550
12528
|
def ValidFrom(self):
|
12551
12529
|
"""CA证书颁发时间,格式为Unix标准时间戳(秒)
|
12552
12530
|
该时间格式化后会合成到个人用户证书证明图片
|
12553
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12554
12531
|
:rtype: int
|
12555
12532
|
"""
|
12556
12533
|
return self._ValidFrom
|
@@ -12563,7 +12540,6 @@ class CreatePersonAuthCertificateImageResponse(AbstractModel):
|
|
12563
12540
|
def ValidTo(self):
|
12564
12541
|
"""CA证书有效截止时间,格式为Unix标准时间戳(秒)
|
12565
12542
|
该时间格式化后会合成到个人用户证书证明图片
|
12566
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12567
12543
|
:rtype: int
|
12568
12544
|
"""
|
12569
12545
|
return self._ValidTo
|
@@ -17453,7 +17429,6 @@ class DescribeBillUsageResponse(AbstractModel):
|
|
17453
17429
|
:param _Summary: 企业套餐余额及使用情况
|
17454
17430
|
:type Summary: list of OrgBillSummary
|
17455
17431
|
:param _SubOrgSummary: 集团子企业套餐使用情况
|
17456
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17457
17432
|
:type SubOrgSummary: list of SubOrgBillSummary
|
17458
17433
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17459
17434
|
:type RequestId: str
|
@@ -17476,7 +17451,6 @@ class DescribeBillUsageResponse(AbstractModel):
|
|
17476
17451
|
@property
|
17477
17452
|
def SubOrgSummary(self):
|
17478
17453
|
"""集团子企业套餐使用情况
|
17479
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17480
17454
|
:rtype: list of SubOrgBillSummary
|
17481
17455
|
"""
|
17482
17456
|
return self._SubOrgSummary
|
@@ -18518,7 +18492,6 @@ class DescribeFlowComponentsResponse(AbstractModel):
|
|
18518
18492
|
def __init__(self):
|
18519
18493
|
r"""
|
18520
18494
|
:param _RecipientComponentInfos: 合同流程关联的填写控件信息,包括填写控件的归属方以及是否填写等内容。
|
18521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18522
18495
|
:type RecipientComponentInfos: list of RecipientComponentInfo
|
18523
18496
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18524
18497
|
:type RequestId: str
|
@@ -18529,7 +18502,6 @@ class DescribeFlowComponentsResponse(AbstractModel):
|
|
18529
18502
|
@property
|
18530
18503
|
def RecipientComponentInfos(self):
|
18531
18504
|
"""合同流程关联的填写控件信息,包括填写控件的归属方以及是否填写等内容。
|
18532
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18533
18505
|
:rtype: list of RecipientComponentInfo
|
18534
18506
|
"""
|
18535
18507
|
return self._RecipientComponentInfos
|
@@ -18661,7 +18633,6 @@ class DescribeFlowEvidenceReportResponse(AbstractModel):
|
|
18661
18633
|
def __init__(self):
|
18662
18634
|
r"""
|
18663
18635
|
:param _ReportUrl: 出证报告PDF的下载 URL,`有效期为5分钟`,超过有效期后将无法再下载。
|
18664
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18665
18636
|
:type ReportUrl: str
|
18666
18637
|
:param _Status: 出证任务执行的状态, 状态含义如下:
|
18667
18638
|
|
@@ -18679,7 +18650,6 @@ class DescribeFlowEvidenceReportResponse(AbstractModel):
|
|
18679
18650
|
@property
|
18680
18651
|
def ReportUrl(self):
|
18681
18652
|
"""出证报告PDF的下载 URL,`有效期为5分钟`,超过有效期后将无法再下载。
|
18682
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18683
18653
|
:rtype: str
|
18684
18654
|
"""
|
18685
18655
|
return self._ReportUrl
|
@@ -19392,7 +19362,7 @@ class DescribeIntegrationEmployeesRequest(AbstractModel):
|
|
19392
19362
|
<li>Key:**"RoleId"**,根据电子签角色ID查询员工,Values为指定的角色ID,满足其中任意一个角色即可:**["RoleId1","RoleId2",...]**</li>
|
19393
19363
|
</ul>
|
19394
19364
|
:type Filters: list of Filter
|
19395
|
-
:param _Offset:
|
19365
|
+
:param _Offset: 偏移量,默认为0,最大20000。。关于<code>Offset</code>的更进一步介绍请参考 API <a href="https://cloud.tencent.com/document/api/213/15688" target="_blank">简介</a>中的相关小节。
|
19396
19366
|
:type Offset: int
|
19397
19367
|
"""
|
19398
19368
|
self._Operator = None
|
@@ -19458,7 +19428,7 @@ class DescribeIntegrationEmployeesRequest(AbstractModel):
|
|
19458
19428
|
|
19459
19429
|
@property
|
19460
19430
|
def Offset(self):
|
19461
|
-
"""
|
19431
|
+
"""偏移量,默认为0,最大20000。。关于<code>Offset</code>的更进一步介绍请参考 API <a href="https://cloud.tencent.com/document/api/213/15688" target="_blank">简介</a>中的相关小节。
|
19462
19432
|
:rtype: int
|
19463
19433
|
"""
|
19464
19434
|
return self._Offset
|
@@ -19501,10 +19471,8 @@ class DescribeIntegrationEmployeesResponse(AbstractModel):
|
|
19501
19471
|
def __init__(self):
|
19502
19472
|
r"""
|
19503
19473
|
:param _Employees: 员工信息列表。
|
19504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19505
19474
|
:type Employees: list of Staff
|
19506
|
-
:param _Offset:
|
19507
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19475
|
+
:param _Offset: 偏移量
|
19508
19476
|
:type Offset: int
|
19509
19477
|
:param _Limit: 指定分页每页返回的数据条数,单页最大支持 20。
|
19510
19478
|
:type Limit: int
|
@@ -19522,7 +19490,6 @@ class DescribeIntegrationEmployeesResponse(AbstractModel):
|
|
19522
19490
|
@property
|
19523
19491
|
def Employees(self):
|
19524
19492
|
"""员工信息列表。
|
19525
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19526
19493
|
:rtype: list of Staff
|
19527
19494
|
"""
|
19528
19495
|
return self._Employees
|
@@ -19533,8 +19500,7 @@ class DescribeIntegrationEmployeesResponse(AbstractModel):
|
|
19533
19500
|
|
19534
19501
|
@property
|
19535
19502
|
def Offset(self):
|
19536
|
-
"""
|
19537
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19503
|
+
"""偏移量
|
19538
19504
|
:rtype: int
|
19539
19505
|
"""
|
19540
19506
|
return self._Offset
|
@@ -20882,10 +20848,8 @@ class DescribeSignFaceVideoResponse(AbstractModel):
|
|
20882
20848
|
def __init__(self):
|
20883
20849
|
r"""
|
20884
20850
|
:param _VideoData: 核身视频结果。
|
20885
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20886
20851
|
:type VideoData: :class:`tencentcloud.ess.v20201111.models.DetectInfoVideoData`
|
20887
20852
|
:param _IntentionQuestionResult: 意愿核身问答模式结果。若未使用该意愿核身功能,该字段返回值可以不处理。
|
20888
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20889
20853
|
:type IntentionQuestionResult: :class:`tencentcloud.ess.v20201111.models.IntentionQuestionResult`
|
20890
20854
|
:param _IntentionActionResult: 意愿核身点头确认模式的结果信息,若未使用该意愿核身功能,该字段返回值可以不处理。
|
20891
20855
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -20901,7 +20865,6 @@ class DescribeSignFaceVideoResponse(AbstractModel):
|
|
20901
20865
|
@property
|
20902
20866
|
def VideoData(self):
|
20903
20867
|
"""核身视频结果。
|
20904
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20905
20868
|
:rtype: :class:`tencentcloud.ess.v20201111.models.DetectInfoVideoData`
|
20906
20869
|
"""
|
20907
20870
|
return self._VideoData
|
@@ -20913,7 +20876,6 @@ class DescribeSignFaceVideoResponse(AbstractModel):
|
|
20913
20876
|
@property
|
20914
20877
|
def IntentionQuestionResult(self):
|
20915
20878
|
"""意愿核身问答模式结果。若未使用该意愿核身功能,该字段返回值可以不处理。
|
20916
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20917
20879
|
:rtype: :class:`tencentcloud.ess.v20201111.models.IntentionQuestionResult`
|
20918
20880
|
"""
|
20919
20881
|
return self._IntentionQuestionResult
|
@@ -25409,8 +25371,7 @@ class GetTaskResultApiRequest(AbstractModel):
|
|
25409
25371
|
|
25410
25372
|
def __init__(self):
|
25411
25373
|
r"""
|
25412
|
-
:param _TaskId: 转换任务Id,通过接口<a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a
|
25413
|
-
得到的转换任务id
|
25374
|
+
:param _TaskId: 转换任务Id,通过接口<a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a>得到的转换任务id
|
25414
25375
|
:type TaskId: str
|
25415
25376
|
:param _Operator: 执行本接口操作的员工信息。
|
25416
25377
|
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
@@ -25428,8 +25389,7 @@ class GetTaskResultApiRequest(AbstractModel):
|
|
25428
25389
|
|
25429
25390
|
@property
|
25430
25391
|
def TaskId(self):
|
25431
|
-
"""转换任务Id,通过接口<a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a
|
25432
|
-
得到的转换任务id
|
25392
|
+
"""转换任务Id,通过接口<a href="https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi" target="_blank">创建文件转换任务接口</a>得到的转换任务id
|
25433
25393
|
:rtype: str
|
25434
25394
|
"""
|
25435
25395
|
return self._TaskId
|
@@ -4194,7 +4194,6 @@ class ChannelCreateFlowApproversResponse(AbstractModel):
|
|
4194
4194
|
r"""
|
4195
4195
|
:param _FillError: 批量补充签署人时,补充失败的报错说明
|
4196
4196
|
注:`目前仅补充动态签署人时会返回补充失败的原因`
|
4197
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4198
4197
|
:type FillError: list of FillError
|
4199
4198
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4200
4199
|
:type RequestId: str
|
@@ -4206,7 +4205,6 @@ class ChannelCreateFlowApproversResponse(AbstractModel):
|
|
4206
4205
|
def FillError(self):
|
4207
4206
|
"""批量补充签署人时,补充失败的报错说明
|
4208
4207
|
注:`目前仅补充动态签署人时会返回补充失败的原因`
|
4209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4210
4208
|
:rtype: list of FillError
|
4211
4209
|
"""
|
4212
4210
|
return self._FillError
|
@@ -4788,10 +4786,8 @@ class ChannelCreateFlowByFilesResponse(AbstractModel):
|
|
4788
4786
|
建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
|
4789
4787
|
|
4790
4788
|
[点击查看FlowId在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/05af26573d5106763b4cfbb9f7c64b41.png)
|
4791
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4792
4789
|
:type FlowId: str
|
4793
4790
|
:param _Approvers: 签署方信息,如角色ID、角色名称等
|
4794
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4795
4791
|
:type Approvers: list of ApproverItem
|
4796
4792
|
:param _PreviewUrl: 预览链接,有效期5分钟
|
4797
4793
|
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
|
@@ -4810,7 +4806,6 @@ class ChannelCreateFlowByFilesResponse(AbstractModel):
|
|
4810
4806
|
建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
|
4811
4807
|
|
4812
4808
|
[点击查看FlowId在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/05af26573d5106763b4cfbb9f7c64b41.png)
|
4813
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4814
4809
|
:rtype: str
|
4815
4810
|
"""
|
4816
4811
|
return self._FlowId
|
@@ -4822,7 +4817,6 @@ class ChannelCreateFlowByFilesResponse(AbstractModel):
|
|
4822
4817
|
@property
|
4823
4818
|
def Approvers(self):
|
4824
4819
|
"""签署方信息,如角色ID、角色名称等
|
4825
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4826
4820
|
:rtype: list of ApproverItem
|
4827
4821
|
"""
|
4828
4822
|
return self._Approvers
|
@@ -5028,13 +5022,11 @@ class ChannelCreateFlowGroupByFilesResponse(AbstractModel):
|
|
5028
5022
|
r"""
|
5029
5023
|
:param _FlowGroupId: 合同组ID,为32位字符串。
|
5030
5024
|
建议开发者妥善保存此合同组ID,以便于顺利进行后续操作。
|
5031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5032
5025
|
:type FlowGroupId: str
|
5033
5026
|
:param _FlowIds: 合同组中每个合同流程ID,每个ID均为32位字符串。
|
5034
5027
|
|
5035
5028
|
注:
|
5036
5029
|
`此数组的顺序和入参中的FlowGroupInfos顺序一致`
|
5037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5038
5030
|
:type FlowIds: list of str
|
5039
5031
|
:param _Approvers: 合同组签署方信息。
|
5040
5032
|
:type Approvers: list of FlowGroupApprovers
|
@@ -5050,7 +5042,6 @@ class ChannelCreateFlowGroupByFilesResponse(AbstractModel):
|
|
5050
5042
|
def FlowGroupId(self):
|
5051
5043
|
"""合同组ID,为32位字符串。
|
5052
5044
|
建议开发者妥善保存此合同组ID,以便于顺利进行后续操作。
|
5053
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5054
5045
|
:rtype: str
|
5055
5046
|
"""
|
5056
5047
|
return self._FlowGroupId
|
@@ -5065,7 +5056,6 @@ class ChannelCreateFlowGroupByFilesResponse(AbstractModel):
|
|
5065
5056
|
|
5066
5057
|
注:
|
5067
5058
|
`此数组的顺序和入参中的FlowGroupInfos顺序一致`
|
5068
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5069
5059
|
:rtype: list of str
|
5070
5060
|
"""
|
5071
5061
|
return self._FlowIds
|
@@ -7655,9 +7645,7 @@ class ChannelCreateUserAutoSignEnableUrlRequest(AbstractModel):
|
|
7655
7645
|
<ul><li> 不传(即为空值) 则会生成小程序端开通链接(默认)</li>
|
7656
7646
|
<li> **H5SIGN** : 生成H5端开通链接</li></ul>
|
7657
7647
|
:type UrlType: str
|
7658
|
-
:param _NotifyType:
|
7659
|
-
<ul><li>默认不设置为不通知开通方</li>
|
7660
|
-
<li>**SMS** : 短信通知 ,如果需要短信通知则NotifyAddress填写对方的手机号</li></ul>
|
7648
|
+
:param _NotifyType: 是否通知开通方,通知类型:<ul><li>默认为不通知开通方</li><li>**SMS** : 短信通知 ,如果需要短信通知则NotifyAddress填写对方的手机号</li></ul>
|
7661
7649
|
:type NotifyType: str
|
7662
7650
|
:param _NotifyAddress: 如果通知类型NotifyType选择为SMS,则此处为手机号, 其他通知类型不需要设置此项
|
7663
7651
|
:type NotifyAddress: str
|
@@ -7737,9 +7725,7 @@ class ChannelCreateUserAutoSignEnableUrlRequest(AbstractModel):
|
|
7737
7725
|
|
7738
7726
|
@property
|
7739
7727
|
def NotifyType(self):
|
7740
|
-
"""
|
7741
|
-
<ul><li>默认不设置为不通知开通方</li>
|
7742
|
-
<li>**SMS** : 短信通知 ,如果需要短信通知则NotifyAddress填写对方的手机号</li></ul>
|
7728
|
+
"""是否通知开通方,通知类型:<ul><li>默认为不通知开通方</li><li>**SMS** : 短信通知 ,如果需要短信通知则NotifyAddress填写对方的手机号</li></ul>
|
7743
7729
|
:rtype: str
|
7744
7730
|
"""
|
7745
7731
|
return self._NotifyType
|
@@ -10952,7 +10938,7 @@ class ChannelOrganizationInfo(AbstractModel):
|
|
10952
10938
|
<li>**1**: 已激活</li>
|
10953
10939
|
</ul>
|
10954
10940
|
:type ActiveStatus: int
|
10955
|
-
:param _LicenseExpireTime:
|
10941
|
+
:param _LicenseExpireTime: 账号到期时间,时间戳
|
10956
10942
|
:type LicenseExpireTime: int
|
10957
10943
|
"""
|
10958
10944
|
self._OrganizationId = None
|
@@ -11122,7 +11108,7 @@ class ChannelOrganizationInfo(AbstractModel):
|
|
11122
11108
|
|
11123
11109
|
@property
|
11124
11110
|
def LicenseExpireTime(self):
|
11125
|
-
"""
|
11111
|
+
"""账号到期时间,时间戳
|
11126
11112
|
:rtype: int
|
11127
11113
|
"""
|
11128
11114
|
return self._LicenseExpireTime
|