tencentcloud-sdk-python-faceid 3.0.1130__tar.gz → 3.0.1133__tar.gz
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-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/setup.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud/faceid/v20180301/models.py +38 -0
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud_sdk_python_faceid.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-faceid-3.0.1133/tencentcloud_sdk_python_faceid.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-faceid-3.0.1130/tencentcloud_sdk_python_faceid.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/README.rst +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/setup.cfg +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud/faceid/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud/faceid/v20180301/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud/faceid/v20180301/errorcodes.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud/faceid/v20180301/faceid_client.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud_sdk_python_faceid.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud_sdk_python_faceid.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/tencentcloud_sdk_python_faceid.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-faceid',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1133"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Faceid SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -7560,6 +7560,10 @@ class PhoneVerificationRequest(AbstractModel):
|
|
|
7560
7560
|
:type Name: str
|
|
7561
7561
|
:param _Phone: 手机号
|
|
7562
7562
|
:type Phone: str
|
|
7563
|
+
:param _VerifyMode: 验证模式(详版/简版)。简版与详版价格不一致,详见[价格说明](https://cloud.tencent.com/document/product/1007/84321)。
|
|
7564
|
+
|
|
7565
|
+
枚举值:0(简版),1(详版)。默认值为0。
|
|
7566
|
+
:type VerifyMode: str
|
|
7563
7567
|
:param _CiphertextBlob: 有加密需求的用户,传入kms的CiphertextBlob,关于数据加密可查阅 <a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
|
|
7564
7568
|
:type CiphertextBlob: str
|
|
7565
7569
|
:param _EncryptList: 在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的IdCard,Name,Phone中的一个或多个。
|
|
@@ -7570,6 +7574,7 @@ class PhoneVerificationRequest(AbstractModel):
|
|
|
7570
7574
|
self._IdCard = None
|
|
7571
7575
|
self._Name = None
|
|
7572
7576
|
self._Phone = None
|
|
7577
|
+
self._VerifyMode = None
|
|
7573
7578
|
self._CiphertextBlob = None
|
|
7574
7579
|
self._EncryptList = None
|
|
7575
7580
|
self._Iv = None
|
|
@@ -7598,6 +7603,14 @@ class PhoneVerificationRequest(AbstractModel):
|
|
|
7598
7603
|
def Phone(self, Phone):
|
|
7599
7604
|
self._Phone = Phone
|
|
7600
7605
|
|
|
7606
|
+
@property
|
|
7607
|
+
def VerifyMode(self):
|
|
7608
|
+
return self._VerifyMode
|
|
7609
|
+
|
|
7610
|
+
@VerifyMode.setter
|
|
7611
|
+
def VerifyMode(self, VerifyMode):
|
|
7612
|
+
self._VerifyMode = VerifyMode
|
|
7613
|
+
|
|
7601
7614
|
@property
|
|
7602
7615
|
def CiphertextBlob(self):
|
|
7603
7616
|
return self._CiphertextBlob
|
|
@@ -7627,6 +7640,7 @@ class PhoneVerificationRequest(AbstractModel):
|
|
|
7627
7640
|
self._IdCard = params.get("IdCard")
|
|
7628
7641
|
self._Name = params.get("Name")
|
|
7629
7642
|
self._Phone = params.get("Phone")
|
|
7643
|
+
self._VerifyMode = params.get("VerifyMode")
|
|
7630
7644
|
self._CiphertextBlob = params.get("CiphertextBlob")
|
|
7631
7645
|
self._EncryptList = params.get("EncryptList")
|
|
7632
7646
|
self._Iv = params.get("Iv")
|
|
@@ -7663,12 +7677,27 @@ class PhoneVerificationResponse(AbstractModel):
|
|
|
7663
7677
|
:param _Isp: 运营商名称。
|
|
7664
7678
|
取值范围为["","移动","电信","联通"]
|
|
7665
7679
|
:type Isp: str
|
|
7680
|
+
:param _ResultDetail: 业务结果详细信息。(当VerifyMode配置"详版",且Result为"-4: 三要素信息不一致"时返回)
|
|
7681
|
+
|
|
7682
|
+
枚举值:
|
|
7683
|
+
|
|
7684
|
+
手机号码与姓名一致,与身份证号不一致;
|
|
7685
|
+
|
|
7686
|
+
手机号码身份证号一致,与姓名不一致;
|
|
7687
|
+
|
|
7688
|
+
手机号码与姓名和身份证号均不一致;
|
|
7689
|
+
|
|
7690
|
+
姓名和身份证号不一致;
|
|
7691
|
+
|
|
7692
|
+
其他不一致。
|
|
7693
|
+
:type ResultDetail: str
|
|
7666
7694
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7667
7695
|
:type RequestId: str
|
|
7668
7696
|
"""
|
|
7669
7697
|
self._Result = None
|
|
7670
7698
|
self._Description = None
|
|
7671
7699
|
self._Isp = None
|
|
7700
|
+
self._ResultDetail = None
|
|
7672
7701
|
self._RequestId = None
|
|
7673
7702
|
|
|
7674
7703
|
@property
|
|
@@ -7695,6 +7724,14 @@ class PhoneVerificationResponse(AbstractModel):
|
|
|
7695
7724
|
def Isp(self, Isp):
|
|
7696
7725
|
self._Isp = Isp
|
|
7697
7726
|
|
|
7727
|
+
@property
|
|
7728
|
+
def ResultDetail(self):
|
|
7729
|
+
return self._ResultDetail
|
|
7730
|
+
|
|
7731
|
+
@ResultDetail.setter
|
|
7732
|
+
def ResultDetail(self, ResultDetail):
|
|
7733
|
+
self._ResultDetail = ResultDetail
|
|
7734
|
+
|
|
7698
7735
|
@property
|
|
7699
7736
|
def RequestId(self):
|
|
7700
7737
|
return self._RequestId
|
|
@@ -7708,6 +7745,7 @@ class PhoneVerificationResponse(AbstractModel):
|
|
|
7708
7745
|
self._Result = params.get("Result")
|
|
7709
7746
|
self._Description = params.get("Description")
|
|
7710
7747
|
self._Isp = params.get("Isp")
|
|
7748
|
+
self._ResultDetail = params.get("ResultDetail")
|
|
7711
7749
|
self._RequestId = params.get("RequestId")
|
|
7712
7750
|
|
|
7713
7751
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1133
|
tencentcloud-sdk-python-faceid-3.0.1130/tencentcloud_sdk_python_faceid.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1130
|
{tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-faceid-3.0.1130 → tencentcloud-sdk-python-faceid-3.0.1133}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|