tencentcloud-sdk-python-faceid 3.0.1327__tar.gz → 3.0.1328__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.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/setup.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud/faceid/v20180301/models.py +26 -12
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud_sdk_python_faceid.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-faceid-3.0.1328/tencentcloud_sdk_python_faceid.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-faceid-3.0.1327/tencentcloud_sdk_python_faceid.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/README.rst +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/setup.cfg +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud/faceid/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud/faceid/v20180301/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud/faceid/v20180301/errorcodes.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud/faceid/v20180301/faceid_client.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud_sdk_python_faceid.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud_sdk_python_faceid.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/tencentcloud_sdk_python_faceid.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/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.1328"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Faceid SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -6405,11 +6405,17 @@ class GetWeChatBillDetailsRequest(AbstractModel):
|
|
|
6405
6405
|
|
|
6406
6406
|
def __init__(self):
|
|
6407
6407
|
r"""
|
|
6408
|
-
:param _Date: 拉取的日期(YYYY-MM-DD
|
|
6408
|
+
:param _Date: 拉取的日期(YYYY-MM-DD)。
|
|
6409
|
+
- 最大可追溯到365天前。
|
|
6410
|
+
- 当天6点后才能拉取前一天的数据。
|
|
6409
6411
|
:type Date: str
|
|
6410
|
-
:param _Cursor:
|
|
6412
|
+
:param _Cursor: 游标。
|
|
6413
|
+
- 用于分页。
|
|
6414
|
+
- 取第一页时传0,取后续页面时,传入本接口响应中返回的NextCursor字段的值。
|
|
6411
6415
|
:type Cursor: int
|
|
6412
|
-
:param _RuleId: 需要拉取账单详情业务对应的RuleId
|
|
6416
|
+
:param _RuleId: 需要拉取账单详情业务对应的RuleId。
|
|
6417
|
+
- 不传会返回所有RuleId数据。
|
|
6418
|
+
- 默认为空字符串。
|
|
6413
6419
|
:type RuleId: str
|
|
6414
6420
|
"""
|
|
6415
6421
|
self._Date = None
|
|
@@ -6418,7 +6424,9 @@ class GetWeChatBillDetailsRequest(AbstractModel):
|
|
|
6418
6424
|
|
|
6419
6425
|
@property
|
|
6420
6426
|
def Date(self):
|
|
6421
|
-
"""拉取的日期(YYYY-MM-DD
|
|
6427
|
+
"""拉取的日期(YYYY-MM-DD)。
|
|
6428
|
+
- 最大可追溯到365天前。
|
|
6429
|
+
- 当天6点后才能拉取前一天的数据。
|
|
6422
6430
|
:rtype: str
|
|
6423
6431
|
"""
|
|
6424
6432
|
return self._Date
|
|
@@ -6429,7 +6437,9 @@ class GetWeChatBillDetailsRequest(AbstractModel):
|
|
|
6429
6437
|
|
|
6430
6438
|
@property
|
|
6431
6439
|
def Cursor(self):
|
|
6432
|
-
"""
|
|
6440
|
+
"""游标。
|
|
6441
|
+
- 用于分页。
|
|
6442
|
+
- 取第一页时传0,取后续页面时,传入本接口响应中返回的NextCursor字段的值。
|
|
6433
6443
|
:rtype: int
|
|
6434
6444
|
"""
|
|
6435
6445
|
return self._Cursor
|
|
@@ -6440,7 +6450,9 @@ class GetWeChatBillDetailsRequest(AbstractModel):
|
|
|
6440
6450
|
|
|
6441
6451
|
@property
|
|
6442
6452
|
def RuleId(self):
|
|
6443
|
-
"""需要拉取账单详情业务对应的RuleId
|
|
6453
|
+
"""需要拉取账单详情业务对应的RuleId。
|
|
6454
|
+
- 不传会返回所有RuleId数据。
|
|
6455
|
+
- 默认为空字符串。
|
|
6444
6456
|
:rtype: str
|
|
6445
6457
|
"""
|
|
6446
6458
|
return self._RuleId
|
|
@@ -6471,11 +6483,12 @@ class GetWeChatBillDetailsResponse(AbstractModel):
|
|
|
6471
6483
|
|
|
6472
6484
|
def __init__(self):
|
|
6473
6485
|
r"""
|
|
6474
|
-
:param _HasNextPage:
|
|
6486
|
+
:param _HasNextPage: 是否还有下一页。
|
|
6487
|
+
- 该字段为true时,需要将NextCursor的值作为入参Cursor继续调用本接口。
|
|
6475
6488
|
:type HasNextPage: bool
|
|
6476
|
-
:param _NextCursor:
|
|
6489
|
+
:param _NextCursor: 下一页的游标,用于分页。
|
|
6477
6490
|
:type NextCursor: int
|
|
6478
|
-
:param _WeChatBillDetails:
|
|
6491
|
+
:param _WeChatBillDetails: 数据。
|
|
6479
6492
|
:type WeChatBillDetails: list of WeChatBillDetail
|
|
6480
6493
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6481
6494
|
:type RequestId: str
|
|
@@ -6487,7 +6500,8 @@ class GetWeChatBillDetailsResponse(AbstractModel):
|
|
|
6487
6500
|
|
|
6488
6501
|
@property
|
|
6489
6502
|
def HasNextPage(self):
|
|
6490
|
-
"""
|
|
6503
|
+
"""是否还有下一页。
|
|
6504
|
+
- 该字段为true时,需要将NextCursor的值作为入参Cursor继续调用本接口。
|
|
6491
6505
|
:rtype: bool
|
|
6492
6506
|
"""
|
|
6493
6507
|
return self._HasNextPage
|
|
@@ -6498,7 +6512,7 @@ class GetWeChatBillDetailsResponse(AbstractModel):
|
|
|
6498
6512
|
|
|
6499
6513
|
@property
|
|
6500
6514
|
def NextCursor(self):
|
|
6501
|
-
"""
|
|
6515
|
+
"""下一页的游标,用于分页。
|
|
6502
6516
|
:rtype: int
|
|
6503
6517
|
"""
|
|
6504
6518
|
return self._NextCursor
|
|
@@ -6509,7 +6523,7 @@ class GetWeChatBillDetailsResponse(AbstractModel):
|
|
|
6509
6523
|
|
|
6510
6524
|
@property
|
|
6511
6525
|
def WeChatBillDetails(self):
|
|
6512
|
-
"""
|
|
6526
|
+
"""数据。
|
|
6513
6527
|
:rtype: list of WeChatBillDetail
|
|
6514
6528
|
"""
|
|
6515
6529
|
return self._WeChatBillDetails
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1328
|
tencentcloud-sdk-python-faceid-3.0.1327/tencentcloud_sdk_python_faceid.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1327
|
{tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-faceid-3.0.1327 → tencentcloud-sdk-python-faceid-3.0.1328}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|