Skip to content

Commit 75257db

Browse files
release 3.0.1182
1 parent 1710746 commit 75257db

File tree

4 files changed

+198
-116
lines changed

4 files changed

+198
-116
lines changed

tencentcloud/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
__version__ = '3.0.1181'
16+
__version__ = '3.0.1182'

tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -380,9 +380,8 @@ def DescribeCustomerBillSummary(self, request):
380380

381381

382382
def DescribeCustomerInfo(self, request):
383-
"""This API is used to query the customer information.
384-
385-
Callable roles: Distributor, Reseller
383+
"""This API is used to query sub-customer information.
384+
Invocation roles: reseller, first-level distributor.
386385
387386
:param request: Request instance for DescribeCustomerInfo.
388387
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeCustomerInfoRequest`

tencentcloud/intlpartnersmgt/v20220928/models.py

+99-16
Original file line numberDiff line numberDiff line change
@@ -3359,19 +3359,33 @@ def __init__(self):
33593359
:type Name: str
33603360
:param _BindTime: Binding time.
33613361
:type BindTime: str
3362-
:param _AccountStatus: Account status
3363-
.
3362+
:param _AccountStatus: Account status.
33643363
0: normal.
33653364
1: forcibly mandatory (this function is not supported yet).
33663365
2: mandatory arrears.
33673366
:type AccountStatus: str
3368-
:param _AuthStatus: Identity verification status.
3369-
-1: files not uploaded.
3370-
0: not submitted for review.
3371-
1: under review.
3372-
2: review error.
3373-
3: approved.
3367+
:param _AuthStatus: Specifies the identity verification status.
3368+
-999: account information not found.
3369+
-1: file not uploaded.
3370+
0: pending review.
3371+
Under review.
3372+
Error in review: 2.
3373+
3: pass review.
33743374
:type AuthStatus: str
3375+
:param _AuthType: Real-Name type.
3376+
-1: default value. no such information.
3377+
0: personal type.
3378+
1: enterprise type.
3379+
:type AuthType: int
3380+
:param _CidRegisterTime: Specifies the registration time of the cid.
3381+
:type CidRegisterTime: str
3382+
:param _UinRegisterTime: Specifies the registration time of the uin.
3383+
:type UinRegisterTime: str
3384+
:param _AuthPassTime: Time when real-name authentication passed.
3385+
:type AuthPassTime: str
3386+
:param _HasExpense: Whether there is consumption.
3387+
0: no consumption; 1: consumption.
3388+
:type HasExpense: int
33753389
"""
33763390
self._CustomerUin = None
33773391
self._Email = None
@@ -3381,6 +3395,11 @@ def __init__(self):
33813395
self._BindTime = None
33823396
self._AccountStatus = None
33833397
self._AuthStatus = None
3398+
self._AuthType = None
3399+
self._CidRegisterTime = None
3400+
self._UinRegisterTime = None
3401+
self._AuthPassTime = None
3402+
self._HasExpense = None
33843403

33853404
@property
33863405
def CustomerUin(self):
@@ -3450,8 +3469,7 @@ def BindTime(self, BindTime):
34503469

34513470
@property
34523471
def AccountStatus(self):
3453-
"""Account status
3454-
.
3472+
"""Account status.
34553473
0: normal.
34563474
1: forcibly mandatory (this function is not supported yet).
34573475
2: mandatory arrears.
@@ -3465,12 +3483,13 @@ def AccountStatus(self, AccountStatus):
34653483

34663484
@property
34673485
def AuthStatus(self):
3468-
"""Identity verification status.
3469-
-1: files not uploaded.
3470-
0: not submitted for review.
3471-
1: under review.
3472-
2: review error.
3473-
3: approved.
3486+
"""Specifies the identity verification status.
3487+
-999: account information not found.
3488+
-1: file not uploaded.
3489+
0: pending review.
3490+
Under review.
3491+
Error in review: 2.
3492+
3: pass review.
34743493
:rtype: str
34753494
"""
34763495
return self._AuthStatus
@@ -3479,6 +3498,65 @@ def AuthStatus(self):
34793498
def AuthStatus(self, AuthStatus):
34803499
self._AuthStatus = AuthStatus
34813500

3501+
@property
3502+
def AuthType(self):
3503+
"""Real-Name type.
3504+
-1: default value. no such information.
3505+
0: personal type.
3506+
1: enterprise type.
3507+
:rtype: int
3508+
"""
3509+
return self._AuthType
3510+
3511+
@AuthType.setter
3512+
def AuthType(self, AuthType):
3513+
self._AuthType = AuthType
3514+
3515+
@property
3516+
def CidRegisterTime(self):
3517+
"""Specifies the registration time of the cid.
3518+
:rtype: str
3519+
"""
3520+
return self._CidRegisterTime
3521+
3522+
@CidRegisterTime.setter
3523+
def CidRegisterTime(self, CidRegisterTime):
3524+
self._CidRegisterTime = CidRegisterTime
3525+
3526+
@property
3527+
def UinRegisterTime(self):
3528+
"""Specifies the registration time of the uin.
3529+
:rtype: str
3530+
"""
3531+
return self._UinRegisterTime
3532+
3533+
@UinRegisterTime.setter
3534+
def UinRegisterTime(self, UinRegisterTime):
3535+
self._UinRegisterTime = UinRegisterTime
3536+
3537+
@property
3538+
def AuthPassTime(self):
3539+
"""Time when real-name authentication passed.
3540+
:rtype: str
3541+
"""
3542+
return self._AuthPassTime
3543+
3544+
@AuthPassTime.setter
3545+
def AuthPassTime(self, AuthPassTime):
3546+
self._AuthPassTime = AuthPassTime
3547+
3548+
@property
3549+
def HasExpense(self):
3550+
"""Whether there is consumption.
3551+
0: no consumption; 1: consumption.
3552+
:rtype: int
3553+
"""
3554+
return self._HasExpense
3555+
3556+
@HasExpense.setter
3557+
def HasExpense(self, HasExpense):
3558+
self._HasExpense = HasExpense
3559+
34823560

34833561
def _deserialize(self, params):
34843562
self._CustomerUin = params.get("CustomerUin")
@@ -3489,6 +3567,11 @@ def _deserialize(self, params):
34893567
self._BindTime = params.get("BindTime")
34903568
self._AccountStatus = params.get("AccountStatus")
34913569
self._AuthStatus = params.get("AuthStatus")
3570+
self._AuthType = params.get("AuthType")
3571+
self._CidRegisterTime = params.get("CidRegisterTime")
3572+
self._UinRegisterTime = params.get("UinRegisterTime")
3573+
self._AuthPassTime = params.get("AuthPassTime")
3574+
self._HasExpense = params.get("HasExpense")
34923575
memeber_set = set(params.keys())
34933576
for name, value in vars(self).items():
34943577
property_name = name[1:]

0 commit comments

Comments
 (0)