tencentcloud-sdk-python 3.0.1128__py2.py3-none-any.whl → 3.0.1130__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/models.py +27 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/asr/v20190614/models.py +3 -0
- tencentcloud/bsca/v20210811/models.py +24 -0
- tencentcloud/ccc/v20200210/ccc_client.py +2 -2
- tencentcloud/ccc/v20200210/models.py +10 -10
- tencentcloud/domain/v20180808/domain_client.py +46 -0
- tencentcloud/domain/v20180808/errorcodes.py +9 -0
- tencentcloud/domain/v20180808/models.py +269 -1
- tencentcloud/dts/v20211206/models.py +2 -2
- tencentcloud/ess/v20201111/errorcodes.py +9 -0
- tencentcloud/ess/v20201111/ess_client.py +75 -3
- tencentcloud/ess/v20201111/models.py +660 -5
- tencentcloud/essbasic/v20210526/models.py +1 -2
- tencentcloud/iai/v20180301/models.py +1 -0
- tencentcloud/lcic/v20220817/models.py +62 -0
- tencentcloud/lke/v20231130/models.py +14 -2
- tencentcloud/monitor/v20180724/models.py +28 -0
- tencentcloud/ocr/v20181119/models.py +32 -32
- tencentcloud/rce/v20201103/models.py +4 -3
- tencentcloud/smh/v20210712/errorcodes.py +3 -3
- tencentcloud/sqlserver/v20180328/errorcodes.py +3 -0
- tencentcloud/sqlserver/v20180328/models.py +94 -0
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +23 -0
- tencentcloud/tat/v20201028/models.py +3 -3
- tencentcloud/tke/v20180525/models.py +361 -4
- tencentcloud/tke/v20180525/tke_client.py +46 -0
- tencentcloud/trtc/v20190722/trtc_client.py +3 -3
- tencentcloud/vod/v20180717/models.py +17 -18
- tencentcloud/vod/v20180717/vod_client.py +2 -2
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/RECORD +36 -36
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1128.dist-info → tencentcloud_sdk_python-3.0.1130.dist-info}/top_level.txt +0 -0
|
@@ -249,10 +249,9 @@ class ApproverInfo(AbstractModel):
|
|
|
249
249
|
:param _NotifyType: 通知签署方经办人的方式, 有以下途径:
|
|
250
250
|
<ul><li> **sms** : (默认)短信</li>
|
|
251
251
|
<li> **none** : 不通知</li></ul>
|
|
252
|
-
|
|
252
|
+
|
|
253
253
|
注意:
|
|
254
|
-
|
|
255
|
-
```
|
|
254
|
+
`如果使用的是通过文件发起合同(CreateFlowByFiles),NotifyType必须 是 sms 才会发送短信`
|
|
256
255
|
:type NotifyType: str
|
|
257
256
|
:param _ApproverRole: 收据场景设置签署人角色类型, 可以设置如下****类型****:
|
|
258
257
|
<ul><li> **1** :收款人</li>
|
|
@@ -1018,7 +1017,7 @@ class AutoSignConfig(AbstractModel):
|
|
|
1018
1017
|
<li>**贵方原生App -> 腾讯电子签H5 -> 贵方原生App** : JumpUrl格式: qianapp://YOUR_CUSTOM_URL,只需满足 qianapp:// 开头的URL即可。`APP实现方,需要拦截Webview地址跳转,发现url是qianapp:// 开头时跳转到原生页面。`APP拦截地址跳转可参考:<a href='https://stackoverflow.com/questions/41693263/android-webview-err-unknown-url-scheme'>Android</a>,<a href='https://razorpay.com/docs/payments/payment-gateway/web-integration/standard/webview/upi-intent-ios/'>IOS</a> </li></ul>
|
|
1019
1018
|
|
|
1020
1019
|
成功结果返回:
|
|
1021
|
-
若贵方需要在跳转回时通过链接query参数提示开通成功,JumpUrl中的query应携带如下参数:`appendResult=qian`。这样腾讯电子签H5会在跳转回的url后面会添加query
|
|
1020
|
+
若贵方需要在跳转回时通过链接query参数提示开通成功,JumpUrl中的query应携带如下参数:`appendResult=qian`。这样腾讯电子签H5会在跳转回的url后面会添加query参数提示贵方签署成功,例如: qianapp://YOUR_CUSTOM_URL?action=sign&result=success&from=tencent_ess
|
|
1022
1021
|
:type JumpUrl: str
|
|
1023
1022
|
"""
|
|
1024
1023
|
self._UserInfo = None
|
|
@@ -2692,6 +2691,148 @@ class CreateBatchCancelFlowUrlResponse(AbstractModel):
|
|
|
2692
2691
|
self._RequestId = params.get("RequestId")
|
|
2693
2692
|
|
|
2694
2693
|
|
|
2694
|
+
class CreateBatchOrganizationRegistrationTasksRequest(AbstractModel):
|
|
2695
|
+
"""CreateBatchOrganizationRegistrationTasks请求参数结构体
|
|
2696
|
+
|
|
2697
|
+
"""
|
|
2698
|
+
|
|
2699
|
+
def __init__(self):
|
|
2700
|
+
r"""
|
|
2701
|
+
:param _Operator: 执行本接口操作的员工信息。
|
|
2702
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
2703
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
2704
|
+
:param _RegistrationOrganizations: 组织机构注册信息。
|
|
2705
|
+
一次最多支持10条认证流
|
|
2706
|
+
:type RegistrationOrganizations: list of RegistrationOrganizationInfo
|
|
2707
|
+
:param _Agent: 代理企业和员工的信息。
|
|
2708
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
2709
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
2710
|
+
:param _Endpoint: 要生成链接的类型, 可以选择的值如下:
|
|
2711
|
+
|
|
2712
|
+
<ul>
|
|
2713
|
+
<li>(默认)PC: 生成PC端的链接</li>
|
|
2714
|
+
<li>SHORT_URL: H5跳转到电子签小程序链接的短链形式, 一般用于发送短信中带的链接, 打开后进入腾讯电子签小程序</li>
|
|
2715
|
+
<li>APP:生成小程序跳转链接</li>
|
|
2716
|
+
<li>H5:生成H5跳转长链接</li>
|
|
2717
|
+
<li>SHORT_H5:生成H5跳转短链</li>
|
|
2718
|
+
</ul>
|
|
2719
|
+
:type Endpoint: str
|
|
2720
|
+
"""
|
|
2721
|
+
self._Operator = None
|
|
2722
|
+
self._RegistrationOrganizations = None
|
|
2723
|
+
self._Agent = None
|
|
2724
|
+
self._Endpoint = None
|
|
2725
|
+
|
|
2726
|
+
@property
|
|
2727
|
+
def Operator(self):
|
|
2728
|
+
return self._Operator
|
|
2729
|
+
|
|
2730
|
+
@Operator.setter
|
|
2731
|
+
def Operator(self, Operator):
|
|
2732
|
+
self._Operator = Operator
|
|
2733
|
+
|
|
2734
|
+
@property
|
|
2735
|
+
def RegistrationOrganizations(self):
|
|
2736
|
+
return self._RegistrationOrganizations
|
|
2737
|
+
|
|
2738
|
+
@RegistrationOrganizations.setter
|
|
2739
|
+
def RegistrationOrganizations(self, RegistrationOrganizations):
|
|
2740
|
+
self._RegistrationOrganizations = RegistrationOrganizations
|
|
2741
|
+
|
|
2742
|
+
@property
|
|
2743
|
+
def Agent(self):
|
|
2744
|
+
return self._Agent
|
|
2745
|
+
|
|
2746
|
+
@Agent.setter
|
|
2747
|
+
def Agent(self, Agent):
|
|
2748
|
+
self._Agent = Agent
|
|
2749
|
+
|
|
2750
|
+
@property
|
|
2751
|
+
def Endpoint(self):
|
|
2752
|
+
return self._Endpoint
|
|
2753
|
+
|
|
2754
|
+
@Endpoint.setter
|
|
2755
|
+
def Endpoint(self, Endpoint):
|
|
2756
|
+
self._Endpoint = Endpoint
|
|
2757
|
+
|
|
2758
|
+
|
|
2759
|
+
def _deserialize(self, params):
|
|
2760
|
+
if params.get("Operator") is not None:
|
|
2761
|
+
self._Operator = UserInfo()
|
|
2762
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
2763
|
+
if params.get("RegistrationOrganizations") is not None:
|
|
2764
|
+
self._RegistrationOrganizations = []
|
|
2765
|
+
for item in params.get("RegistrationOrganizations"):
|
|
2766
|
+
obj = RegistrationOrganizationInfo()
|
|
2767
|
+
obj._deserialize(item)
|
|
2768
|
+
self._RegistrationOrganizations.append(obj)
|
|
2769
|
+
if params.get("Agent") is not None:
|
|
2770
|
+
self._Agent = Agent()
|
|
2771
|
+
self._Agent._deserialize(params.get("Agent"))
|
|
2772
|
+
self._Endpoint = params.get("Endpoint")
|
|
2773
|
+
memeber_set = set(params.keys())
|
|
2774
|
+
for name, value in vars(self).items():
|
|
2775
|
+
property_name = name[1:]
|
|
2776
|
+
if property_name in memeber_set:
|
|
2777
|
+
memeber_set.remove(property_name)
|
|
2778
|
+
if len(memeber_set) > 0:
|
|
2779
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2780
|
+
|
|
2781
|
+
|
|
2782
|
+
|
|
2783
|
+
class CreateBatchOrganizationRegistrationTasksResponse(AbstractModel):
|
|
2784
|
+
"""CreateBatchOrganizationRegistrationTasks返回参数结构体
|
|
2785
|
+
|
|
2786
|
+
"""
|
|
2787
|
+
|
|
2788
|
+
def __init__(self):
|
|
2789
|
+
r"""
|
|
2790
|
+
:param _TaskId: 生成注册链接的任务Id,
|
|
2791
|
+
根据这个id, 调用DescribeBatchOrganizationRegistrationUrls 获取生成的链接,进入认证流程
|
|
2792
|
+
:type TaskId: str
|
|
2793
|
+
:param _ErrorMessages: 批量生成企业认证链接的详细错误信息,
|
|
2794
|
+
顺序与输入参数保持一致。
|
|
2795
|
+
若企业认证均成功生成,则不返回错误信息;
|
|
2796
|
+
若存在任何错误,则返回具体的错误描述。
|
|
2797
|
+
:type ErrorMessages: list of str
|
|
2798
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2799
|
+
:type RequestId: str
|
|
2800
|
+
"""
|
|
2801
|
+
self._TaskId = None
|
|
2802
|
+
self._ErrorMessages = None
|
|
2803
|
+
self._RequestId = None
|
|
2804
|
+
|
|
2805
|
+
@property
|
|
2806
|
+
def TaskId(self):
|
|
2807
|
+
return self._TaskId
|
|
2808
|
+
|
|
2809
|
+
@TaskId.setter
|
|
2810
|
+
def TaskId(self, TaskId):
|
|
2811
|
+
self._TaskId = TaskId
|
|
2812
|
+
|
|
2813
|
+
@property
|
|
2814
|
+
def ErrorMessages(self):
|
|
2815
|
+
return self._ErrorMessages
|
|
2816
|
+
|
|
2817
|
+
@ErrorMessages.setter
|
|
2818
|
+
def ErrorMessages(self, ErrorMessages):
|
|
2819
|
+
self._ErrorMessages = ErrorMessages
|
|
2820
|
+
|
|
2821
|
+
@property
|
|
2822
|
+
def RequestId(self):
|
|
2823
|
+
return self._RequestId
|
|
2824
|
+
|
|
2825
|
+
@RequestId.setter
|
|
2826
|
+
def RequestId(self, RequestId):
|
|
2827
|
+
self._RequestId = RequestId
|
|
2828
|
+
|
|
2829
|
+
|
|
2830
|
+
def _deserialize(self, params):
|
|
2831
|
+
self._TaskId = params.get("TaskId")
|
|
2832
|
+
self._ErrorMessages = params.get("ErrorMessages")
|
|
2833
|
+
self._RequestId = params.get("RequestId")
|
|
2834
|
+
|
|
2835
|
+
|
|
2695
2836
|
class CreateBatchQuickSignUrlRequest(AbstractModel):
|
|
2696
2837
|
"""CreateBatchQuickSignUrl请求参数结构体
|
|
2697
2838
|
|
|
@@ -6903,6 +7044,343 @@ class CreateMultiFlowSignQRCodeResponse(AbstractModel):
|
|
|
6903
7044
|
self._RequestId = params.get("RequestId")
|
|
6904
7045
|
|
|
6905
7046
|
|
|
7047
|
+
class CreateOrganizationAuthUrlRequest(AbstractModel):
|
|
7048
|
+
"""CreateOrganizationAuthUrl请求参数结构体
|
|
7049
|
+
|
|
7050
|
+
"""
|
|
7051
|
+
|
|
7052
|
+
def __init__(self):
|
|
7053
|
+
r"""
|
|
7054
|
+
:param _Operator: 操作人信息
|
|
7055
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
7056
|
+
:param _AuthorizationTypes: 指定授权方式 支持多选:
|
|
7057
|
+
1-上传授权书方式
|
|
7058
|
+
2- 法人授权方式
|
|
7059
|
+
3- 法人身份认证方式
|
|
7060
|
+
:type AuthorizationTypes: list of int non-negative
|
|
7061
|
+
:param _OrganizationName: 企业名称
|
|
7062
|
+
EndPointType=“H5”或者"SHORT_H5"时,该参数必填
|
|
7063
|
+
|
|
7064
|
+
:type OrganizationName: str
|
|
7065
|
+
:param _UniformSocialCreditCode: 企业统一社会信用代码
|
|
7066
|
+
:type UniformSocialCreditCode: str
|
|
7067
|
+
:param _LegalName: 法人姓名
|
|
7068
|
+
:type LegalName: str
|
|
7069
|
+
:param _AutoJumpUrl: 认证完成跳转链接
|
|
7070
|
+
:type AutoJumpUrl: str
|
|
7071
|
+
:param _OrganizationAddress: 营业执照企业地址
|
|
7072
|
+
示例:xx省xx市xx县/区xx街道
|
|
7073
|
+
:type OrganizationAddress: str
|
|
7074
|
+
:param _AdminName: 认证人姓名
|
|
7075
|
+
:type AdminName: str
|
|
7076
|
+
:param _AdminMobile: 认证人手机号
|
|
7077
|
+
:type AdminMobile: str
|
|
7078
|
+
:param _AdminIdCardNumber: 认证人身份证号
|
|
7079
|
+
:type AdminIdCardNumber: str
|
|
7080
|
+
:param _AdminIdCardType: 认证人证件类型
|
|
7081
|
+
支持以下类型
|
|
7082
|
+
<ul><li>ID_CARD : 居民身份证 (默认值)</li>
|
|
7083
|
+
<li>HONGKONG_AND_MACAO : 港澳居民来往内地通行证</li>
|
|
7084
|
+
<li>HONGKONG_MACAO_AND_TAIWAN : 港澳台居民居住证(格式同居民身份证)</li></ul>
|
|
7085
|
+
|
|
7086
|
+
:type AdminIdCardType: str
|
|
7087
|
+
:param _UniformSocialCreditCodeSame: 营业执照的社会信用代码保持一致
|
|
7088
|
+
false 关闭-默认
|
|
7089
|
+
true 开启
|
|
7090
|
+
:type UniformSocialCreditCodeSame: bool
|
|
7091
|
+
:param _LegalNameSame: 法人姓名保持一致
|
|
7092
|
+
false 关闭-默认
|
|
7093
|
+
true 开启
|
|
7094
|
+
:type LegalNameSame: bool
|
|
7095
|
+
:param _AdminNameSame: 认证人姓名一致
|
|
7096
|
+
false 关闭-默认
|
|
7097
|
+
true 开启
|
|
7098
|
+
注意:
|
|
7099
|
+
开启后在认证过程前会校验拦截
|
|
7100
|
+
:type AdminNameSame: bool
|
|
7101
|
+
:param _AdminIdCardNumberSame: 认证人居民身份证件号一致
|
|
7102
|
+
false 关闭-默认
|
|
7103
|
+
true 开启
|
|
7104
|
+
注意:
|
|
7105
|
+
开启后在认证过程前会校验拦截
|
|
7106
|
+
:type AdminIdCardNumberSame: bool
|
|
7107
|
+
:param _AdminMobileSame: 认证人手机号一致
|
|
7108
|
+
false 关闭-默认
|
|
7109
|
+
true 开启
|
|
7110
|
+
注意:
|
|
7111
|
+
开启后在认证过程前会校验拦截
|
|
7112
|
+
:type AdminMobileSame: bool
|
|
7113
|
+
:param _OrganizationNameSame: 企业名称保持一致
|
|
7114
|
+
false 关闭-默认
|
|
7115
|
+
true 开启
|
|
7116
|
+
:type OrganizationNameSame: bool
|
|
7117
|
+
:param _BusinessLicense: 营业执照正面照(PNG或JPG) base64格式, 大小不超过5M
|
|
7118
|
+
:type BusinessLicense: str
|
|
7119
|
+
:param _Endpoint: 跳转链接类型:
|
|
7120
|
+
"PC"-PC端认证链接
|
|
7121
|
+
"APP"-全屏或半屏跳转小程序链接
|
|
7122
|
+
“H5”-H5页面认证链接 "SHORT_H5"- H5认证短链
|
|
7123
|
+
"SHORT_URL"- 跳转小程序短链
|
|
7124
|
+
:type Endpoint: str
|
|
7125
|
+
"""
|
|
7126
|
+
self._Operator = None
|
|
7127
|
+
self._AuthorizationTypes = None
|
|
7128
|
+
self._OrganizationName = None
|
|
7129
|
+
self._UniformSocialCreditCode = None
|
|
7130
|
+
self._LegalName = None
|
|
7131
|
+
self._AutoJumpUrl = None
|
|
7132
|
+
self._OrganizationAddress = None
|
|
7133
|
+
self._AdminName = None
|
|
7134
|
+
self._AdminMobile = None
|
|
7135
|
+
self._AdminIdCardNumber = None
|
|
7136
|
+
self._AdminIdCardType = None
|
|
7137
|
+
self._UniformSocialCreditCodeSame = None
|
|
7138
|
+
self._LegalNameSame = None
|
|
7139
|
+
self._AdminNameSame = None
|
|
7140
|
+
self._AdminIdCardNumberSame = None
|
|
7141
|
+
self._AdminMobileSame = None
|
|
7142
|
+
self._OrganizationNameSame = None
|
|
7143
|
+
self._BusinessLicense = None
|
|
7144
|
+
self._Endpoint = None
|
|
7145
|
+
|
|
7146
|
+
@property
|
|
7147
|
+
def Operator(self):
|
|
7148
|
+
return self._Operator
|
|
7149
|
+
|
|
7150
|
+
@Operator.setter
|
|
7151
|
+
def Operator(self, Operator):
|
|
7152
|
+
self._Operator = Operator
|
|
7153
|
+
|
|
7154
|
+
@property
|
|
7155
|
+
def AuthorizationTypes(self):
|
|
7156
|
+
return self._AuthorizationTypes
|
|
7157
|
+
|
|
7158
|
+
@AuthorizationTypes.setter
|
|
7159
|
+
def AuthorizationTypes(self, AuthorizationTypes):
|
|
7160
|
+
self._AuthorizationTypes = AuthorizationTypes
|
|
7161
|
+
|
|
7162
|
+
@property
|
|
7163
|
+
def OrganizationName(self):
|
|
7164
|
+
return self._OrganizationName
|
|
7165
|
+
|
|
7166
|
+
@OrganizationName.setter
|
|
7167
|
+
def OrganizationName(self, OrganizationName):
|
|
7168
|
+
self._OrganizationName = OrganizationName
|
|
7169
|
+
|
|
7170
|
+
@property
|
|
7171
|
+
def UniformSocialCreditCode(self):
|
|
7172
|
+
return self._UniformSocialCreditCode
|
|
7173
|
+
|
|
7174
|
+
@UniformSocialCreditCode.setter
|
|
7175
|
+
def UniformSocialCreditCode(self, UniformSocialCreditCode):
|
|
7176
|
+
self._UniformSocialCreditCode = UniformSocialCreditCode
|
|
7177
|
+
|
|
7178
|
+
@property
|
|
7179
|
+
def LegalName(self):
|
|
7180
|
+
return self._LegalName
|
|
7181
|
+
|
|
7182
|
+
@LegalName.setter
|
|
7183
|
+
def LegalName(self, LegalName):
|
|
7184
|
+
self._LegalName = LegalName
|
|
7185
|
+
|
|
7186
|
+
@property
|
|
7187
|
+
def AutoJumpUrl(self):
|
|
7188
|
+
return self._AutoJumpUrl
|
|
7189
|
+
|
|
7190
|
+
@AutoJumpUrl.setter
|
|
7191
|
+
def AutoJumpUrl(self, AutoJumpUrl):
|
|
7192
|
+
self._AutoJumpUrl = AutoJumpUrl
|
|
7193
|
+
|
|
7194
|
+
@property
|
|
7195
|
+
def OrganizationAddress(self):
|
|
7196
|
+
return self._OrganizationAddress
|
|
7197
|
+
|
|
7198
|
+
@OrganizationAddress.setter
|
|
7199
|
+
def OrganizationAddress(self, OrganizationAddress):
|
|
7200
|
+
self._OrganizationAddress = OrganizationAddress
|
|
7201
|
+
|
|
7202
|
+
@property
|
|
7203
|
+
def AdminName(self):
|
|
7204
|
+
return self._AdminName
|
|
7205
|
+
|
|
7206
|
+
@AdminName.setter
|
|
7207
|
+
def AdminName(self, AdminName):
|
|
7208
|
+
self._AdminName = AdminName
|
|
7209
|
+
|
|
7210
|
+
@property
|
|
7211
|
+
def AdminMobile(self):
|
|
7212
|
+
return self._AdminMobile
|
|
7213
|
+
|
|
7214
|
+
@AdminMobile.setter
|
|
7215
|
+
def AdminMobile(self, AdminMobile):
|
|
7216
|
+
self._AdminMobile = AdminMobile
|
|
7217
|
+
|
|
7218
|
+
@property
|
|
7219
|
+
def AdminIdCardNumber(self):
|
|
7220
|
+
return self._AdminIdCardNumber
|
|
7221
|
+
|
|
7222
|
+
@AdminIdCardNumber.setter
|
|
7223
|
+
def AdminIdCardNumber(self, AdminIdCardNumber):
|
|
7224
|
+
self._AdminIdCardNumber = AdminIdCardNumber
|
|
7225
|
+
|
|
7226
|
+
@property
|
|
7227
|
+
def AdminIdCardType(self):
|
|
7228
|
+
return self._AdminIdCardType
|
|
7229
|
+
|
|
7230
|
+
@AdminIdCardType.setter
|
|
7231
|
+
def AdminIdCardType(self, AdminIdCardType):
|
|
7232
|
+
self._AdminIdCardType = AdminIdCardType
|
|
7233
|
+
|
|
7234
|
+
@property
|
|
7235
|
+
def UniformSocialCreditCodeSame(self):
|
|
7236
|
+
return self._UniformSocialCreditCodeSame
|
|
7237
|
+
|
|
7238
|
+
@UniformSocialCreditCodeSame.setter
|
|
7239
|
+
def UniformSocialCreditCodeSame(self, UniformSocialCreditCodeSame):
|
|
7240
|
+
self._UniformSocialCreditCodeSame = UniformSocialCreditCodeSame
|
|
7241
|
+
|
|
7242
|
+
@property
|
|
7243
|
+
def LegalNameSame(self):
|
|
7244
|
+
return self._LegalNameSame
|
|
7245
|
+
|
|
7246
|
+
@LegalNameSame.setter
|
|
7247
|
+
def LegalNameSame(self, LegalNameSame):
|
|
7248
|
+
self._LegalNameSame = LegalNameSame
|
|
7249
|
+
|
|
7250
|
+
@property
|
|
7251
|
+
def AdminNameSame(self):
|
|
7252
|
+
return self._AdminNameSame
|
|
7253
|
+
|
|
7254
|
+
@AdminNameSame.setter
|
|
7255
|
+
def AdminNameSame(self, AdminNameSame):
|
|
7256
|
+
self._AdminNameSame = AdminNameSame
|
|
7257
|
+
|
|
7258
|
+
@property
|
|
7259
|
+
def AdminIdCardNumberSame(self):
|
|
7260
|
+
return self._AdminIdCardNumberSame
|
|
7261
|
+
|
|
7262
|
+
@AdminIdCardNumberSame.setter
|
|
7263
|
+
def AdminIdCardNumberSame(self, AdminIdCardNumberSame):
|
|
7264
|
+
self._AdminIdCardNumberSame = AdminIdCardNumberSame
|
|
7265
|
+
|
|
7266
|
+
@property
|
|
7267
|
+
def AdminMobileSame(self):
|
|
7268
|
+
return self._AdminMobileSame
|
|
7269
|
+
|
|
7270
|
+
@AdminMobileSame.setter
|
|
7271
|
+
def AdminMobileSame(self, AdminMobileSame):
|
|
7272
|
+
self._AdminMobileSame = AdminMobileSame
|
|
7273
|
+
|
|
7274
|
+
@property
|
|
7275
|
+
def OrganizationNameSame(self):
|
|
7276
|
+
return self._OrganizationNameSame
|
|
7277
|
+
|
|
7278
|
+
@OrganizationNameSame.setter
|
|
7279
|
+
def OrganizationNameSame(self, OrganizationNameSame):
|
|
7280
|
+
self._OrganizationNameSame = OrganizationNameSame
|
|
7281
|
+
|
|
7282
|
+
@property
|
|
7283
|
+
def BusinessLicense(self):
|
|
7284
|
+
return self._BusinessLicense
|
|
7285
|
+
|
|
7286
|
+
@BusinessLicense.setter
|
|
7287
|
+
def BusinessLicense(self, BusinessLicense):
|
|
7288
|
+
self._BusinessLicense = BusinessLicense
|
|
7289
|
+
|
|
7290
|
+
@property
|
|
7291
|
+
def Endpoint(self):
|
|
7292
|
+
return self._Endpoint
|
|
7293
|
+
|
|
7294
|
+
@Endpoint.setter
|
|
7295
|
+
def Endpoint(self, Endpoint):
|
|
7296
|
+
self._Endpoint = Endpoint
|
|
7297
|
+
|
|
7298
|
+
|
|
7299
|
+
def _deserialize(self, params):
|
|
7300
|
+
if params.get("Operator") is not None:
|
|
7301
|
+
self._Operator = UserInfo()
|
|
7302
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
7303
|
+
self._AuthorizationTypes = params.get("AuthorizationTypes")
|
|
7304
|
+
self._OrganizationName = params.get("OrganizationName")
|
|
7305
|
+
self._UniformSocialCreditCode = params.get("UniformSocialCreditCode")
|
|
7306
|
+
self._LegalName = params.get("LegalName")
|
|
7307
|
+
self._AutoJumpUrl = params.get("AutoJumpUrl")
|
|
7308
|
+
self._OrganizationAddress = params.get("OrganizationAddress")
|
|
7309
|
+
self._AdminName = params.get("AdminName")
|
|
7310
|
+
self._AdminMobile = params.get("AdminMobile")
|
|
7311
|
+
self._AdminIdCardNumber = params.get("AdminIdCardNumber")
|
|
7312
|
+
self._AdminIdCardType = params.get("AdminIdCardType")
|
|
7313
|
+
self._UniformSocialCreditCodeSame = params.get("UniformSocialCreditCodeSame")
|
|
7314
|
+
self._LegalNameSame = params.get("LegalNameSame")
|
|
7315
|
+
self._AdminNameSame = params.get("AdminNameSame")
|
|
7316
|
+
self._AdminIdCardNumberSame = params.get("AdminIdCardNumberSame")
|
|
7317
|
+
self._AdminMobileSame = params.get("AdminMobileSame")
|
|
7318
|
+
self._OrganizationNameSame = params.get("OrganizationNameSame")
|
|
7319
|
+
self._BusinessLicense = params.get("BusinessLicense")
|
|
7320
|
+
self._Endpoint = params.get("Endpoint")
|
|
7321
|
+
memeber_set = set(params.keys())
|
|
7322
|
+
for name, value in vars(self).items():
|
|
7323
|
+
property_name = name[1:]
|
|
7324
|
+
if property_name in memeber_set:
|
|
7325
|
+
memeber_set.remove(property_name)
|
|
7326
|
+
if len(memeber_set) > 0:
|
|
7327
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7328
|
+
|
|
7329
|
+
|
|
7330
|
+
|
|
7331
|
+
class CreateOrganizationAuthUrlResponse(AbstractModel):
|
|
7332
|
+
"""CreateOrganizationAuthUrl返回参数结构体
|
|
7333
|
+
|
|
7334
|
+
"""
|
|
7335
|
+
|
|
7336
|
+
def __init__(self):
|
|
7337
|
+
r"""
|
|
7338
|
+
:param _AuthUrl: “H5”-H5长连接
|
|
7339
|
+
"SHORT_H5"- H5短链
|
|
7340
|
+
"APP"-小程序
|
|
7341
|
+
"PC"-PC浏览器
|
|
7342
|
+
链接有效期统一30天
|
|
7343
|
+
:type AuthUrl: str
|
|
7344
|
+
:param _ExpiredTime: 链接过期时间戳
|
|
7345
|
+
:type ExpiredTime: int
|
|
7346
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7347
|
+
:type RequestId: str
|
|
7348
|
+
"""
|
|
7349
|
+
self._AuthUrl = None
|
|
7350
|
+
self._ExpiredTime = None
|
|
7351
|
+
self._RequestId = None
|
|
7352
|
+
|
|
7353
|
+
@property
|
|
7354
|
+
def AuthUrl(self):
|
|
7355
|
+
return self._AuthUrl
|
|
7356
|
+
|
|
7357
|
+
@AuthUrl.setter
|
|
7358
|
+
def AuthUrl(self, AuthUrl):
|
|
7359
|
+
self._AuthUrl = AuthUrl
|
|
7360
|
+
|
|
7361
|
+
@property
|
|
7362
|
+
def ExpiredTime(self):
|
|
7363
|
+
return self._ExpiredTime
|
|
7364
|
+
|
|
7365
|
+
@ExpiredTime.setter
|
|
7366
|
+
def ExpiredTime(self, ExpiredTime):
|
|
7367
|
+
self._ExpiredTime = ExpiredTime
|
|
7368
|
+
|
|
7369
|
+
@property
|
|
7370
|
+
def RequestId(self):
|
|
7371
|
+
return self._RequestId
|
|
7372
|
+
|
|
7373
|
+
@RequestId.setter
|
|
7374
|
+
def RequestId(self, RequestId):
|
|
7375
|
+
self._RequestId = RequestId
|
|
7376
|
+
|
|
7377
|
+
|
|
7378
|
+
def _deserialize(self, params):
|
|
7379
|
+
self._AuthUrl = params.get("AuthUrl")
|
|
7380
|
+
self._ExpiredTime = params.get("ExpiredTime")
|
|
7381
|
+
self._RequestId = params.get("RequestId")
|
|
7382
|
+
|
|
7383
|
+
|
|
6906
7384
|
class CreateOrganizationBatchSignUrlRequest(AbstractModel):
|
|
6907
7385
|
"""CreateOrganizationBatchSignUrl请求参数结构体
|
|
6908
7386
|
|
|
@@ -6934,6 +7412,10 @@ UserId必须是传入合同(FlowId)中的签署人。
|
|
|
6934
7412
|
:param _Mobile: 员工手机号,必须与姓名一起使用。
|
|
6935
7413
|
如果UserId为空,则此字段不能为空。同时,姓名和手机号码必须与传入合同(FlowId)中的签署人信息一致。
|
|
6936
7414
|
:type Mobile: str
|
|
7415
|
+
:param _RecipientIds: 为签署方经办人在签署合同中的参与方ID,必须与参数FlowIds数组一一对应。
|
|
7416
|
+
您可以通过查询合同接口(DescribeFlowInfo)查询此参数。
|
|
7417
|
+
若传了此参数,则可以不传 UserId, Name, Mobile等参数
|
|
7418
|
+
:type RecipientIds: list of str
|
|
6937
7419
|
"""
|
|
6938
7420
|
self._Operator = None
|
|
6939
7421
|
self._FlowIds = None
|
|
@@ -6941,6 +7423,7 @@ UserId必须是传入合同(FlowId)中的签署人。
|
|
|
6941
7423
|
self._UserId = None
|
|
6942
7424
|
self._Name = None
|
|
6943
7425
|
self._Mobile = None
|
|
7426
|
+
self._RecipientIds = None
|
|
6944
7427
|
|
|
6945
7428
|
@property
|
|
6946
7429
|
def Operator(self):
|
|
@@ -6990,6 +7473,14 @@ UserId必须是传入合同(FlowId)中的签署人。
|
|
|
6990
7473
|
def Mobile(self, Mobile):
|
|
6991
7474
|
self._Mobile = Mobile
|
|
6992
7475
|
|
|
7476
|
+
@property
|
|
7477
|
+
def RecipientIds(self):
|
|
7478
|
+
return self._RecipientIds
|
|
7479
|
+
|
|
7480
|
+
@RecipientIds.setter
|
|
7481
|
+
def RecipientIds(self, RecipientIds):
|
|
7482
|
+
self._RecipientIds = RecipientIds
|
|
7483
|
+
|
|
6993
7484
|
|
|
6994
7485
|
def _deserialize(self, params):
|
|
6995
7486
|
if params.get("Operator") is not None:
|
|
@@ -7002,6 +7493,7 @@ UserId必须是传入合同(FlowId)中的签署人。
|
|
|
7002
7493
|
self._UserId = params.get("UserId")
|
|
7003
7494
|
self._Name = params.get("Name")
|
|
7004
7495
|
self._Mobile = params.get("Mobile")
|
|
7496
|
+
self._RecipientIds = params.get("RecipientIds")
|
|
7005
7497
|
memeber_set = set(params.keys())
|
|
7006
7498
|
for name, value in vars(self).items():
|
|
7007
7499
|
property_name = name[1:]
|
|
@@ -14742,7 +15234,7 @@ class FlowCreateApprover(AbstractModel):
|
|
|
14742
15234
|
:type ApproverIdCardNumber: str
|
|
14743
15235
|
:param _RecipientId: 签署方经办人在模板中配置的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。
|
|
14744
15236
|
|
|
14745
|
-
<b>模板发起合同时,该参数为必填项,可以通过[
|
|
15237
|
+
<b>模板发起合同时,该参数为必填项,可以通过[查询模板信息接口](https://qian.tencent.com/developers/companyApis/templatesAndFiles/DescribeFlowTemplates)获得。</b>
|
|
14746
15238
|
<b>文件发起合同时,该参数无需传值。</b>
|
|
14747
15239
|
|
|
14748
15240
|
如果开发者后续用合同模板发起合同,建议保存此值,在用合同模板发起合同中需此值绑定对应的签署经办人 。
|
|
@@ -18912,6 +19404,169 @@ class RegisterInfo(AbstractModel):
|
|
|
18912
19404
|
|
|
18913
19405
|
|
|
18914
19406
|
|
|
19407
|
+
class RegistrationOrganizationInfo(AbstractModel):
|
|
19408
|
+
"""企业认证信息参数, 需要保证这些参数跟营业执照中的信息一致。
|
|
19409
|
+
|
|
19410
|
+
"""
|
|
19411
|
+
|
|
19412
|
+
def __init__(self):
|
|
19413
|
+
r"""
|
|
19414
|
+
:param _OrganizationName: 组织机构名称。
|
|
19415
|
+
请确认该名称与企业营业执照中注册的名称一致。
|
|
19416
|
+
如果名称中包含英文括号(),请使用中文括号()代替。
|
|
19417
|
+
:type OrganizationName: str
|
|
19418
|
+
:param _UniformSocialCreditCode: 组织机构企业统一社会信用代码。
|
|
19419
|
+
请确认该企业统一社会信用代码与企业营业执照中注册的统一社会信用代码一致。
|
|
19420
|
+
:type UniformSocialCreditCode: str
|
|
19421
|
+
:param _LegalName: 组织机构法人的姓名。
|
|
19422
|
+
请确认该企业统一社会信用代码与企业营业执照中注册的法人姓名一致。
|
|
19423
|
+
:type LegalName: str
|
|
19424
|
+
:param _Address: 组织机构企业注册地址。
|
|
19425
|
+
请确认该企业注册地址与企业营业执照中注册的地址一致。
|
|
19426
|
+
:type Address: str
|
|
19427
|
+
:param _AdminName: 组织机构超管姓名。
|
|
19428
|
+
在注册流程中,必须是超管本人进行操作。
|
|
19429
|
+
如果法人做为超管管理组织机构,超管姓名就是法人姓名
|
|
19430
|
+
:type AdminName: str
|
|
19431
|
+
:param _AdminMobile: 组织机构超管姓名。
|
|
19432
|
+
在注册流程中,这个手机号必须跟操作人在电子签注册的个人手机号一致。
|
|
19433
|
+
:type AdminMobile: str
|
|
19434
|
+
:param _AuthorizationTypes: 可选的此企业允许的授权方式, 可以设置的方式有:
|
|
19435
|
+
1:上传授权书
|
|
19436
|
+
2:法人授权超管
|
|
19437
|
+
5:授权书+对公打款
|
|
19438
|
+
|
|
19439
|
+
|
|
19440
|
+
注:
|
|
19441
|
+
`1. 当前仅支持一种认证方式`
|
|
19442
|
+
`2. 如果当前的企业类型是政府/事业单位, 则只支持上传授权书+对公打款`
|
|
19443
|
+
`3. 如果当前操作人是法人,则是法人认证`
|
|
19444
|
+
:type AuthorizationTypes: list of int non-negative
|
|
19445
|
+
:param _AdminIdCardNumber: 认证人身份证号
|
|
19446
|
+
:type AdminIdCardNumber: str
|
|
19447
|
+
:param _AdminIdCardType: 认证人证件类型
|
|
19448
|
+
支持以下类型
|
|
19449
|
+
<ul><li>ID_CARD : 居民身份证 (默认值)</li>
|
|
19450
|
+
<li>HONGKONG_AND_MACAO : 港澳居民来往内地通行证</li>
|
|
19451
|
+
<li>HONGKONG_MACAO_AND_TAIWAN : 港澳台居民居住证(格式同居民身份证)</li></ul>
|
|
19452
|
+
|
|
19453
|
+
:type AdminIdCardType: str
|
|
19454
|
+
:param _BusinessLicense: 营业执照正面照(PNG或JPG) base64格式, 大小不超过5M
|
|
19455
|
+
:type BusinessLicense: str
|
|
19456
|
+
"""
|
|
19457
|
+
self._OrganizationName = None
|
|
19458
|
+
self._UniformSocialCreditCode = None
|
|
19459
|
+
self._LegalName = None
|
|
19460
|
+
self._Address = None
|
|
19461
|
+
self._AdminName = None
|
|
19462
|
+
self._AdminMobile = None
|
|
19463
|
+
self._AuthorizationTypes = None
|
|
19464
|
+
self._AdminIdCardNumber = None
|
|
19465
|
+
self._AdminIdCardType = None
|
|
19466
|
+
self._BusinessLicense = None
|
|
19467
|
+
|
|
19468
|
+
@property
|
|
19469
|
+
def OrganizationName(self):
|
|
19470
|
+
return self._OrganizationName
|
|
19471
|
+
|
|
19472
|
+
@OrganizationName.setter
|
|
19473
|
+
def OrganizationName(self, OrganizationName):
|
|
19474
|
+
self._OrganizationName = OrganizationName
|
|
19475
|
+
|
|
19476
|
+
@property
|
|
19477
|
+
def UniformSocialCreditCode(self):
|
|
19478
|
+
return self._UniformSocialCreditCode
|
|
19479
|
+
|
|
19480
|
+
@UniformSocialCreditCode.setter
|
|
19481
|
+
def UniformSocialCreditCode(self, UniformSocialCreditCode):
|
|
19482
|
+
self._UniformSocialCreditCode = UniformSocialCreditCode
|
|
19483
|
+
|
|
19484
|
+
@property
|
|
19485
|
+
def LegalName(self):
|
|
19486
|
+
return self._LegalName
|
|
19487
|
+
|
|
19488
|
+
@LegalName.setter
|
|
19489
|
+
def LegalName(self, LegalName):
|
|
19490
|
+
self._LegalName = LegalName
|
|
19491
|
+
|
|
19492
|
+
@property
|
|
19493
|
+
def Address(self):
|
|
19494
|
+
return self._Address
|
|
19495
|
+
|
|
19496
|
+
@Address.setter
|
|
19497
|
+
def Address(self, Address):
|
|
19498
|
+
self._Address = Address
|
|
19499
|
+
|
|
19500
|
+
@property
|
|
19501
|
+
def AdminName(self):
|
|
19502
|
+
return self._AdminName
|
|
19503
|
+
|
|
19504
|
+
@AdminName.setter
|
|
19505
|
+
def AdminName(self, AdminName):
|
|
19506
|
+
self._AdminName = AdminName
|
|
19507
|
+
|
|
19508
|
+
@property
|
|
19509
|
+
def AdminMobile(self):
|
|
19510
|
+
return self._AdminMobile
|
|
19511
|
+
|
|
19512
|
+
@AdminMobile.setter
|
|
19513
|
+
def AdminMobile(self, AdminMobile):
|
|
19514
|
+
self._AdminMobile = AdminMobile
|
|
19515
|
+
|
|
19516
|
+
@property
|
|
19517
|
+
def AuthorizationTypes(self):
|
|
19518
|
+
return self._AuthorizationTypes
|
|
19519
|
+
|
|
19520
|
+
@AuthorizationTypes.setter
|
|
19521
|
+
def AuthorizationTypes(self, AuthorizationTypes):
|
|
19522
|
+
self._AuthorizationTypes = AuthorizationTypes
|
|
19523
|
+
|
|
19524
|
+
@property
|
|
19525
|
+
def AdminIdCardNumber(self):
|
|
19526
|
+
return self._AdminIdCardNumber
|
|
19527
|
+
|
|
19528
|
+
@AdminIdCardNumber.setter
|
|
19529
|
+
def AdminIdCardNumber(self, AdminIdCardNumber):
|
|
19530
|
+
self._AdminIdCardNumber = AdminIdCardNumber
|
|
19531
|
+
|
|
19532
|
+
@property
|
|
19533
|
+
def AdminIdCardType(self):
|
|
19534
|
+
return self._AdminIdCardType
|
|
19535
|
+
|
|
19536
|
+
@AdminIdCardType.setter
|
|
19537
|
+
def AdminIdCardType(self, AdminIdCardType):
|
|
19538
|
+
self._AdminIdCardType = AdminIdCardType
|
|
19539
|
+
|
|
19540
|
+
@property
|
|
19541
|
+
def BusinessLicense(self):
|
|
19542
|
+
return self._BusinessLicense
|
|
19543
|
+
|
|
19544
|
+
@BusinessLicense.setter
|
|
19545
|
+
def BusinessLicense(self, BusinessLicense):
|
|
19546
|
+
self._BusinessLicense = BusinessLicense
|
|
19547
|
+
|
|
19548
|
+
|
|
19549
|
+
def _deserialize(self, params):
|
|
19550
|
+
self._OrganizationName = params.get("OrganizationName")
|
|
19551
|
+
self._UniformSocialCreditCode = params.get("UniformSocialCreditCode")
|
|
19552
|
+
self._LegalName = params.get("LegalName")
|
|
19553
|
+
self._Address = params.get("Address")
|
|
19554
|
+
self._AdminName = params.get("AdminName")
|
|
19555
|
+
self._AdminMobile = params.get("AdminMobile")
|
|
19556
|
+
self._AuthorizationTypes = params.get("AuthorizationTypes")
|
|
19557
|
+
self._AdminIdCardNumber = params.get("AdminIdCardNumber")
|
|
19558
|
+
self._AdminIdCardType = params.get("AdminIdCardType")
|
|
19559
|
+
self._BusinessLicense = params.get("BusinessLicense")
|
|
19560
|
+
memeber_set = set(params.keys())
|
|
19561
|
+
for name, value in vars(self).items():
|
|
19562
|
+
property_name = name[1:]
|
|
19563
|
+
if property_name in memeber_set:
|
|
19564
|
+
memeber_set.remove(property_name)
|
|
19565
|
+
if len(memeber_set) > 0:
|
|
19566
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
19567
|
+
|
|
19568
|
+
|
|
19569
|
+
|
|
18915
19570
|
class ReleasedApprover(AbstractModel):
|
|
18916
19571
|
"""解除协议的签署人,如不指定,默认使用原流程中的签署人。<br/>
|
|
18917
19572
|
`注意:不支持更换C端(个人身份类型)签署人,如果原流程中含有C端签署人,默认使用原流程中的该C端签署人。`<br/>
|