tencentcloud-sdk-python 3.0.1210__py2.py3-none-any.whl → 3.0.1212__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/billing/v20180709/models.py +155 -0
- tencentcloud/dlc/v20210125/models.py +139 -0
- tencentcloud/es/v20180416/es_client.py +1 -0
- tencentcloud/es/v20180416/models.py +126 -1
- tencentcloud/ess/v20201111/ess_client.py +58 -0
- tencentcloud/ess/v20201111/models.py +361 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +29 -0
- tencentcloud/essbasic/v20210526/models.py +149 -0
- tencentcloud/faceid/v20180301/models.py +2 -0
- tencentcloud/goosefs/v20220519/models.py +61 -0
- tencentcloud/hunyuan/v20230901/models.py +12 -0
- tencentcloud/iss/v20230517/errorcodes.py +15 -0
- tencentcloud/iss/v20230517/models.py +75 -0
- tencentcloud/lke/v20231130/errorcodes.py +1 -1
- tencentcloud/mna/v20210119/errorcodes.py +6 -0
- tencentcloud/mna/v20210119/mna_client.py +23 -0
- tencentcloud/mna/v20210119/models.py +120 -0
- tencentcloud/mongodb/v20180408/errorcodes.py +1 -1
- tencentcloud/mongodb/v20190725/errorcodes.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +59 -40
- tencentcloud/ms/v20180408/ms_client.py +69 -23
- tencentcloud/ocr/v20181119/models.py +1 -1
- tencentcloud/organization/v20210331/errorcodes.py +231 -0
- tencentcloud/organization/v20210331/models.py +12119 -4358
- tencentcloud/organization/v20210331/organization_client.py +1104 -0
- tencentcloud/tat/v20201028/errorcodes.py +9 -0
- tencentcloud/tat/v20201028/models.py +221 -1
- tencentcloud/tat/v20201028/tat_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +2 -3
- tencentcloud/trocket/v20230308/models.py +71 -7
- tencentcloud/trtc/v20190722/models.py +26 -0
- tencentcloud/vclm/v20240523/errorcodes.py +18 -0
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/RECORD +38 -38
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/top_level.txt +0 -0
@@ -2721,6 +2721,352 @@ class CreateBatchCancelFlowUrlResponse(AbstractModel):
|
|
2721
2721
|
self._RequestId = params.get("RequestId")
|
2722
2722
|
|
2723
2723
|
|
2724
|
+
class CreateBatchInitOrganizationUrlRequest(AbstractModel):
|
2725
|
+
"""CreateBatchInitOrganizationUrl请求参数结构体
|
2726
|
+
|
2727
|
+
"""
|
2728
|
+
|
2729
|
+
def __init__(self):
|
2730
|
+
r"""
|
2731
|
+
:param _Operator: 执行本接口操作的员工信息。
|
2732
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
2733
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
2734
|
+
:param _OperateTypes: 初始化操作类型
|
2735
|
+
<ul><li>CREATE_SEAL : 创建印章</li>
|
2736
|
+
<li>AUTH_JOIN_ORGANIZATION_GROUP : 加入集团企业</li>
|
2737
|
+
<li>OPEN_AUTO_SIGN :开通企业自动签署</li></ul>
|
2738
|
+
:type OperateTypes: list of str
|
2739
|
+
:param _OrganizationIds: 批量操作的企业Id列表,最大支持50个
|
2740
|
+
:type OrganizationIds: list of str
|
2741
|
+
:param _Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
2742
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
2743
|
+
"""
|
2744
|
+
self._Operator = None
|
2745
|
+
self._OperateTypes = None
|
2746
|
+
self._OrganizationIds = None
|
2747
|
+
self._Agent = None
|
2748
|
+
|
2749
|
+
@property
|
2750
|
+
def Operator(self):
|
2751
|
+
return self._Operator
|
2752
|
+
|
2753
|
+
@Operator.setter
|
2754
|
+
def Operator(self, Operator):
|
2755
|
+
self._Operator = Operator
|
2756
|
+
|
2757
|
+
@property
|
2758
|
+
def OperateTypes(self):
|
2759
|
+
return self._OperateTypes
|
2760
|
+
|
2761
|
+
@OperateTypes.setter
|
2762
|
+
def OperateTypes(self, OperateTypes):
|
2763
|
+
self._OperateTypes = OperateTypes
|
2764
|
+
|
2765
|
+
@property
|
2766
|
+
def OrganizationIds(self):
|
2767
|
+
return self._OrganizationIds
|
2768
|
+
|
2769
|
+
@OrganizationIds.setter
|
2770
|
+
def OrganizationIds(self, OrganizationIds):
|
2771
|
+
self._OrganizationIds = OrganizationIds
|
2772
|
+
|
2773
|
+
@property
|
2774
|
+
def Agent(self):
|
2775
|
+
return self._Agent
|
2776
|
+
|
2777
|
+
@Agent.setter
|
2778
|
+
def Agent(self, Agent):
|
2779
|
+
self._Agent = Agent
|
2780
|
+
|
2781
|
+
|
2782
|
+
def _deserialize(self, params):
|
2783
|
+
if params.get("Operator") is not None:
|
2784
|
+
self._Operator = UserInfo()
|
2785
|
+
self._Operator._deserialize(params.get("Operator"))
|
2786
|
+
self._OperateTypes = params.get("OperateTypes")
|
2787
|
+
self._OrganizationIds = params.get("OrganizationIds")
|
2788
|
+
if params.get("Agent") is not None:
|
2789
|
+
self._Agent = Agent()
|
2790
|
+
self._Agent._deserialize(params.get("Agent"))
|
2791
|
+
memeber_set = set(params.keys())
|
2792
|
+
for name, value in vars(self).items():
|
2793
|
+
property_name = name[1:]
|
2794
|
+
if property_name in memeber_set:
|
2795
|
+
memeber_set.remove(property_name)
|
2796
|
+
if len(memeber_set) > 0:
|
2797
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2798
|
+
|
2799
|
+
|
2800
|
+
|
2801
|
+
class CreateBatchInitOrganizationUrlResponse(AbstractModel):
|
2802
|
+
"""CreateBatchInitOrganizationUrl返回参数结构体
|
2803
|
+
|
2804
|
+
"""
|
2805
|
+
|
2806
|
+
def __init__(self):
|
2807
|
+
r"""
|
2808
|
+
:param _MiniAppPath: 小程序路径
|
2809
|
+
:type MiniAppPath: str
|
2810
|
+
:param _OperateLongUrl: 操作长链
|
2811
|
+
:type OperateLongUrl: str
|
2812
|
+
:param _OperateShortUrl: 操作短链
|
2813
|
+
:type OperateShortUrl: str
|
2814
|
+
:param _QRCodeUrl: 操作二维码
|
2815
|
+
:type QRCodeUrl: str
|
2816
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2817
|
+
:type RequestId: str
|
2818
|
+
"""
|
2819
|
+
self._MiniAppPath = None
|
2820
|
+
self._OperateLongUrl = None
|
2821
|
+
self._OperateShortUrl = None
|
2822
|
+
self._QRCodeUrl = None
|
2823
|
+
self._RequestId = None
|
2824
|
+
|
2825
|
+
@property
|
2826
|
+
def MiniAppPath(self):
|
2827
|
+
return self._MiniAppPath
|
2828
|
+
|
2829
|
+
@MiniAppPath.setter
|
2830
|
+
def MiniAppPath(self, MiniAppPath):
|
2831
|
+
self._MiniAppPath = MiniAppPath
|
2832
|
+
|
2833
|
+
@property
|
2834
|
+
def OperateLongUrl(self):
|
2835
|
+
return self._OperateLongUrl
|
2836
|
+
|
2837
|
+
@OperateLongUrl.setter
|
2838
|
+
def OperateLongUrl(self, OperateLongUrl):
|
2839
|
+
self._OperateLongUrl = OperateLongUrl
|
2840
|
+
|
2841
|
+
@property
|
2842
|
+
def OperateShortUrl(self):
|
2843
|
+
return self._OperateShortUrl
|
2844
|
+
|
2845
|
+
@OperateShortUrl.setter
|
2846
|
+
def OperateShortUrl(self, OperateShortUrl):
|
2847
|
+
self._OperateShortUrl = OperateShortUrl
|
2848
|
+
|
2849
|
+
@property
|
2850
|
+
def QRCodeUrl(self):
|
2851
|
+
return self._QRCodeUrl
|
2852
|
+
|
2853
|
+
@QRCodeUrl.setter
|
2854
|
+
def QRCodeUrl(self, QRCodeUrl):
|
2855
|
+
self._QRCodeUrl = QRCodeUrl
|
2856
|
+
|
2857
|
+
@property
|
2858
|
+
def RequestId(self):
|
2859
|
+
return self._RequestId
|
2860
|
+
|
2861
|
+
@RequestId.setter
|
2862
|
+
def RequestId(self, RequestId):
|
2863
|
+
self._RequestId = RequestId
|
2864
|
+
|
2865
|
+
|
2866
|
+
def _deserialize(self, params):
|
2867
|
+
self._MiniAppPath = params.get("MiniAppPath")
|
2868
|
+
self._OperateLongUrl = params.get("OperateLongUrl")
|
2869
|
+
self._OperateShortUrl = params.get("OperateShortUrl")
|
2870
|
+
self._QRCodeUrl = params.get("QRCodeUrl")
|
2871
|
+
self._RequestId = params.get("RequestId")
|
2872
|
+
|
2873
|
+
|
2874
|
+
class CreateBatchOrganizationAuthorizationUrlRequest(AbstractModel):
|
2875
|
+
"""CreateBatchOrganizationAuthorizationUrl请求参数结构体
|
2876
|
+
|
2877
|
+
"""
|
2878
|
+
|
2879
|
+
def __init__(self):
|
2880
|
+
r"""
|
2881
|
+
:param _Operator: 执行本接口操作的员工信息。
|
2882
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
2883
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
2884
|
+
:param _AdminName: 组织机构超管姓名。 在注册流程中,必须是超管本人进行操作。
|
2885
|
+
此参数需要跟[创建企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks)中 AdminName 保持一致。
|
2886
|
+
:type AdminName: str
|
2887
|
+
:param _AdminMobile: 组织机构超管手机号。 在注册流程中,必须是超管本人进行操作。此参数需要跟[创建企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks)中 Admin Mobile保持一致。
|
2888
|
+
:type AdminMobile: str
|
2889
|
+
:param _Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
2890
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
2891
|
+
:param _SubTaskIds: 企业批量认证链接的子任务 SubTaskId,该 SubTaskId 是通过接口 查询企业批量认证链接 DescribeBatchOrganizationRegistrationUrls 获得。此参数需与超管个人三要素(AdminName,AdminMobile,AdminIdCardNumber)配合使用。若 SubTaskId 不属于传入的超级管理员,将进行筛选。
|
2892
|
+
:type SubTaskIds: list of str
|
2893
|
+
:param _AdminIdCardType: 组织机构超管证件类型支持以下类型
|
2894
|
+
- ID_CARD : 居民身份证 (默认值)
|
2895
|
+
- HONGKONG_AND_MACAO : 港澳居民来往内地通行证
|
2896
|
+
- HONGKONG_MACAO_AND_TAIWAN : 港澳台居民居住证(格式同居民身份证)
|
2897
|
+
此参数需要跟[创建企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks)中 AdminIdCardType保持一致。
|
2898
|
+
:type AdminIdCardType: str
|
2899
|
+
:param _AdminIdCardNumber: 组织机构超管证件号。 在注册流程中,必须是超管本人进行操作。此参数需要跟[创建企业批量认证链接](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks)中 AdminIdCardNumber保持一致。
|
2900
|
+
:type AdminIdCardNumber: str
|
2901
|
+
:param _Endpoint: 要跳转的链接类型<ul><li> **HTTP**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型 ,此时返回长链 (默认类型)</li><li>**HTTP_SHORT_URL**:跳转电子签小程序的http_url, 短信通知或者H5跳转适合此类型,此时返回短链</li><li>**APP**: 第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型</li><li>**QR_CODE**: 跳转电子签小程序的http_url的二维码形式, 可以在页面展示适合此类型</li></ul>
|
2902
|
+
:type Endpoint: str
|
2903
|
+
"""
|
2904
|
+
self._Operator = None
|
2905
|
+
self._AdminName = None
|
2906
|
+
self._AdminMobile = None
|
2907
|
+
self._Agent = None
|
2908
|
+
self._SubTaskIds = None
|
2909
|
+
self._AdminIdCardType = None
|
2910
|
+
self._AdminIdCardNumber = None
|
2911
|
+
self._Endpoint = None
|
2912
|
+
|
2913
|
+
@property
|
2914
|
+
def Operator(self):
|
2915
|
+
return self._Operator
|
2916
|
+
|
2917
|
+
@Operator.setter
|
2918
|
+
def Operator(self, Operator):
|
2919
|
+
self._Operator = Operator
|
2920
|
+
|
2921
|
+
@property
|
2922
|
+
def AdminName(self):
|
2923
|
+
return self._AdminName
|
2924
|
+
|
2925
|
+
@AdminName.setter
|
2926
|
+
def AdminName(self, AdminName):
|
2927
|
+
self._AdminName = AdminName
|
2928
|
+
|
2929
|
+
@property
|
2930
|
+
def AdminMobile(self):
|
2931
|
+
return self._AdminMobile
|
2932
|
+
|
2933
|
+
@AdminMobile.setter
|
2934
|
+
def AdminMobile(self, AdminMobile):
|
2935
|
+
self._AdminMobile = AdminMobile
|
2936
|
+
|
2937
|
+
@property
|
2938
|
+
def Agent(self):
|
2939
|
+
return self._Agent
|
2940
|
+
|
2941
|
+
@Agent.setter
|
2942
|
+
def Agent(self, Agent):
|
2943
|
+
self._Agent = Agent
|
2944
|
+
|
2945
|
+
@property
|
2946
|
+
def SubTaskIds(self):
|
2947
|
+
return self._SubTaskIds
|
2948
|
+
|
2949
|
+
@SubTaskIds.setter
|
2950
|
+
def SubTaskIds(self, SubTaskIds):
|
2951
|
+
self._SubTaskIds = SubTaskIds
|
2952
|
+
|
2953
|
+
@property
|
2954
|
+
def AdminIdCardType(self):
|
2955
|
+
return self._AdminIdCardType
|
2956
|
+
|
2957
|
+
@AdminIdCardType.setter
|
2958
|
+
def AdminIdCardType(self, AdminIdCardType):
|
2959
|
+
self._AdminIdCardType = AdminIdCardType
|
2960
|
+
|
2961
|
+
@property
|
2962
|
+
def AdminIdCardNumber(self):
|
2963
|
+
return self._AdminIdCardNumber
|
2964
|
+
|
2965
|
+
@AdminIdCardNumber.setter
|
2966
|
+
def AdminIdCardNumber(self, AdminIdCardNumber):
|
2967
|
+
self._AdminIdCardNumber = AdminIdCardNumber
|
2968
|
+
|
2969
|
+
@property
|
2970
|
+
def Endpoint(self):
|
2971
|
+
return self._Endpoint
|
2972
|
+
|
2973
|
+
@Endpoint.setter
|
2974
|
+
def Endpoint(self, Endpoint):
|
2975
|
+
self._Endpoint = Endpoint
|
2976
|
+
|
2977
|
+
|
2978
|
+
def _deserialize(self, params):
|
2979
|
+
if params.get("Operator") is not None:
|
2980
|
+
self._Operator = UserInfo()
|
2981
|
+
self._Operator._deserialize(params.get("Operator"))
|
2982
|
+
self._AdminName = params.get("AdminName")
|
2983
|
+
self._AdminMobile = params.get("AdminMobile")
|
2984
|
+
if params.get("Agent") is not None:
|
2985
|
+
self._Agent = Agent()
|
2986
|
+
self._Agent._deserialize(params.get("Agent"))
|
2987
|
+
self._SubTaskIds = params.get("SubTaskIds")
|
2988
|
+
self._AdminIdCardType = params.get("AdminIdCardType")
|
2989
|
+
self._AdminIdCardNumber = params.get("AdminIdCardNumber")
|
2990
|
+
self._Endpoint = params.get("Endpoint")
|
2991
|
+
memeber_set = set(params.keys())
|
2992
|
+
for name, value in vars(self).items():
|
2993
|
+
property_name = name[1:]
|
2994
|
+
if property_name in memeber_set:
|
2995
|
+
memeber_set.remove(property_name)
|
2996
|
+
if len(memeber_set) > 0:
|
2997
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2998
|
+
|
2999
|
+
|
3000
|
+
|
3001
|
+
class CreateBatchOrganizationAuthorizationUrlResponse(AbstractModel):
|
3002
|
+
"""CreateBatchOrganizationAuthorizationUrl返回参数结构体
|
3003
|
+
|
3004
|
+
"""
|
3005
|
+
|
3006
|
+
def __init__(self):
|
3007
|
+
r"""
|
3008
|
+
:param _AuthUrl: 批量企业注册链接-单链接包含多条认证流,根据Endpoint的不同设置,返回不同的链接地址。失效时间:7天
|
3009
|
+
跳转链接, 链接的有效期根据企业,员工状态和终端等有区别, 可以参考下表
|
3010
|
+
<table> <thead> <tr> <th>Endpoint</th> <th>示例</th> <th>链接有效期限</th> </tr> </thead> <tbody>
|
3011
|
+
<tr> <td>HTTP</td> <td>https://res.ess.tencent.cn/cdn/h5-activity-dev/jump-mp.html?to=AUTHORIZATION_ENTERPRISE_FOR_BATCH_SUBMIT&shortKey=yDCHHURDfBxSB2rj2Bfa</td> <td>7天</td> </tr>
|
3012
|
+
<tr> <td>HTTP_SHORT_URL</td> <td>https://test.essurl.cn/8gDKUBAWK8</td> <td>7天</td> </tr>
|
3013
|
+
<tr> <td>APP</td> <td>pages/guide/index?to=AUTHORIZATION_ENTERPRISE_FOR_BATCH_SUBMIT&shortKey=yDCHpURDfR6iEkdpsDde</td> <td>7天</td> </tr><tr> <td>QR_CODE</td> <td>https://dyn.test.ess.tencent.cn/imgs/qrcode_urls/authorization_enterprise_for_batch_submit/yDCHHUUckpbdauq9UEjnoFDCCumAMmv1.png</td> <td>7天</td> </tr> </tbody> </table>
|
3014
|
+
注:
|
3015
|
+
`1.创建的链接应避免被转义,如:&被转义为\u0026;如使用Postman请求后,请选择响应类型为 JSON,否则链接将被转义`
|
3016
|
+
|
3017
|
+
:type AuthUrl: str
|
3018
|
+
:param _ErrorMessages: 认证流认证失败信息
|
3019
|
+
:type ErrorMessages: list of str
|
3020
|
+
:param _ExpireTime: 链接过期时间,为 7 天后,创建时间,格式为Unix标准时间戳(秒)。
|
3021
|
+
:type ExpireTime: int
|
3022
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3023
|
+
:type RequestId: str
|
3024
|
+
"""
|
3025
|
+
self._AuthUrl = None
|
3026
|
+
self._ErrorMessages = None
|
3027
|
+
self._ExpireTime = None
|
3028
|
+
self._RequestId = None
|
3029
|
+
|
3030
|
+
@property
|
3031
|
+
def AuthUrl(self):
|
3032
|
+
return self._AuthUrl
|
3033
|
+
|
3034
|
+
@AuthUrl.setter
|
3035
|
+
def AuthUrl(self, AuthUrl):
|
3036
|
+
self._AuthUrl = AuthUrl
|
3037
|
+
|
3038
|
+
@property
|
3039
|
+
def ErrorMessages(self):
|
3040
|
+
return self._ErrorMessages
|
3041
|
+
|
3042
|
+
@ErrorMessages.setter
|
3043
|
+
def ErrorMessages(self, ErrorMessages):
|
3044
|
+
self._ErrorMessages = ErrorMessages
|
3045
|
+
|
3046
|
+
@property
|
3047
|
+
def ExpireTime(self):
|
3048
|
+
return self._ExpireTime
|
3049
|
+
|
3050
|
+
@ExpireTime.setter
|
3051
|
+
def ExpireTime(self, ExpireTime):
|
3052
|
+
self._ExpireTime = ExpireTime
|
3053
|
+
|
3054
|
+
@property
|
3055
|
+
def RequestId(self):
|
3056
|
+
return self._RequestId
|
3057
|
+
|
3058
|
+
@RequestId.setter
|
3059
|
+
def RequestId(self, RequestId):
|
3060
|
+
self._RequestId = RequestId
|
3061
|
+
|
3062
|
+
|
3063
|
+
def _deserialize(self, params):
|
3064
|
+
self._AuthUrl = params.get("AuthUrl")
|
3065
|
+
self._ErrorMessages = params.get("ErrorMessages")
|
3066
|
+
self._ExpireTime = params.get("ExpireTime")
|
3067
|
+
self._RequestId = params.get("RequestId")
|
3068
|
+
|
3069
|
+
|
2724
3070
|
class CreateBatchOrganizationRegistrationTasksRequest(AbstractModel):
|
2725
3071
|
"""CreateBatchOrganizationRegistrationTasks请求参数结构体
|
2726
3072
|
|
@@ -20904,6 +21250,11 @@ WECHAT-微信通知
|
|
20904
21250
|
<li> 5 :设备指纹识别</li>
|
20905
21251
|
<li> 6 :设备面容识别</li></ul>
|
20906
21252
|
:type ApproverSignTypes: list of int
|
21253
|
+
:param _NoTransfer: 签署方是否可以转他人处理
|
21254
|
+
|
21255
|
+
<ul><li> **false** : ( 默认)可以转他人处理</li>
|
21256
|
+
<li> **true** :不可以转他人处理</li></ul>
|
21257
|
+
:type NoTransfer: bool
|
20907
21258
|
"""
|
20908
21259
|
self._RecipientId = None
|
20909
21260
|
self._RecipientType = None
|
@@ -20920,6 +21271,7 @@ WECHAT-微信通知
|
|
20920
21271
|
self._RecipientExtra = None
|
20921
21272
|
self._ApproverVerifyTypes = None
|
20922
21273
|
self._ApproverSignTypes = None
|
21274
|
+
self._NoTransfer = None
|
20923
21275
|
|
20924
21276
|
@property
|
20925
21277
|
def RecipientId(self):
|
@@ -21041,6 +21393,14 @@ WECHAT-微信通知
|
|
21041
21393
|
def ApproverSignTypes(self, ApproverSignTypes):
|
21042
21394
|
self._ApproverSignTypes = ApproverSignTypes
|
21043
21395
|
|
21396
|
+
@property
|
21397
|
+
def NoTransfer(self):
|
21398
|
+
return self._NoTransfer
|
21399
|
+
|
21400
|
+
@NoTransfer.setter
|
21401
|
+
def NoTransfer(self, NoTransfer):
|
21402
|
+
self._NoTransfer = NoTransfer
|
21403
|
+
|
21044
21404
|
|
21045
21405
|
def _deserialize(self, params):
|
21046
21406
|
self._RecipientId = params.get("RecipientId")
|
@@ -21058,6 +21418,7 @@ WECHAT-微信通知
|
|
21058
21418
|
self._RecipientExtra = params.get("RecipientExtra")
|
21059
21419
|
self._ApproverVerifyTypes = params.get("ApproverVerifyTypes")
|
21060
21420
|
self._ApproverSignTypes = params.get("ApproverSignTypes")
|
21421
|
+
self._NoTransfer = params.get("NoTransfer")
|
21061
21422
|
memeber_set = set(params.keys())
|
21062
21423
|
for name, value in vars(self).items():
|
21063
21424
|
property_name = name[1:]
|
@@ -1499,6 +1499,35 @@ class EssbasicClient(AbstractClient):
|
|
1499
1499
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1500
1500
|
|
1501
1501
|
|
1502
|
+
def CreateBatchInitOrganizationUrl(self, request):
|
1503
|
+
"""支持企业进行批量初始化操作:
|
1504
|
+
|
1505
|
+
此接口存在以下限制:
|
1506
|
+
1. 批量操作的企业需要已经完成电子签的认证流程。
|
1507
|
+
2. 通过此接口生成的链接在小程序端进行操作时,操作人需要是<font color="red">所有企业的超管或法人</font>。
|
1508
|
+
3. 批量操作的企业,需要是本方第三方应用下的企业。
|
1509
|
+
4. <font color="red">操作链接过期时间默认为生成链接后7天。</font>
|
1510
|
+
|
1511
|
+
:param request: Request instance for CreateBatchInitOrganizationUrl.
|
1512
|
+
:type request: :class:`tencentcloud.essbasic.v20210526.models.CreateBatchInitOrganizationUrlRequest`
|
1513
|
+
:rtype: :class:`tencentcloud.essbasic.v20210526.models.CreateBatchInitOrganizationUrlResponse`
|
1514
|
+
|
1515
|
+
"""
|
1516
|
+
try:
|
1517
|
+
params = request._serialize()
|
1518
|
+
headers = request.headers
|
1519
|
+
body = self.call("CreateBatchInitOrganizationUrl", params, headers=headers)
|
1520
|
+
response = json.loads(body)
|
1521
|
+
model = models.CreateBatchInitOrganizationUrlResponse()
|
1522
|
+
model._deserialize(response["Response"])
|
1523
|
+
return model
|
1524
|
+
except Exception as e:
|
1525
|
+
if isinstance(e, TencentCloudSDKException):
|
1526
|
+
raise
|
1527
|
+
else:
|
1528
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1529
|
+
|
1530
|
+
|
1502
1531
|
def CreateBatchOrganizationRegistrationTasks(self, request):
|
1503
1532
|
"""该接口用于批量创建企业认证链接, 可以支持PC浏览器,H5和小程序三种途径。
|
1504
1533
|
此接口为异步提交任务接口,需要与[查询子企业批量认证链接](https://qcloudimg.tencent-cloud.cn/raw/1d3737991b2a3be78002bd78a47d6917.png)配合使用,整体流程如下图。
|
@@ -9618,6 +9618,140 @@ class ComponentLimit(AbstractModel):
|
|
9618
9618
|
|
9619
9619
|
|
9620
9620
|
|
9621
|
+
class CreateBatchInitOrganizationUrlRequest(AbstractModel):
|
9622
|
+
"""CreateBatchInitOrganizationUrl请求参数结构体
|
9623
|
+
|
9624
|
+
"""
|
9625
|
+
|
9626
|
+
def __init__(self):
|
9627
|
+
r"""
|
9628
|
+
:param _Agent: 应用相关信息。 此接口Agent.AppId 必填。
|
9629
|
+
:type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
|
9630
|
+
:param _OperateTypes: 初始化操作类型
|
9631
|
+
<ul><li>CREATE_SEAL : 创建印章</li>
|
9632
|
+
<li>OPEN_AUTO_SIGN :开通企业自动签署</li></ul>
|
9633
|
+
:type OperateTypes: list of str
|
9634
|
+
:param _ProxyOrganizationOpenIds: 批量操作的企业列表在第三方平台的企业Id列表,即ProxyOrganizationOpenId列表,最大支持50个
|
9635
|
+
:type ProxyOrganizationOpenIds: list of str
|
9636
|
+
"""
|
9637
|
+
self._Agent = None
|
9638
|
+
self._OperateTypes = None
|
9639
|
+
self._ProxyOrganizationOpenIds = None
|
9640
|
+
|
9641
|
+
@property
|
9642
|
+
def Agent(self):
|
9643
|
+
return self._Agent
|
9644
|
+
|
9645
|
+
@Agent.setter
|
9646
|
+
def Agent(self, Agent):
|
9647
|
+
self._Agent = Agent
|
9648
|
+
|
9649
|
+
@property
|
9650
|
+
def OperateTypes(self):
|
9651
|
+
return self._OperateTypes
|
9652
|
+
|
9653
|
+
@OperateTypes.setter
|
9654
|
+
def OperateTypes(self, OperateTypes):
|
9655
|
+
self._OperateTypes = OperateTypes
|
9656
|
+
|
9657
|
+
@property
|
9658
|
+
def ProxyOrganizationOpenIds(self):
|
9659
|
+
return self._ProxyOrganizationOpenIds
|
9660
|
+
|
9661
|
+
@ProxyOrganizationOpenIds.setter
|
9662
|
+
def ProxyOrganizationOpenIds(self, ProxyOrganizationOpenIds):
|
9663
|
+
self._ProxyOrganizationOpenIds = ProxyOrganizationOpenIds
|
9664
|
+
|
9665
|
+
|
9666
|
+
def _deserialize(self, params):
|
9667
|
+
if params.get("Agent") is not None:
|
9668
|
+
self._Agent = Agent()
|
9669
|
+
self._Agent._deserialize(params.get("Agent"))
|
9670
|
+
self._OperateTypes = params.get("OperateTypes")
|
9671
|
+
self._ProxyOrganizationOpenIds = params.get("ProxyOrganizationOpenIds")
|
9672
|
+
memeber_set = set(params.keys())
|
9673
|
+
for name, value in vars(self).items():
|
9674
|
+
property_name = name[1:]
|
9675
|
+
if property_name in memeber_set:
|
9676
|
+
memeber_set.remove(property_name)
|
9677
|
+
if len(memeber_set) > 0:
|
9678
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
9679
|
+
|
9680
|
+
|
9681
|
+
|
9682
|
+
class CreateBatchInitOrganizationUrlResponse(AbstractModel):
|
9683
|
+
"""CreateBatchInitOrganizationUrl返回参数结构体
|
9684
|
+
|
9685
|
+
"""
|
9686
|
+
|
9687
|
+
def __init__(self):
|
9688
|
+
r"""
|
9689
|
+
:param _MiniAppPath: 小程序路径
|
9690
|
+
:type MiniAppPath: str
|
9691
|
+
:param _OperateLongUrl: 操作长链
|
9692
|
+
:type OperateLongUrl: str
|
9693
|
+
:param _OperateShortUrl: 操作短链
|
9694
|
+
:type OperateShortUrl: str
|
9695
|
+
:param _QRCodeUrl: 操作二维码
|
9696
|
+
:type QRCodeUrl: str
|
9697
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9698
|
+
:type RequestId: str
|
9699
|
+
"""
|
9700
|
+
self._MiniAppPath = None
|
9701
|
+
self._OperateLongUrl = None
|
9702
|
+
self._OperateShortUrl = None
|
9703
|
+
self._QRCodeUrl = None
|
9704
|
+
self._RequestId = None
|
9705
|
+
|
9706
|
+
@property
|
9707
|
+
def MiniAppPath(self):
|
9708
|
+
return self._MiniAppPath
|
9709
|
+
|
9710
|
+
@MiniAppPath.setter
|
9711
|
+
def MiniAppPath(self, MiniAppPath):
|
9712
|
+
self._MiniAppPath = MiniAppPath
|
9713
|
+
|
9714
|
+
@property
|
9715
|
+
def OperateLongUrl(self):
|
9716
|
+
return self._OperateLongUrl
|
9717
|
+
|
9718
|
+
@OperateLongUrl.setter
|
9719
|
+
def OperateLongUrl(self, OperateLongUrl):
|
9720
|
+
self._OperateLongUrl = OperateLongUrl
|
9721
|
+
|
9722
|
+
@property
|
9723
|
+
def OperateShortUrl(self):
|
9724
|
+
return self._OperateShortUrl
|
9725
|
+
|
9726
|
+
@OperateShortUrl.setter
|
9727
|
+
def OperateShortUrl(self, OperateShortUrl):
|
9728
|
+
self._OperateShortUrl = OperateShortUrl
|
9729
|
+
|
9730
|
+
@property
|
9731
|
+
def QRCodeUrl(self):
|
9732
|
+
return self._QRCodeUrl
|
9733
|
+
|
9734
|
+
@QRCodeUrl.setter
|
9735
|
+
def QRCodeUrl(self, QRCodeUrl):
|
9736
|
+
self._QRCodeUrl = QRCodeUrl
|
9737
|
+
|
9738
|
+
@property
|
9739
|
+
def RequestId(self):
|
9740
|
+
return self._RequestId
|
9741
|
+
|
9742
|
+
@RequestId.setter
|
9743
|
+
def RequestId(self, RequestId):
|
9744
|
+
self._RequestId = RequestId
|
9745
|
+
|
9746
|
+
|
9747
|
+
def _deserialize(self, params):
|
9748
|
+
self._MiniAppPath = params.get("MiniAppPath")
|
9749
|
+
self._OperateLongUrl = params.get("OperateLongUrl")
|
9750
|
+
self._OperateShortUrl = params.get("OperateShortUrl")
|
9751
|
+
self._QRCodeUrl = params.get("QRCodeUrl")
|
9752
|
+
self._RequestId = params.get("RequestId")
|
9753
|
+
|
9754
|
+
|
9621
9755
|
class CreateBatchOrganizationRegistrationTasksRequest(AbstractModel):
|
9622
9756
|
"""CreateBatchOrganizationRegistrationTasks请求参数结构体
|
9623
9757
|
|
@@ -18478,6 +18612,11 @@ false-否
|
|
18478
18612
|
<li> 5 :设备指纹识别</li>
|
18479
18613
|
<li> 6 :设备面容识别</li></ul>
|
18480
18614
|
:type ApproverSignTypes: list of int
|
18615
|
+
:param _NoTransfer: 签署方是否可以转他人处理
|
18616
|
+
|
18617
|
+
<ul><li> **false** : ( 默认)可以转他人处理</li>
|
18618
|
+
<li> **true** :不可以转他人处理</li></ul>
|
18619
|
+
:type NoTransfer: bool
|
18481
18620
|
"""
|
18482
18621
|
self._RecipientId = None
|
18483
18622
|
self._RecipientType = None
|
@@ -18490,6 +18629,7 @@ false-否
|
|
18490
18629
|
self._IsPromoter = None
|
18491
18630
|
self._ApproverVerifyTypes = None
|
18492
18631
|
self._ApproverSignTypes = None
|
18632
|
+
self._NoTransfer = None
|
18493
18633
|
|
18494
18634
|
@property
|
18495
18635
|
def RecipientId(self):
|
@@ -18579,6 +18719,14 @@ false-否
|
|
18579
18719
|
def ApproverSignTypes(self, ApproverSignTypes):
|
18580
18720
|
self._ApproverSignTypes = ApproverSignTypes
|
18581
18721
|
|
18722
|
+
@property
|
18723
|
+
def NoTransfer(self):
|
18724
|
+
return self._NoTransfer
|
18725
|
+
|
18726
|
+
@NoTransfer.setter
|
18727
|
+
def NoTransfer(self, NoTransfer):
|
18728
|
+
self._NoTransfer = NoTransfer
|
18729
|
+
|
18582
18730
|
|
18583
18731
|
def _deserialize(self, params):
|
18584
18732
|
self._RecipientId = params.get("RecipientId")
|
@@ -18592,6 +18740,7 @@ false-否
|
|
18592
18740
|
self._IsPromoter = params.get("IsPromoter")
|
18593
18741
|
self._ApproverVerifyTypes = params.get("ApproverVerifyTypes")
|
18594
18742
|
self._ApproverSignTypes = params.get("ApproverSignTypes")
|
18743
|
+
self._NoTransfer = params.get("NoTransfer")
|
18595
18744
|
memeber_set = set(params.keys())
|
18596
18745
|
for name, value in vars(self).items():
|
18597
18746
|
property_name = name[1:]
|
@@ -314,6 +314,7 @@ class BankCard4EVerificationResponse(AbstractModel):
|
|
314
314
|
'-5': '手机号码不合法'
|
315
315
|
'-18': '验证中心服务繁忙'
|
316
316
|
'-19': '验证次数超限,请次日重试'
|
317
|
+
'-20': '该证件号暂不支持核验,当前仅支持二代身份证'
|
317
318
|
:type Result: str
|
318
319
|
:param _Description: 业务结果描述。
|
319
320
|
:type Description: str
|
@@ -468,6 +469,7 @@ class BankCardVerificationResponse(AbstractModel):
|
|
468
469
|
'-4': '银行卡号码有误'
|
469
470
|
'-17': '验证中心服务繁忙'
|
470
471
|
'-18': '验证次数超限,请次日重试'
|
472
|
+
'-19': '该证件号暂不支持核验,当前仅支持二代身份证'
|
471
473
|
:type Result: str
|
472
474
|
:param _Description: 业务结果描述。
|
473
475
|
:type Description: str
|