@@ -3359,19 +3359,33 @@ def __init__(self):
3359
3359
:type Name: str
3360
3360
:param _BindTime: Binding time.
3361
3361
:type BindTime: str
3362
- :param _AccountStatus: Account status
3363
- .
3362
+ :param _AccountStatus: Account status.
3364
3363
0: normal.
3365
3364
1: forcibly mandatory (this function is not supported yet).
3366
3365
2: mandatory arrears.
3367
3366
: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.
3374
3374
: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
3375
3389
"""
3376
3390
self ._CustomerUin = None
3377
3391
self ._Email = None
@@ -3381,6 +3395,11 @@ def __init__(self):
3381
3395
self ._BindTime = None
3382
3396
self ._AccountStatus = None
3383
3397
self ._AuthStatus = None
3398
+ self ._AuthType = None
3399
+ self ._CidRegisterTime = None
3400
+ self ._UinRegisterTime = None
3401
+ self ._AuthPassTime = None
3402
+ self ._HasExpense = None
3384
3403
3385
3404
@property
3386
3405
def CustomerUin (self ):
@@ -3450,8 +3469,7 @@ def BindTime(self, BindTime):
3450
3469
3451
3470
@property
3452
3471
def AccountStatus (self ):
3453
- """Account status
3454
- .
3472
+ """Account status.
3455
3473
0: normal.
3456
3474
1: forcibly mandatory (this function is not supported yet).
3457
3475
2: mandatory arrears.
@@ -3465,12 +3483,13 @@ def AccountStatus(self, AccountStatus):
3465
3483
3466
3484
@property
3467
3485
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.
3474
3493
:rtype: str
3475
3494
"""
3476
3495
return self ._AuthStatus
@@ -3479,6 +3498,65 @@ def AuthStatus(self):
3479
3498
def AuthStatus (self , AuthStatus ):
3480
3499
self ._AuthStatus = AuthStatus
3481
3500
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
+
3482
3560
3483
3561
def _deserialize (self , params ):
3484
3562
self ._CustomerUin = params .get ("CustomerUin" )
@@ -3489,6 +3567,11 @@ def _deserialize(self, params):
3489
3567
self ._BindTime = params .get ("BindTime" )
3490
3568
self ._AccountStatus = params .get ("AccountStatus" )
3491
3569
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" )
3492
3575
memeber_set = set (params .keys ())
3493
3576
for name , value in vars (self ).items ():
3494
3577
property_name = name [1 :]
0 commit comments