tencentcloud-sdk-python-intl-en 3.0.1115__py2.py3-none-any.whl → 3.0.1117__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-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/ccc_client.py +1 -1
- tencentcloud/ccc/v20200210/models.py +121 -0
- tencentcloud/faceid/v20180301/faceid_client.py +1 -1
- tencentcloud/faceid/v20180301/models.py +869 -83
- {tencentcloud_sdk_python_intl_en-3.0.1115.dist-info → tencentcloud_sdk_python_intl_en-3.0.1117.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1115.dist-info → tencentcloud_sdk_python_intl_en-3.0.1117.dist-info}/RECORD +9 -9
- {tencentcloud_sdk_python_intl_en-3.0.1115.dist-info → tencentcloud_sdk_python_intl_en-3.0.1117.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1115.dist-info → tencentcloud_sdk_python_intl_en-3.0.1117.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -121,7 +121,7 @@ class CccClient(AbstractClient):
|
|
|
121
121
|
def CreateAICall(self, request):
|
|
122
122
|
"""Used to make outbound calls by invoking AI models, limited to the use of proprietary phone numbers. Currently, the Advanced version seats are available for a **limited time** free trial.
|
|
123
123
|
|
|
124
|
-
Before initiating a call, please ensure your AI model is compatible with OpenAI, Azure, or Minimax protocols, and visit the model provider's website to obtain relevant authentication information. For detailed feature descriptions, please refer to the documentation [Tencent Cloud Contact Center AI Call Platform](https://
|
|
124
|
+
Before initiating a call, please ensure your AI model is compatible with OpenAI, Azure, or Minimax protocols, and visit the model provider's website to obtain relevant authentication information. For detailed feature descriptions, please refer to the documentation [Tencent Cloud Contact Center AI Call Platform](https://www.tencentcloud.com/document/product/1229/66889).
|
|
125
125
|
|
|
126
126
|
:param request: Request instance for CreateAICall.
|
|
127
127
|
:type request: :class:`tencentcloud.ccc.v20200210.models.CreateAICallRequest`
|
|
@@ -18,6 +18,72 @@ import warnings
|
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
class AITransferItem(AbstractModel):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def __init__(self):
|
|
27
|
+
r"""
|
|
28
|
+
:param _TransferFunctionName:
|
|
29
|
+
:type TransferFunctionName: str
|
|
30
|
+
:param _TransferFunctionDesc:
|
|
31
|
+
:type TransferFunctionDesc: str
|
|
32
|
+
:param _TransferSkillGroupId:
|
|
33
|
+
:type TransferSkillGroupId: int
|
|
34
|
+
"""
|
|
35
|
+
self._TransferFunctionName = None
|
|
36
|
+
self._TransferFunctionDesc = None
|
|
37
|
+
self._TransferSkillGroupId = None
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def TransferFunctionName(self):
|
|
41
|
+
"""
|
|
42
|
+
:rtype: str
|
|
43
|
+
"""
|
|
44
|
+
return self._TransferFunctionName
|
|
45
|
+
|
|
46
|
+
@TransferFunctionName.setter
|
|
47
|
+
def TransferFunctionName(self, TransferFunctionName):
|
|
48
|
+
self._TransferFunctionName = TransferFunctionName
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
def TransferFunctionDesc(self):
|
|
52
|
+
"""
|
|
53
|
+
:rtype: str
|
|
54
|
+
"""
|
|
55
|
+
return self._TransferFunctionDesc
|
|
56
|
+
|
|
57
|
+
@TransferFunctionDesc.setter
|
|
58
|
+
def TransferFunctionDesc(self, TransferFunctionDesc):
|
|
59
|
+
self._TransferFunctionDesc = TransferFunctionDesc
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
def TransferSkillGroupId(self):
|
|
63
|
+
"""
|
|
64
|
+
:rtype: int
|
|
65
|
+
"""
|
|
66
|
+
return self._TransferSkillGroupId
|
|
67
|
+
|
|
68
|
+
@TransferSkillGroupId.setter
|
|
69
|
+
def TransferSkillGroupId(self, TransferSkillGroupId):
|
|
70
|
+
self._TransferSkillGroupId = TransferSkillGroupId
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def _deserialize(self, params):
|
|
74
|
+
self._TransferFunctionName = params.get("TransferFunctionName")
|
|
75
|
+
self._TransferFunctionDesc = params.get("TransferFunctionDesc")
|
|
76
|
+
self._TransferSkillGroupId = params.get("TransferSkillGroupId")
|
|
77
|
+
memeber_set = set(params.keys())
|
|
78
|
+
for name, value in vars(self).items():
|
|
79
|
+
property_name = name[1:]
|
|
80
|
+
if property_name in memeber_set:
|
|
81
|
+
memeber_set.remove(property_name)
|
|
82
|
+
if len(memeber_set) > 0:
|
|
83
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
21
87
|
class AbortAgentCruiseDialingCampaignRequest(AbstractModel):
|
|
22
88
|
"""AbortAgentCruiseDialingCampaign request structure.
|
|
23
89
|
|
|
@@ -1253,6 +1319,10 @@ Currently, the supported languages are as follows. The English name of the langu
|
|
|
1253
1319
|
:type EndFunctionEnable: bool
|
|
1254
1320
|
:param _EndFunctionDesc: Effective when EndFunctionEnable is true; the description of call_end function calling, default is "End the call when user has to leave (like says bye) or you are instructed to do so."
|
|
1255
1321
|
:type EndFunctionDesc: str
|
|
1322
|
+
:param _TransferFunctionEnable:
|
|
1323
|
+
:type TransferFunctionEnable: bool
|
|
1324
|
+
:param _TransferItems:
|
|
1325
|
+
:type TransferItems: list of AITransferItem
|
|
1256
1326
|
:param _NotifyDuration: The duration after which the user hasn't spoken to trigger a notification, minimum 10 seconds, default 10 seconds
|
|
1257
1327
|
:type NotifyDuration: int
|
|
1258
1328
|
:param _NotifyMessage: The AI prompt when NotifyDuration has passed without the user speaking, default is "Sorry, I didn't hear you clearly. Can you repeat that?"
|
|
@@ -1339,6 +1409,8 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1339
1409
|
|
|
1340
1410
|
</div></div>
|
|
1341
1411
|
:type CustomTTSConfig: str
|
|
1412
|
+
:param _PromptVariables:
|
|
1413
|
+
:type PromptVariables: list of Variable
|
|
1342
1414
|
"""
|
|
1343
1415
|
self._SdkAppId = None
|
|
1344
1416
|
self._Callee = None
|
|
@@ -1357,10 +1429,13 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1357
1429
|
self._InterruptSpeechDuration = None
|
|
1358
1430
|
self._EndFunctionEnable = None
|
|
1359
1431
|
self._EndFunctionDesc = None
|
|
1432
|
+
self._TransferFunctionEnable = None
|
|
1433
|
+
self._TransferItems = None
|
|
1360
1434
|
self._NotifyDuration = None
|
|
1361
1435
|
self._NotifyMessage = None
|
|
1362
1436
|
self._NotifyMaxCount = None
|
|
1363
1437
|
self._CustomTTSConfig = None
|
|
1438
|
+
self._PromptVariables = None
|
|
1364
1439
|
|
|
1365
1440
|
@property
|
|
1366
1441
|
def SdkAppId(self):
|
|
@@ -1667,6 +1742,28 @@ Currently, the supported languages are as follows. The English name of the langu
|
|
|
1667
1742
|
def EndFunctionDesc(self, EndFunctionDesc):
|
|
1668
1743
|
self._EndFunctionDesc = EndFunctionDesc
|
|
1669
1744
|
|
|
1745
|
+
@property
|
|
1746
|
+
def TransferFunctionEnable(self):
|
|
1747
|
+
"""
|
|
1748
|
+
:rtype: bool
|
|
1749
|
+
"""
|
|
1750
|
+
return self._TransferFunctionEnable
|
|
1751
|
+
|
|
1752
|
+
@TransferFunctionEnable.setter
|
|
1753
|
+
def TransferFunctionEnable(self, TransferFunctionEnable):
|
|
1754
|
+
self._TransferFunctionEnable = TransferFunctionEnable
|
|
1755
|
+
|
|
1756
|
+
@property
|
|
1757
|
+
def TransferItems(self):
|
|
1758
|
+
"""
|
|
1759
|
+
:rtype: list of AITransferItem
|
|
1760
|
+
"""
|
|
1761
|
+
return self._TransferItems
|
|
1762
|
+
|
|
1763
|
+
@TransferItems.setter
|
|
1764
|
+
def TransferItems(self, TransferItems):
|
|
1765
|
+
self._TransferItems = TransferItems
|
|
1766
|
+
|
|
1670
1767
|
@property
|
|
1671
1768
|
def NotifyDuration(self):
|
|
1672
1769
|
"""The duration after which the user hasn't spoken to trigger a notification, minimum 10 seconds, default 10 seconds
|
|
@@ -1789,6 +1886,17 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1789
1886
|
def CustomTTSConfig(self, CustomTTSConfig):
|
|
1790
1887
|
self._CustomTTSConfig = CustomTTSConfig
|
|
1791
1888
|
|
|
1889
|
+
@property
|
|
1890
|
+
def PromptVariables(self):
|
|
1891
|
+
"""
|
|
1892
|
+
:rtype: list of Variable
|
|
1893
|
+
"""
|
|
1894
|
+
return self._PromptVariables
|
|
1895
|
+
|
|
1896
|
+
@PromptVariables.setter
|
|
1897
|
+
def PromptVariables(self, PromptVariables):
|
|
1898
|
+
self._PromptVariables = PromptVariables
|
|
1899
|
+
|
|
1792
1900
|
|
|
1793
1901
|
def _deserialize(self, params):
|
|
1794
1902
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -1808,10 +1916,23 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1808
1916
|
self._InterruptSpeechDuration = params.get("InterruptSpeechDuration")
|
|
1809
1917
|
self._EndFunctionEnable = params.get("EndFunctionEnable")
|
|
1810
1918
|
self._EndFunctionDesc = params.get("EndFunctionDesc")
|
|
1919
|
+
self._TransferFunctionEnable = params.get("TransferFunctionEnable")
|
|
1920
|
+
if params.get("TransferItems") is not None:
|
|
1921
|
+
self._TransferItems = []
|
|
1922
|
+
for item in params.get("TransferItems"):
|
|
1923
|
+
obj = AITransferItem()
|
|
1924
|
+
obj._deserialize(item)
|
|
1925
|
+
self._TransferItems.append(obj)
|
|
1811
1926
|
self._NotifyDuration = params.get("NotifyDuration")
|
|
1812
1927
|
self._NotifyMessage = params.get("NotifyMessage")
|
|
1813
1928
|
self._NotifyMaxCount = params.get("NotifyMaxCount")
|
|
1814
1929
|
self._CustomTTSConfig = params.get("CustomTTSConfig")
|
|
1930
|
+
if params.get("PromptVariables") is not None:
|
|
1931
|
+
self._PromptVariables = []
|
|
1932
|
+
for item in params.get("PromptVariables"):
|
|
1933
|
+
obj = Variable()
|
|
1934
|
+
obj._deserialize(item)
|
|
1935
|
+
self._PromptVariables.append(obj)
|
|
1815
1936
|
memeber_set = set(params.keys())
|
|
1816
1937
|
for name, value in vars(self).items():
|
|
1817
1938
|
property_name = name[1:]
|
|
@@ -28,7 +28,7 @@ class FaceidClient(AbstractClient):
|
|
|
28
28
|
|
|
29
29
|
def ApplyCardVerification(self, request):
|
|
30
30
|
"""The types of national cards supported by the API and whether instructions on the back of the card are required are as follows:
|
|
31
|
-
<table> <thead> <tr> <td>Nationality</td> <td style="width:200px">CardType</td> <td style="width:200px">Back side required</td> </tr> </thead> <tbody> <tr> <td>Indonesia</td> <td>ID card</td> <td>No</td> </tr> <tr> <td>Indonesia</td> <td>Driving License</td> <td>No</td> </tr> <tr> <td>Hongkong</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Thailand</td> <td>ID card</td> <td>No</td> </tr> <tr> <td>Thailand</td> <td>Driving License</td> <td>Yes</td> </tr> <tr> <td>Malaysia</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Malaysia</td> <td>Driving License</td> <td>Yes</td> </tr> <tr> <td>Singapore</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Singapore</td> <td>Driving License</td> <td>Yes</td> </tr> <tr> <td>Philippine</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Philippine</td> <td>Driving License</td> <td>No</td> </tr> <tr> <td>Japan</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Japan</td> <td>Driving License</td> <td>No</td> </tr> <tr> <td>Taiwan</td> <td>ID Card</td> <td>Yes</td> </tr> </tbody> </table>
|
|
31
|
+
<table> <thead> <tr> <td>Nationality</td> <td style="width:200px">CardType</td> <td style="width:200px">Back side required</td> </tr> </thead> <tbody> <tr> <td>Indonesia</td> <td>ID card</td> <td>No</td> </tr> <tr> <td>Indonesia</td> <td>Driving License</td> <td>No</td> </tr> <tr> <td>Hongkong</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Thailand</td> <td>ID card</td> <td>No</td> </tr> <tr> <td>Thailand</td> <td>Driving License</td> <td>Yes</td> </tr> <tr> <td>Malaysia</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Malaysia</td> <td>Driving License</td> <td>Yes</td> </tr> <tr> <td>Singapore</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Singapore</td> <td>Driving License</td> <td>Yes</td> </tr> <tr> <td>Philippine</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Philippine</td> <td>Driving License</td> <td>No</td> </tr> <tr> <td>Japan</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Japan</td> <td>Driving License</td> <td>No</td> </tr> <tr> <td>Taiwan</td> <td>ID Card</td> <td>Yes</td> </tr> <tr> <td>Bangladesh</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Nigeria</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Nigeria</td> <td>Driving License</td> <td>Yes</td> </tr> <tr> <td>Pakistan</td> <td>ID card</td> <td>Yes</td> </tr> <tr> <td>Pakistan</td> <td>Driving License</td> <td>Yes</td> </tr> </tbody> </table>
|
|
32
32
|
|
|
33
33
|
:param request: Request instance for ApplyCardVerification.
|
|
34
34
|
:type request: :class:`tencentcloud.faceid.v20180301.models.ApplyCardVerificationRequest`
|
|
@@ -204,6 +204,9 @@ MYS: Malaysia
|
|
|
204
204
|
SGP: Singapore
|
|
205
205
|
JPN: Japan
|
|
206
206
|
TWN:Taiwan
|
|
207
|
+
BGD:Bangladesh
|
|
208
|
+
NGA:Nigeria
|
|
209
|
+
PAK:Pakistan
|
|
207
210
|
AUTO: Automatic Identification
|
|
208
211
|
:type Nationality: str
|
|
209
212
|
:param _CardType: Please select the type of ID document. The supported options are:
|
|
@@ -243,6 +246,9 @@ MYS: Malaysia
|
|
|
243
246
|
SGP: Singapore
|
|
244
247
|
JPN: Japan
|
|
245
248
|
TWN:Taiwan
|
|
249
|
+
BGD:Bangladesh
|
|
250
|
+
NGA:Nigeria
|
|
251
|
+
PAK:Pakistan
|
|
246
252
|
AUTO: Automatic Identification
|
|
247
253
|
:rtype: str
|
|
248
254
|
"""
|
|
@@ -1123,6 +1129,129 @@ SuspectedWatermark: Suspected watermark
|
|
|
1123
1129
|
|
|
1124
1130
|
|
|
1125
1131
|
|
|
1132
|
+
class BangladeshIDCard(AbstractModel):
|
|
1133
|
+
"""Bangladesh ID card
|
|
1134
|
+
|
|
1135
|
+
"""
|
|
1136
|
+
|
|
1137
|
+
def __init__(self):
|
|
1138
|
+
r"""
|
|
1139
|
+
:param _LastName: Last name.
|
|
1140
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1141
|
+
:type LastName: str
|
|
1142
|
+
:param _FirstName: First name.
|
|
1143
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1144
|
+
:type FirstName: str
|
|
1145
|
+
:param _LicenseNumber: License number.
|
|
1146
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1147
|
+
:type LicenseNumber: str
|
|
1148
|
+
:param _Age: Age.
|
|
1149
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1150
|
+
:type Age: str
|
|
1151
|
+
:param _Birthday: Birthday.
|
|
1152
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1153
|
+
:type Birthday: str
|
|
1154
|
+
:param _IssuedCountry: Issued country.
|
|
1155
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1156
|
+
:type IssuedCountry: str
|
|
1157
|
+
"""
|
|
1158
|
+
self._LastName = None
|
|
1159
|
+
self._FirstName = None
|
|
1160
|
+
self._LicenseNumber = None
|
|
1161
|
+
self._Age = None
|
|
1162
|
+
self._Birthday = None
|
|
1163
|
+
self._IssuedCountry = None
|
|
1164
|
+
|
|
1165
|
+
@property
|
|
1166
|
+
def LastName(self):
|
|
1167
|
+
"""Last name.
|
|
1168
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1169
|
+
:rtype: str
|
|
1170
|
+
"""
|
|
1171
|
+
return self._LastName
|
|
1172
|
+
|
|
1173
|
+
@LastName.setter
|
|
1174
|
+
def LastName(self, LastName):
|
|
1175
|
+
self._LastName = LastName
|
|
1176
|
+
|
|
1177
|
+
@property
|
|
1178
|
+
def FirstName(self):
|
|
1179
|
+
"""First name.
|
|
1180
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1181
|
+
:rtype: str
|
|
1182
|
+
"""
|
|
1183
|
+
return self._FirstName
|
|
1184
|
+
|
|
1185
|
+
@FirstName.setter
|
|
1186
|
+
def FirstName(self, FirstName):
|
|
1187
|
+
self._FirstName = FirstName
|
|
1188
|
+
|
|
1189
|
+
@property
|
|
1190
|
+
def LicenseNumber(self):
|
|
1191
|
+
"""License number.
|
|
1192
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1193
|
+
:rtype: str
|
|
1194
|
+
"""
|
|
1195
|
+
return self._LicenseNumber
|
|
1196
|
+
|
|
1197
|
+
@LicenseNumber.setter
|
|
1198
|
+
def LicenseNumber(self, LicenseNumber):
|
|
1199
|
+
self._LicenseNumber = LicenseNumber
|
|
1200
|
+
|
|
1201
|
+
@property
|
|
1202
|
+
def Age(self):
|
|
1203
|
+
"""Age.
|
|
1204
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1205
|
+
:rtype: str
|
|
1206
|
+
"""
|
|
1207
|
+
return self._Age
|
|
1208
|
+
|
|
1209
|
+
@Age.setter
|
|
1210
|
+
def Age(self, Age):
|
|
1211
|
+
self._Age = Age
|
|
1212
|
+
|
|
1213
|
+
@property
|
|
1214
|
+
def Birthday(self):
|
|
1215
|
+
"""Birthday.
|
|
1216
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1217
|
+
:rtype: str
|
|
1218
|
+
"""
|
|
1219
|
+
return self._Birthday
|
|
1220
|
+
|
|
1221
|
+
@Birthday.setter
|
|
1222
|
+
def Birthday(self, Birthday):
|
|
1223
|
+
self._Birthday = Birthday
|
|
1224
|
+
|
|
1225
|
+
@property
|
|
1226
|
+
def IssuedCountry(self):
|
|
1227
|
+
"""Issued country.
|
|
1228
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1229
|
+
:rtype: str
|
|
1230
|
+
"""
|
|
1231
|
+
return self._IssuedCountry
|
|
1232
|
+
|
|
1233
|
+
@IssuedCountry.setter
|
|
1234
|
+
def IssuedCountry(self, IssuedCountry):
|
|
1235
|
+
self._IssuedCountry = IssuedCountry
|
|
1236
|
+
|
|
1237
|
+
|
|
1238
|
+
def _deserialize(self, params):
|
|
1239
|
+
self._LastName = params.get("LastName")
|
|
1240
|
+
self._FirstName = params.get("FirstName")
|
|
1241
|
+
self._LicenseNumber = params.get("LicenseNumber")
|
|
1242
|
+
self._Age = params.get("Age")
|
|
1243
|
+
self._Birthday = params.get("Birthday")
|
|
1244
|
+
self._IssuedCountry = params.get("IssuedCountry")
|
|
1245
|
+
memeber_set = set(params.keys())
|
|
1246
|
+
for name, value in vars(self).items():
|
|
1247
|
+
property_name = name[1:]
|
|
1248
|
+
if property_name in memeber_set:
|
|
1249
|
+
memeber_set.remove(property_name)
|
|
1250
|
+
if len(memeber_set) > 0:
|
|
1251
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1252
|
+
|
|
1253
|
+
|
|
1254
|
+
|
|
1126
1255
|
class CardInfo(AbstractModel):
|
|
1127
1256
|
"""License OCR result
|
|
1128
1257
|
|
|
@@ -1178,6 +1307,21 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1178
1307
|
:param _JapanIDCard: Japan ID Card
|
|
1179
1308
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1180
1309
|
:type JapanIDCard: :class:`tencentcloud.faceid.v20180301.models.JapanIDCard`
|
|
1310
|
+
:param _BangladeshIDCard: Bangladesh ID Card
|
|
1311
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1312
|
+
:type BangladeshIDCard: :class:`tencentcloud.faceid.v20180301.models.BangladeshIDCard`
|
|
1313
|
+
:param _NigeriaIDCard: Nigeria ID Card
|
|
1314
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1315
|
+
:type NigeriaIDCard: :class:`tencentcloud.faceid.v20180301.models.NigeriaIDCard`
|
|
1316
|
+
:param _NigeriaDrivingLicense: Nigeria driving license
|
|
1317
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1318
|
+
:type NigeriaDrivingLicense: :class:`tencentcloud.faceid.v20180301.models.NigeriaDrivingLicense`
|
|
1319
|
+
:param _PakistanIDCard: Pakistan ID Card
|
|
1320
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1321
|
+
:type PakistanIDCard: :class:`tencentcloud.faceid.v20180301.models.PakistanIDCard`
|
|
1322
|
+
:param _PakistanDrivingLicense: Pakistan driving license
|
|
1323
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1324
|
+
:type PakistanDrivingLicense: :class:`tencentcloud.faceid.v20180301.models.PakistanDrivingLicense`
|
|
1181
1325
|
"""
|
|
1182
1326
|
self._HKIDCard = None
|
|
1183
1327
|
self._MLIDCard = None
|
|
@@ -1195,6 +1339,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1195
1339
|
self._MacaoIDCard = None
|
|
1196
1340
|
self._TaiWanIDCard = None
|
|
1197
1341
|
self._JapanIDCard = None
|
|
1342
|
+
self._BangladeshIDCard = None
|
|
1343
|
+
self._NigeriaIDCard = None
|
|
1344
|
+
self._NigeriaDrivingLicense = None
|
|
1345
|
+
self._PakistanIDCard = None
|
|
1346
|
+
self._PakistanDrivingLicense = None
|
|
1198
1347
|
|
|
1199
1348
|
@property
|
|
1200
1349
|
def HKIDCard(self):
|
|
@@ -1388,6 +1537,66 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1388
1537
|
def JapanIDCard(self, JapanIDCard):
|
|
1389
1538
|
self._JapanIDCard = JapanIDCard
|
|
1390
1539
|
|
|
1540
|
+
@property
|
|
1541
|
+
def BangladeshIDCard(self):
|
|
1542
|
+
"""Bangladesh ID Card
|
|
1543
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1544
|
+
:rtype: :class:`tencentcloud.faceid.v20180301.models.BangladeshIDCard`
|
|
1545
|
+
"""
|
|
1546
|
+
return self._BangladeshIDCard
|
|
1547
|
+
|
|
1548
|
+
@BangladeshIDCard.setter
|
|
1549
|
+
def BangladeshIDCard(self, BangladeshIDCard):
|
|
1550
|
+
self._BangladeshIDCard = BangladeshIDCard
|
|
1551
|
+
|
|
1552
|
+
@property
|
|
1553
|
+
def NigeriaIDCard(self):
|
|
1554
|
+
"""Nigeria ID Card
|
|
1555
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1556
|
+
:rtype: :class:`tencentcloud.faceid.v20180301.models.NigeriaIDCard`
|
|
1557
|
+
"""
|
|
1558
|
+
return self._NigeriaIDCard
|
|
1559
|
+
|
|
1560
|
+
@NigeriaIDCard.setter
|
|
1561
|
+
def NigeriaIDCard(self, NigeriaIDCard):
|
|
1562
|
+
self._NigeriaIDCard = NigeriaIDCard
|
|
1563
|
+
|
|
1564
|
+
@property
|
|
1565
|
+
def NigeriaDrivingLicense(self):
|
|
1566
|
+
"""Nigeria driving license
|
|
1567
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1568
|
+
:rtype: :class:`tencentcloud.faceid.v20180301.models.NigeriaDrivingLicense`
|
|
1569
|
+
"""
|
|
1570
|
+
return self._NigeriaDrivingLicense
|
|
1571
|
+
|
|
1572
|
+
@NigeriaDrivingLicense.setter
|
|
1573
|
+
def NigeriaDrivingLicense(self, NigeriaDrivingLicense):
|
|
1574
|
+
self._NigeriaDrivingLicense = NigeriaDrivingLicense
|
|
1575
|
+
|
|
1576
|
+
@property
|
|
1577
|
+
def PakistanIDCard(self):
|
|
1578
|
+
"""Pakistan ID Card
|
|
1579
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1580
|
+
:rtype: :class:`tencentcloud.faceid.v20180301.models.PakistanIDCard`
|
|
1581
|
+
"""
|
|
1582
|
+
return self._PakistanIDCard
|
|
1583
|
+
|
|
1584
|
+
@PakistanIDCard.setter
|
|
1585
|
+
def PakistanIDCard(self, PakistanIDCard):
|
|
1586
|
+
self._PakistanIDCard = PakistanIDCard
|
|
1587
|
+
|
|
1588
|
+
@property
|
|
1589
|
+
def PakistanDrivingLicense(self):
|
|
1590
|
+
"""Pakistan driving license
|
|
1591
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1592
|
+
:rtype: :class:`tencentcloud.faceid.v20180301.models.PakistanDrivingLicense`
|
|
1593
|
+
"""
|
|
1594
|
+
return self._PakistanDrivingLicense
|
|
1595
|
+
|
|
1596
|
+
@PakistanDrivingLicense.setter
|
|
1597
|
+
def PakistanDrivingLicense(self, PakistanDrivingLicense):
|
|
1598
|
+
self._PakistanDrivingLicense = PakistanDrivingLicense
|
|
1599
|
+
|
|
1391
1600
|
|
|
1392
1601
|
def _deserialize(self, params):
|
|
1393
1602
|
if params.get("HKIDCard") is not None:
|
|
@@ -1438,6 +1647,21 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1438
1647
|
if params.get("JapanIDCard") is not None:
|
|
1439
1648
|
self._JapanIDCard = JapanIDCard()
|
|
1440
1649
|
self._JapanIDCard._deserialize(params.get("JapanIDCard"))
|
|
1650
|
+
if params.get("BangladeshIDCard") is not None:
|
|
1651
|
+
self._BangladeshIDCard = BangladeshIDCard()
|
|
1652
|
+
self._BangladeshIDCard._deserialize(params.get("BangladeshIDCard"))
|
|
1653
|
+
if params.get("NigeriaIDCard") is not None:
|
|
1654
|
+
self._NigeriaIDCard = NigeriaIDCard()
|
|
1655
|
+
self._NigeriaIDCard._deserialize(params.get("NigeriaIDCard"))
|
|
1656
|
+
if params.get("NigeriaDrivingLicense") is not None:
|
|
1657
|
+
self._NigeriaDrivingLicense = NigeriaDrivingLicense()
|
|
1658
|
+
self._NigeriaDrivingLicense._deserialize(params.get("NigeriaDrivingLicense"))
|
|
1659
|
+
if params.get("PakistanIDCard") is not None:
|
|
1660
|
+
self._PakistanIDCard = PakistanIDCard()
|
|
1661
|
+
self._PakistanIDCard._deserialize(params.get("PakistanIDCard"))
|
|
1662
|
+
if params.get("PakistanDrivingLicense") is not None:
|
|
1663
|
+
self._PakistanDrivingLicense = PakistanDrivingLicense()
|
|
1664
|
+
self._PakistanDrivingLicense._deserialize(params.get("PakistanDrivingLicense"))
|
|
1441
1665
|
memeber_set = set(params.keys())
|
|
1442
1666
|
for name, value in vars(self).items():
|
|
1443
1667
|
property_name = name[1:]
|
|
@@ -6669,118 +6893,434 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6669
6893
|
|
|
6670
6894
|
|
|
6671
6895
|
|
|
6672
|
-
class
|
|
6673
|
-
"""
|
|
6896
|
+
class NigeriaDrivingLicense(AbstractModel):
|
|
6897
|
+
"""Nigeria driving license
|
|
6674
6898
|
|
|
6675
6899
|
"""
|
|
6676
6900
|
|
|
6677
6901
|
def __init__(self):
|
|
6678
6902
|
r"""
|
|
6679
|
-
:param
|
|
6680
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6681
|
-
:type HKIDCard: :class:`tencentcloud.faceid.v20180301.models.NormalHKIDCard`
|
|
6682
|
-
:param _MLIDCard: Malaysia ID Card
|
|
6683
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6684
|
-
:type MLIDCard: :class:`tencentcloud.faceid.v20180301.models.NormalMLIDCard`
|
|
6685
|
-
:param _PhilippinesVoteID: Philippines VoteID Card
|
|
6686
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6687
|
-
:type PhilippinesVoteID: :class:`tencentcloud.faceid.v20180301.models.PhilippinesVoteID`
|
|
6688
|
-
:param _IndonesiaIDCard: Indonesia ID Card
|
|
6689
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6690
|
-
:type IndonesiaIDCard: :class:`tencentcloud.faceid.v20180301.models.NormalIndonesiaIDCard`
|
|
6691
|
-
:param _PhilippinesDrivingLicense: Philippines Driving License
|
|
6692
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6693
|
-
:type PhilippinesDrivingLicense: :class:`tencentcloud.faceid.v20180301.models.PhilippinesDrivingLicense`
|
|
6694
|
-
:param _PhilippinesTinID: Philippines TinID
|
|
6695
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6696
|
-
:type PhilippinesTinID: :class:`tencentcloud.faceid.v20180301.models.PhilippinesTinID`
|
|
6697
|
-
:param _PhilippinesSSSID: Philippines SSSID
|
|
6903
|
+
:param _LastName: Last name.
|
|
6698
6904
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6699
|
-
|
|
6700
|
-
:
|
|
6701
|
-
|
|
6702
|
-
:type PhilippinesUMID: :class:`tencentcloud.faceid.v20180301.models.PhilippinesUMID`
|
|
6703
|
-
:param _InternationalIDPassport: ID Cards of Hong Kong, Macao and Taiwan (China), and International Passport
|
|
6704
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6705
|
-
:type InternationalIDPassport: :class:`tencentcloud.faceid.v20180301.models.InternationalIDPassport`
|
|
6706
|
-
:param _GeneralCard: General license information
|
|
6707
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6708
|
-
:type GeneralCard: :class:`tencentcloud.faceid.v20180301.models.GeneralCard`
|
|
6709
|
-
:param _IndonesiaDrivingLicense: Indonesia Driving License
|
|
6905
|
+
|
|
6906
|
+
:type LastName: str
|
|
6907
|
+
:param _FirstName: First name.
|
|
6710
6908
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6711
|
-
:type
|
|
6712
|
-
:param
|
|
6909
|
+
:type FirstName: str
|
|
6910
|
+
:param _LicenseNumber: License number.
|
|
6713
6911
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6714
|
-
:type
|
|
6715
|
-
:param
|
|
6912
|
+
:type LicenseNumber: str
|
|
6913
|
+
:param _Age: Age.
|
|
6716
6914
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6717
|
-
:type
|
|
6718
|
-
:param
|
|
6915
|
+
:type Age: str
|
|
6916
|
+
:param _Birthday: Birthday.
|
|
6719
6917
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6720
|
-
:type
|
|
6721
|
-
:param
|
|
6918
|
+
:type Birthday: str
|
|
6919
|
+
:param _IssuedCountry: Issued country.
|
|
6722
6920
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6723
|
-
:type
|
|
6724
|
-
:param
|
|
6921
|
+
:type IssuedCountry: str
|
|
6922
|
+
:param _ExpirationDate: Expiration date.
|
|
6725
6923
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6726
|
-
:type
|
|
6727
|
-
:param
|
|
6924
|
+
:type ExpirationDate: str
|
|
6925
|
+
:param _IssuedDate: Issued date.
|
|
6728
6926
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6729
|
-
:type
|
|
6730
|
-
:param
|
|
6927
|
+
:type IssuedDate: str
|
|
6928
|
+
:param _Sex: Gender.
|
|
6731
6929
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6732
|
-
:type
|
|
6930
|
+
:type Sex: str
|
|
6733
6931
|
"""
|
|
6734
|
-
self.
|
|
6735
|
-
self.
|
|
6736
|
-
self.
|
|
6737
|
-
self.
|
|
6738
|
-
self.
|
|
6739
|
-
self.
|
|
6740
|
-
self.
|
|
6741
|
-
self.
|
|
6742
|
-
self.
|
|
6743
|
-
self._GeneralCard = None
|
|
6744
|
-
self._IndonesiaDrivingLicense = None
|
|
6745
|
-
self._ThailandIDCard = None
|
|
6746
|
-
self._SingaporeIDCard = None
|
|
6747
|
-
self._MacaoIDCard = None
|
|
6748
|
-
self._MainlandIDCard = None
|
|
6749
|
-
self._JapanIDCard = None
|
|
6750
|
-
self._TaiWanIDCard = None
|
|
6751
|
-
self._HMTPermitCard = None
|
|
6932
|
+
self._LastName = None
|
|
6933
|
+
self._FirstName = None
|
|
6934
|
+
self._LicenseNumber = None
|
|
6935
|
+
self._Age = None
|
|
6936
|
+
self._Birthday = None
|
|
6937
|
+
self._IssuedCountry = None
|
|
6938
|
+
self._ExpirationDate = None
|
|
6939
|
+
self._IssuedDate = None
|
|
6940
|
+
self._Sex = None
|
|
6752
6941
|
|
|
6753
6942
|
@property
|
|
6754
|
-
def
|
|
6755
|
-
"""
|
|
6943
|
+
def LastName(self):
|
|
6944
|
+
"""Last name.
|
|
6756
6945
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6757
|
-
|
|
6946
|
+
|
|
6947
|
+
:rtype: str
|
|
6758
6948
|
"""
|
|
6759
|
-
return self.
|
|
6949
|
+
return self._LastName
|
|
6760
6950
|
|
|
6761
|
-
@
|
|
6762
|
-
def
|
|
6763
|
-
self.
|
|
6951
|
+
@LastName.setter
|
|
6952
|
+
def LastName(self, LastName):
|
|
6953
|
+
self._LastName = LastName
|
|
6764
6954
|
|
|
6765
6955
|
@property
|
|
6766
|
-
def
|
|
6767
|
-
"""
|
|
6956
|
+
def FirstName(self):
|
|
6957
|
+
"""First name.
|
|
6768
6958
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6769
|
-
:rtype:
|
|
6959
|
+
:rtype: str
|
|
6770
6960
|
"""
|
|
6771
|
-
return self.
|
|
6961
|
+
return self._FirstName
|
|
6772
6962
|
|
|
6773
|
-
@
|
|
6774
|
-
def
|
|
6775
|
-
self.
|
|
6963
|
+
@FirstName.setter
|
|
6964
|
+
def FirstName(self, FirstName):
|
|
6965
|
+
self._FirstName = FirstName
|
|
6776
6966
|
|
|
6777
6967
|
@property
|
|
6778
|
-
def
|
|
6779
|
-
"""
|
|
6968
|
+
def LicenseNumber(self):
|
|
6969
|
+
"""License number.
|
|
6780
6970
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6781
|
-
:rtype:
|
|
6971
|
+
:rtype: str
|
|
6782
6972
|
"""
|
|
6783
|
-
return self.
|
|
6973
|
+
return self._LicenseNumber
|
|
6974
|
+
|
|
6975
|
+
@LicenseNumber.setter
|
|
6976
|
+
def LicenseNumber(self, LicenseNumber):
|
|
6977
|
+
self._LicenseNumber = LicenseNumber
|
|
6978
|
+
|
|
6979
|
+
@property
|
|
6980
|
+
def Age(self):
|
|
6981
|
+
"""Age.
|
|
6982
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6983
|
+
:rtype: str
|
|
6984
|
+
"""
|
|
6985
|
+
return self._Age
|
|
6986
|
+
|
|
6987
|
+
@Age.setter
|
|
6988
|
+
def Age(self, Age):
|
|
6989
|
+
self._Age = Age
|
|
6990
|
+
|
|
6991
|
+
@property
|
|
6992
|
+
def Birthday(self):
|
|
6993
|
+
"""Birthday.
|
|
6994
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6995
|
+
:rtype: str
|
|
6996
|
+
"""
|
|
6997
|
+
return self._Birthday
|
|
6998
|
+
|
|
6999
|
+
@Birthday.setter
|
|
7000
|
+
def Birthday(self, Birthday):
|
|
7001
|
+
self._Birthday = Birthday
|
|
7002
|
+
|
|
7003
|
+
@property
|
|
7004
|
+
def IssuedCountry(self):
|
|
7005
|
+
"""Issued country.
|
|
7006
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7007
|
+
:rtype: str
|
|
7008
|
+
"""
|
|
7009
|
+
return self._IssuedCountry
|
|
7010
|
+
|
|
7011
|
+
@IssuedCountry.setter
|
|
7012
|
+
def IssuedCountry(self, IssuedCountry):
|
|
7013
|
+
self._IssuedCountry = IssuedCountry
|
|
7014
|
+
|
|
7015
|
+
@property
|
|
7016
|
+
def ExpirationDate(self):
|
|
7017
|
+
"""Expiration date.
|
|
7018
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7019
|
+
:rtype: str
|
|
7020
|
+
"""
|
|
7021
|
+
return self._ExpirationDate
|
|
7022
|
+
|
|
7023
|
+
@ExpirationDate.setter
|
|
7024
|
+
def ExpirationDate(self, ExpirationDate):
|
|
7025
|
+
self._ExpirationDate = ExpirationDate
|
|
7026
|
+
|
|
7027
|
+
@property
|
|
7028
|
+
def IssuedDate(self):
|
|
7029
|
+
"""Issued date.
|
|
7030
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7031
|
+
:rtype: str
|
|
7032
|
+
"""
|
|
7033
|
+
return self._IssuedDate
|
|
7034
|
+
|
|
7035
|
+
@IssuedDate.setter
|
|
7036
|
+
def IssuedDate(self, IssuedDate):
|
|
7037
|
+
self._IssuedDate = IssuedDate
|
|
7038
|
+
|
|
7039
|
+
@property
|
|
7040
|
+
def Sex(self):
|
|
7041
|
+
"""Gender.
|
|
7042
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7043
|
+
:rtype: str
|
|
7044
|
+
"""
|
|
7045
|
+
return self._Sex
|
|
7046
|
+
|
|
7047
|
+
@Sex.setter
|
|
7048
|
+
def Sex(self, Sex):
|
|
7049
|
+
self._Sex = Sex
|
|
7050
|
+
|
|
7051
|
+
|
|
7052
|
+
def _deserialize(self, params):
|
|
7053
|
+
self._LastName = params.get("LastName")
|
|
7054
|
+
self._FirstName = params.get("FirstName")
|
|
7055
|
+
self._LicenseNumber = params.get("LicenseNumber")
|
|
7056
|
+
self._Age = params.get("Age")
|
|
7057
|
+
self._Birthday = params.get("Birthday")
|
|
7058
|
+
self._IssuedCountry = params.get("IssuedCountry")
|
|
7059
|
+
self._ExpirationDate = params.get("ExpirationDate")
|
|
7060
|
+
self._IssuedDate = params.get("IssuedDate")
|
|
7061
|
+
self._Sex = params.get("Sex")
|
|
7062
|
+
memeber_set = set(params.keys())
|
|
7063
|
+
for name, value in vars(self).items():
|
|
7064
|
+
property_name = name[1:]
|
|
7065
|
+
if property_name in memeber_set:
|
|
7066
|
+
memeber_set.remove(property_name)
|
|
7067
|
+
if len(memeber_set) > 0:
|
|
7068
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7069
|
+
|
|
7070
|
+
|
|
7071
|
+
|
|
7072
|
+
class NigeriaIDCard(AbstractModel):
|
|
7073
|
+
"""Nigeria ID card
|
|
7074
|
+
|
|
7075
|
+
"""
|
|
7076
|
+
|
|
7077
|
+
def __init__(self):
|
|
7078
|
+
r"""
|
|
7079
|
+
:param _LastName: Last name.
|
|
7080
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7081
|
+
:type LastName: str
|
|
7082
|
+
:param _FirstName: First name.
|
|
7083
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7084
|
+
:type FirstName: str
|
|
7085
|
+
:param _LicenseNumber: License number.
|
|
7086
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7087
|
+
:type LicenseNumber: str
|
|
7088
|
+
:param _Age: Age.
|
|
7089
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7090
|
+
:type Age: str
|
|
7091
|
+
:param _Birthday: Birthday.
|
|
7092
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7093
|
+
:type Birthday: str
|
|
7094
|
+
:param _IssuedCountry: Issued country.
|
|
7095
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7096
|
+
:type IssuedCountry: str
|
|
7097
|
+
:param _Sex: Gender.
|
|
7098
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7099
|
+
:type Sex: str
|
|
7100
|
+
"""
|
|
7101
|
+
self._LastName = None
|
|
7102
|
+
self._FirstName = None
|
|
7103
|
+
self._LicenseNumber = None
|
|
7104
|
+
self._Age = None
|
|
7105
|
+
self._Birthday = None
|
|
7106
|
+
self._IssuedCountry = None
|
|
7107
|
+
self._Sex = None
|
|
7108
|
+
|
|
7109
|
+
@property
|
|
7110
|
+
def LastName(self):
|
|
7111
|
+
"""Last name.
|
|
7112
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7113
|
+
:rtype: str
|
|
7114
|
+
"""
|
|
7115
|
+
return self._LastName
|
|
7116
|
+
|
|
7117
|
+
@LastName.setter
|
|
7118
|
+
def LastName(self, LastName):
|
|
7119
|
+
self._LastName = LastName
|
|
7120
|
+
|
|
7121
|
+
@property
|
|
7122
|
+
def FirstName(self):
|
|
7123
|
+
"""First name.
|
|
7124
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7125
|
+
:rtype: str
|
|
7126
|
+
"""
|
|
7127
|
+
return self._FirstName
|
|
7128
|
+
|
|
7129
|
+
@FirstName.setter
|
|
7130
|
+
def FirstName(self, FirstName):
|
|
7131
|
+
self._FirstName = FirstName
|
|
7132
|
+
|
|
7133
|
+
@property
|
|
7134
|
+
def LicenseNumber(self):
|
|
7135
|
+
"""License number.
|
|
7136
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7137
|
+
:rtype: str
|
|
7138
|
+
"""
|
|
7139
|
+
return self._LicenseNumber
|
|
7140
|
+
|
|
7141
|
+
@LicenseNumber.setter
|
|
7142
|
+
def LicenseNumber(self, LicenseNumber):
|
|
7143
|
+
self._LicenseNumber = LicenseNumber
|
|
7144
|
+
|
|
7145
|
+
@property
|
|
7146
|
+
def Age(self):
|
|
7147
|
+
"""Age.
|
|
7148
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7149
|
+
:rtype: str
|
|
7150
|
+
"""
|
|
7151
|
+
return self._Age
|
|
7152
|
+
|
|
7153
|
+
@Age.setter
|
|
7154
|
+
def Age(self, Age):
|
|
7155
|
+
self._Age = Age
|
|
7156
|
+
|
|
7157
|
+
@property
|
|
7158
|
+
def Birthday(self):
|
|
7159
|
+
"""Birthday.
|
|
7160
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7161
|
+
:rtype: str
|
|
7162
|
+
"""
|
|
7163
|
+
return self._Birthday
|
|
7164
|
+
|
|
7165
|
+
@Birthday.setter
|
|
7166
|
+
def Birthday(self, Birthday):
|
|
7167
|
+
self._Birthday = Birthday
|
|
7168
|
+
|
|
7169
|
+
@property
|
|
7170
|
+
def IssuedCountry(self):
|
|
7171
|
+
"""Issued country.
|
|
7172
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7173
|
+
:rtype: str
|
|
7174
|
+
"""
|
|
7175
|
+
return self._IssuedCountry
|
|
7176
|
+
|
|
7177
|
+
@IssuedCountry.setter
|
|
7178
|
+
def IssuedCountry(self, IssuedCountry):
|
|
7179
|
+
self._IssuedCountry = IssuedCountry
|
|
7180
|
+
|
|
7181
|
+
@property
|
|
7182
|
+
def Sex(self):
|
|
7183
|
+
"""Gender.
|
|
7184
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7185
|
+
:rtype: str
|
|
7186
|
+
"""
|
|
7187
|
+
return self._Sex
|
|
7188
|
+
|
|
7189
|
+
@Sex.setter
|
|
7190
|
+
def Sex(self, Sex):
|
|
7191
|
+
self._Sex = Sex
|
|
7192
|
+
|
|
7193
|
+
|
|
7194
|
+
def _deserialize(self, params):
|
|
7195
|
+
self._LastName = params.get("LastName")
|
|
7196
|
+
self._FirstName = params.get("FirstName")
|
|
7197
|
+
self._LicenseNumber = params.get("LicenseNumber")
|
|
7198
|
+
self._Age = params.get("Age")
|
|
7199
|
+
self._Birthday = params.get("Birthday")
|
|
7200
|
+
self._IssuedCountry = params.get("IssuedCountry")
|
|
7201
|
+
self._Sex = params.get("Sex")
|
|
7202
|
+
memeber_set = set(params.keys())
|
|
7203
|
+
for name, value in vars(self).items():
|
|
7204
|
+
property_name = name[1:]
|
|
7205
|
+
if property_name in memeber_set:
|
|
7206
|
+
memeber_set.remove(property_name)
|
|
7207
|
+
if len(memeber_set) > 0:
|
|
7208
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7209
|
+
|
|
7210
|
+
|
|
7211
|
+
|
|
7212
|
+
class NormalCardInfo(AbstractModel):
|
|
7213
|
+
"""License OCR result
|
|
7214
|
+
|
|
7215
|
+
"""
|
|
7216
|
+
|
|
7217
|
+
def __init__(self):
|
|
7218
|
+
r"""
|
|
7219
|
+
:param _HKIDCard: Hong Kong ID Card
|
|
7220
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7221
|
+
:type HKIDCard: :class:`tencentcloud.faceid.v20180301.models.NormalHKIDCard`
|
|
7222
|
+
:param _MLIDCard: Malaysia ID Card
|
|
7223
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7224
|
+
:type MLIDCard: :class:`tencentcloud.faceid.v20180301.models.NormalMLIDCard`
|
|
7225
|
+
:param _PhilippinesVoteID: Philippines VoteID Card
|
|
7226
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7227
|
+
:type PhilippinesVoteID: :class:`tencentcloud.faceid.v20180301.models.PhilippinesVoteID`
|
|
7228
|
+
:param _IndonesiaIDCard: Indonesia ID Card
|
|
7229
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7230
|
+
:type IndonesiaIDCard: :class:`tencentcloud.faceid.v20180301.models.NormalIndonesiaIDCard`
|
|
7231
|
+
:param _PhilippinesDrivingLicense: Philippines Driving License
|
|
7232
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7233
|
+
:type PhilippinesDrivingLicense: :class:`tencentcloud.faceid.v20180301.models.PhilippinesDrivingLicense`
|
|
7234
|
+
:param _PhilippinesTinID: Philippines TinID
|
|
7235
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7236
|
+
:type PhilippinesTinID: :class:`tencentcloud.faceid.v20180301.models.PhilippinesTinID`
|
|
7237
|
+
:param _PhilippinesSSSID: Philippines SSSID
|
|
7238
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7239
|
+
:type PhilippinesSSSID: :class:`tencentcloud.faceid.v20180301.models.PhilippinesSSSID`
|
|
7240
|
+
:param _PhilippinesUMID: Philippines UMID
|
|
7241
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7242
|
+
:type PhilippinesUMID: :class:`tencentcloud.faceid.v20180301.models.PhilippinesUMID`
|
|
7243
|
+
:param _InternationalIDPassport: ID Cards of Hong Kong, Macao and Taiwan (China), and International Passport
|
|
7244
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7245
|
+
:type InternationalIDPassport: :class:`tencentcloud.faceid.v20180301.models.InternationalIDPassport`
|
|
7246
|
+
:param _GeneralCard: General license information
|
|
7247
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7248
|
+
:type GeneralCard: :class:`tencentcloud.faceid.v20180301.models.GeneralCard`
|
|
7249
|
+
:param _IndonesiaDrivingLicense: Indonesia Driving License
|
|
7250
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7251
|
+
:type IndonesiaDrivingLicense: :class:`tencentcloud.faceid.v20180301.models.IndonesiaDrivingLicense`
|
|
7252
|
+
:param _ThailandIDCard: Thailand ID Card
|
|
7253
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7254
|
+
:type ThailandIDCard: :class:`tencentcloud.faceid.v20180301.models.NormalThailandIDCard`
|
|
7255
|
+
:param _SingaporeIDCard: Singapore ID Card
|
|
7256
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7257
|
+
:type SingaporeIDCard: :class:`tencentcloud.faceid.v20180301.models.SingaporeIDCard`
|
|
7258
|
+
:param _MacaoIDCard: Macao ID Card
|
|
7259
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7260
|
+
:type MacaoIDCard: :class:`tencentcloud.faceid.v20180301.models.MacaoIDCard`
|
|
7261
|
+
:param _MainlandIDCard: Mainland ID Card
|
|
7262
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7263
|
+
:type MainlandIDCard: :class:`tencentcloud.faceid.v20180301.models.MainlandIDCard`
|
|
7264
|
+
:param _JapanIDCard: Japan ID Card
|
|
7265
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7266
|
+
:type JapanIDCard: :class:`tencentcloud.faceid.v20180301.models.JapanIDCard`
|
|
7267
|
+
:param _TaiWanIDCard: Taiwan ID Card
|
|
7268
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7269
|
+
:type TaiWanIDCard: :class:`tencentcloud.faceid.v20180301.models.TaiWanIDCard`
|
|
7270
|
+
:param _HMTPermitCard: exit/entry permit (card) for traveling to and from Hong Kong, Macao, or Taiwan.
|
|
7271
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7272
|
+
:type HMTPermitCard: :class:`tencentcloud.faceid.v20180301.models.HMTPermit`
|
|
7273
|
+
"""
|
|
7274
|
+
self._HKIDCard = None
|
|
7275
|
+
self._MLIDCard = None
|
|
7276
|
+
self._PhilippinesVoteID = None
|
|
7277
|
+
self._IndonesiaIDCard = None
|
|
7278
|
+
self._PhilippinesDrivingLicense = None
|
|
7279
|
+
self._PhilippinesTinID = None
|
|
7280
|
+
self._PhilippinesSSSID = None
|
|
7281
|
+
self._PhilippinesUMID = None
|
|
7282
|
+
self._InternationalIDPassport = None
|
|
7283
|
+
self._GeneralCard = None
|
|
7284
|
+
self._IndonesiaDrivingLicense = None
|
|
7285
|
+
self._ThailandIDCard = None
|
|
7286
|
+
self._SingaporeIDCard = None
|
|
7287
|
+
self._MacaoIDCard = None
|
|
7288
|
+
self._MainlandIDCard = None
|
|
7289
|
+
self._JapanIDCard = None
|
|
7290
|
+
self._TaiWanIDCard = None
|
|
7291
|
+
self._HMTPermitCard = None
|
|
7292
|
+
|
|
7293
|
+
@property
|
|
7294
|
+
def HKIDCard(self):
|
|
7295
|
+
"""Hong Kong ID Card
|
|
7296
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7297
|
+
:rtype: :class:`tencentcloud.faceid.v20180301.models.NormalHKIDCard`
|
|
7298
|
+
"""
|
|
7299
|
+
return self._HKIDCard
|
|
7300
|
+
|
|
7301
|
+
@HKIDCard.setter
|
|
7302
|
+
def HKIDCard(self, HKIDCard):
|
|
7303
|
+
self._HKIDCard = HKIDCard
|
|
7304
|
+
|
|
7305
|
+
@property
|
|
7306
|
+
def MLIDCard(self):
|
|
7307
|
+
"""Malaysia ID Card
|
|
7308
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7309
|
+
:rtype: :class:`tencentcloud.faceid.v20180301.models.NormalMLIDCard`
|
|
7310
|
+
"""
|
|
7311
|
+
return self._MLIDCard
|
|
7312
|
+
|
|
7313
|
+
@MLIDCard.setter
|
|
7314
|
+
def MLIDCard(self, MLIDCard):
|
|
7315
|
+
self._MLIDCard = MLIDCard
|
|
7316
|
+
|
|
7317
|
+
@property
|
|
7318
|
+
def PhilippinesVoteID(self):
|
|
7319
|
+
"""Philippines VoteID Card
|
|
7320
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7321
|
+
:rtype: :class:`tencentcloud.faceid.v20180301.models.PhilippinesVoteID`
|
|
7322
|
+
"""
|
|
7323
|
+
return self._PhilippinesVoteID
|
|
6784
7324
|
|
|
6785
7325
|
@PhilippinesVoteID.setter
|
|
6786
7326
|
def PhilippinesVoteID(self, PhilippinesVoteID):
|
|
@@ -8087,6 +8627,252 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8087
8627
|
|
|
8088
8628
|
|
|
8089
8629
|
|
|
8630
|
+
class PakistanDrivingLicense(AbstractModel):
|
|
8631
|
+
"""Pakistan driving license
|
|
8632
|
+
|
|
8633
|
+
"""
|
|
8634
|
+
|
|
8635
|
+
def __init__(self):
|
|
8636
|
+
r"""
|
|
8637
|
+
:param _LastName: Last name.
|
|
8638
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8639
|
+
:type LastName: str
|
|
8640
|
+
:param _FirstName: First name.
|
|
8641
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8642
|
+
:type FirstName: str
|
|
8643
|
+
:param _LicenseNumber: License number.
|
|
8644
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8645
|
+
:type LicenseNumber: str
|
|
8646
|
+
:param _Age: Age.
|
|
8647
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8648
|
+
:type Age: str
|
|
8649
|
+
:param _Birthday: Birthday.
|
|
8650
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8651
|
+
:type Birthday: str
|
|
8652
|
+
:param _IssuedCountry: Gender.
|
|
8653
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8654
|
+
:type IssuedCountry: str
|
|
8655
|
+
"""
|
|
8656
|
+
self._LastName = None
|
|
8657
|
+
self._FirstName = None
|
|
8658
|
+
self._LicenseNumber = None
|
|
8659
|
+
self._Age = None
|
|
8660
|
+
self._Birthday = None
|
|
8661
|
+
self._IssuedCountry = None
|
|
8662
|
+
|
|
8663
|
+
@property
|
|
8664
|
+
def LastName(self):
|
|
8665
|
+
"""Last name.
|
|
8666
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8667
|
+
:rtype: str
|
|
8668
|
+
"""
|
|
8669
|
+
return self._LastName
|
|
8670
|
+
|
|
8671
|
+
@LastName.setter
|
|
8672
|
+
def LastName(self, LastName):
|
|
8673
|
+
self._LastName = LastName
|
|
8674
|
+
|
|
8675
|
+
@property
|
|
8676
|
+
def FirstName(self):
|
|
8677
|
+
"""First name.
|
|
8678
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8679
|
+
:rtype: str
|
|
8680
|
+
"""
|
|
8681
|
+
return self._FirstName
|
|
8682
|
+
|
|
8683
|
+
@FirstName.setter
|
|
8684
|
+
def FirstName(self, FirstName):
|
|
8685
|
+
self._FirstName = FirstName
|
|
8686
|
+
|
|
8687
|
+
@property
|
|
8688
|
+
def LicenseNumber(self):
|
|
8689
|
+
"""License number.
|
|
8690
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8691
|
+
:rtype: str
|
|
8692
|
+
"""
|
|
8693
|
+
return self._LicenseNumber
|
|
8694
|
+
|
|
8695
|
+
@LicenseNumber.setter
|
|
8696
|
+
def LicenseNumber(self, LicenseNumber):
|
|
8697
|
+
self._LicenseNumber = LicenseNumber
|
|
8698
|
+
|
|
8699
|
+
@property
|
|
8700
|
+
def Age(self):
|
|
8701
|
+
"""Age.
|
|
8702
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8703
|
+
:rtype: str
|
|
8704
|
+
"""
|
|
8705
|
+
return self._Age
|
|
8706
|
+
|
|
8707
|
+
@Age.setter
|
|
8708
|
+
def Age(self, Age):
|
|
8709
|
+
self._Age = Age
|
|
8710
|
+
|
|
8711
|
+
@property
|
|
8712
|
+
def Birthday(self):
|
|
8713
|
+
"""Birthday.
|
|
8714
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8715
|
+
:rtype: str
|
|
8716
|
+
"""
|
|
8717
|
+
return self._Birthday
|
|
8718
|
+
|
|
8719
|
+
@Birthday.setter
|
|
8720
|
+
def Birthday(self, Birthday):
|
|
8721
|
+
self._Birthday = Birthday
|
|
8722
|
+
|
|
8723
|
+
@property
|
|
8724
|
+
def IssuedCountry(self):
|
|
8725
|
+
"""Gender.
|
|
8726
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8727
|
+
:rtype: str
|
|
8728
|
+
"""
|
|
8729
|
+
return self._IssuedCountry
|
|
8730
|
+
|
|
8731
|
+
@IssuedCountry.setter
|
|
8732
|
+
def IssuedCountry(self, IssuedCountry):
|
|
8733
|
+
self._IssuedCountry = IssuedCountry
|
|
8734
|
+
|
|
8735
|
+
|
|
8736
|
+
def _deserialize(self, params):
|
|
8737
|
+
self._LastName = params.get("LastName")
|
|
8738
|
+
self._FirstName = params.get("FirstName")
|
|
8739
|
+
self._LicenseNumber = params.get("LicenseNumber")
|
|
8740
|
+
self._Age = params.get("Age")
|
|
8741
|
+
self._Birthday = params.get("Birthday")
|
|
8742
|
+
self._IssuedCountry = params.get("IssuedCountry")
|
|
8743
|
+
memeber_set = set(params.keys())
|
|
8744
|
+
for name, value in vars(self).items():
|
|
8745
|
+
property_name = name[1:]
|
|
8746
|
+
if property_name in memeber_set:
|
|
8747
|
+
memeber_set.remove(property_name)
|
|
8748
|
+
if len(memeber_set) > 0:
|
|
8749
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8750
|
+
|
|
8751
|
+
|
|
8752
|
+
|
|
8753
|
+
class PakistanIDCard(AbstractModel):
|
|
8754
|
+
"""Pakistan ID card
|
|
8755
|
+
|
|
8756
|
+
"""
|
|
8757
|
+
|
|
8758
|
+
def __init__(self):
|
|
8759
|
+
r"""
|
|
8760
|
+
:param _LastName: Last name.
|
|
8761
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8762
|
+
:type LastName: str
|
|
8763
|
+
:param _FirstName: First name.
|
|
8764
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8765
|
+
:type FirstName: str
|
|
8766
|
+
:param _LicenseNumber: License number.
|
|
8767
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8768
|
+
:type LicenseNumber: str
|
|
8769
|
+
:param _Age: Age.
|
|
8770
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8771
|
+
:type Age: str
|
|
8772
|
+
:param _Birthday: Birthday.
|
|
8773
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8774
|
+
:type Birthday: str
|
|
8775
|
+
:param _IssuedCountry: Issued country.
|
|
8776
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8777
|
+
:type IssuedCountry: str
|
|
8778
|
+
"""
|
|
8779
|
+
self._LastName = None
|
|
8780
|
+
self._FirstName = None
|
|
8781
|
+
self._LicenseNumber = None
|
|
8782
|
+
self._Age = None
|
|
8783
|
+
self._Birthday = None
|
|
8784
|
+
self._IssuedCountry = None
|
|
8785
|
+
|
|
8786
|
+
@property
|
|
8787
|
+
def LastName(self):
|
|
8788
|
+
"""Last name.
|
|
8789
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8790
|
+
:rtype: str
|
|
8791
|
+
"""
|
|
8792
|
+
return self._LastName
|
|
8793
|
+
|
|
8794
|
+
@LastName.setter
|
|
8795
|
+
def LastName(self, LastName):
|
|
8796
|
+
self._LastName = LastName
|
|
8797
|
+
|
|
8798
|
+
@property
|
|
8799
|
+
def FirstName(self):
|
|
8800
|
+
"""First name.
|
|
8801
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8802
|
+
:rtype: str
|
|
8803
|
+
"""
|
|
8804
|
+
return self._FirstName
|
|
8805
|
+
|
|
8806
|
+
@FirstName.setter
|
|
8807
|
+
def FirstName(self, FirstName):
|
|
8808
|
+
self._FirstName = FirstName
|
|
8809
|
+
|
|
8810
|
+
@property
|
|
8811
|
+
def LicenseNumber(self):
|
|
8812
|
+
"""License number.
|
|
8813
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8814
|
+
:rtype: str
|
|
8815
|
+
"""
|
|
8816
|
+
return self._LicenseNumber
|
|
8817
|
+
|
|
8818
|
+
@LicenseNumber.setter
|
|
8819
|
+
def LicenseNumber(self, LicenseNumber):
|
|
8820
|
+
self._LicenseNumber = LicenseNumber
|
|
8821
|
+
|
|
8822
|
+
@property
|
|
8823
|
+
def Age(self):
|
|
8824
|
+
"""Age.
|
|
8825
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8826
|
+
:rtype: str
|
|
8827
|
+
"""
|
|
8828
|
+
return self._Age
|
|
8829
|
+
|
|
8830
|
+
@Age.setter
|
|
8831
|
+
def Age(self, Age):
|
|
8832
|
+
self._Age = Age
|
|
8833
|
+
|
|
8834
|
+
@property
|
|
8835
|
+
def Birthday(self):
|
|
8836
|
+
"""Birthday.
|
|
8837
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8838
|
+
:rtype: str
|
|
8839
|
+
"""
|
|
8840
|
+
return self._Birthday
|
|
8841
|
+
|
|
8842
|
+
@Birthday.setter
|
|
8843
|
+
def Birthday(self, Birthday):
|
|
8844
|
+
self._Birthday = Birthday
|
|
8845
|
+
|
|
8846
|
+
@property
|
|
8847
|
+
def IssuedCountry(self):
|
|
8848
|
+
"""Issued country.
|
|
8849
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8850
|
+
:rtype: str
|
|
8851
|
+
"""
|
|
8852
|
+
return self._IssuedCountry
|
|
8853
|
+
|
|
8854
|
+
@IssuedCountry.setter
|
|
8855
|
+
def IssuedCountry(self, IssuedCountry):
|
|
8856
|
+
self._IssuedCountry = IssuedCountry
|
|
8857
|
+
|
|
8858
|
+
|
|
8859
|
+
def _deserialize(self, params):
|
|
8860
|
+
self._LastName = params.get("LastName")
|
|
8861
|
+
self._FirstName = params.get("FirstName")
|
|
8862
|
+
self._LicenseNumber = params.get("LicenseNumber")
|
|
8863
|
+
self._Age = params.get("Age")
|
|
8864
|
+
self._Birthday = params.get("Birthday")
|
|
8865
|
+
self._IssuedCountry = params.get("IssuedCountry")
|
|
8866
|
+
memeber_set = set(params.keys())
|
|
8867
|
+
for name, value in vars(self).items():
|
|
8868
|
+
property_name = name[1:]
|
|
8869
|
+
if property_name in memeber_set:
|
|
8870
|
+
memeber_set.remove(property_name)
|
|
8871
|
+
if len(memeber_set) > 0:
|
|
8872
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8873
|
+
|
|
8874
|
+
|
|
8875
|
+
|
|
8090
8876
|
class PhilippinesDrivingLicense(AbstractModel):
|
|
8091
8877
|
"""Philippines driving license
|
|
8092
8878
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=oGmHl5K_Z9HCJhdBG2Cwak__7keycg4ep0CKFvY9Xfs,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -66,9 +66,9 @@ tencentcloud/cbs/v20170312/errorcodes.py,sha256=spsaD0VnuuaveSdTgfgwcGUpYYi5hkRy
|
|
|
66
66
|
tencentcloud/cbs/v20170312/models.py,sha256=IDfQMTM-fKTnwUCwrRr7LPchEVrcuZOgFCbWjSSZv3Q,296697
|
|
67
67
|
tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
68
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
tencentcloud/ccc/v20200210/ccc_client.py,sha256=
|
|
69
|
+
tencentcloud/ccc/v20200210/ccc_client.py,sha256=T_mU_39f_SVzO3Kr-3GFh1RrCrPQErs9XQ5A32JuKSs,51059
|
|
70
70
|
tencentcloud/ccc/v20200210/errorcodes.py,sha256=4ND1rU15-nGQaj7CqeXpLu0gT4ajV7CQX3gf7e0-jZ8,5234
|
|
71
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
|
71
|
+
tencentcloud/ccc/v20200210/models.py,sha256=hQaPWXlW1slcdxL4ieVatieZjsfOINK84dNd9mi6F7o,400484
|
|
72
72
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=lsVv0haXhHe9XbWFlQc65RbthqZKIGqdfZTcBqW7BEE,137214
|
|
@@ -283,8 +283,8 @@ tencentcloud/facefusion/v20220927/models.py,sha256=dNoH82457_skQb1UgUc92iIIdSRpO
|
|
|
283
283
|
tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
284
|
tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
285
|
tencentcloud/faceid/v20180301/errorcodes.py,sha256=QIZO_mdFiPmYrWS3wGMlLnNKTnV_6vVmB61ec6QSymE,9715
|
|
286
|
-
tencentcloud/faceid/v20180301/faceid_client.py,sha256=
|
|
287
|
-
tencentcloud/faceid/v20180301/models.py,sha256=
|
|
286
|
+
tencentcloud/faceid/v20180301/faceid_client.py,sha256=Vk2Eu8CyYFpOudu1-hHbcBI6PkCTsrK1VPsVBzJcynk,24217
|
|
287
|
+
tencentcloud/faceid/v20180301/models.py,sha256=QgtsZjHQLgrcnXoEZ4URQ5XJX1hIm5aPG2t3rYklXg4,383070
|
|
288
288
|
tencentcloud/gaap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
289
289
|
tencentcloud/gaap/v20180529/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
290
|
tencentcloud/gaap/v20180529/errorcodes.py,sha256=hco_fu2P-boFi-3-kcpWCYfaay9RrwmhwHLqzvry2xM,11142
|
|
@@ -614,7 +614,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
614
614
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
615
615
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
616
616
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
617
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
618
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
619
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
620
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
617
|
+
tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/METADATA,sha256=NBD_Q4iEiIZZXXhjch9GHy-pcSIrSHiwLPRLDLbtKmc,1628
|
|
618
|
+
tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
619
|
+
tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
620
|
+
tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/RECORD,,
|
|
File without changes
|