@alicloud/cloudauth20190307 2.6.2 → 2.7.0
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.
- package/dist/client.d.ts +524 -0
- package/dist/client.js +665 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1005 -50
package/src/client.ts
CHANGED
|
@@ -153,6 +153,7 @@ export class BankMetaVerifyRequest extends $tea.Model {
|
|
|
153
153
|
* 429001********8211
|
|
154
154
|
*/
|
|
155
155
|
identifyNum?: string;
|
|
156
|
+
identityType?: string;
|
|
156
157
|
/**
|
|
157
158
|
* @example
|
|
158
159
|
* 138******11
|
|
@@ -178,6 +179,7 @@ export class BankMetaVerifyRequest extends $tea.Model {
|
|
|
178
179
|
return {
|
|
179
180
|
bankCard: 'BankCard',
|
|
180
181
|
identifyNum: 'IdentifyNum',
|
|
182
|
+
identityType: 'IdentityType',
|
|
181
183
|
mobile: 'Mobile',
|
|
182
184
|
paramType: 'ParamType',
|
|
183
185
|
productType: 'ProductType',
|
|
@@ -190,6 +192,7 @@ export class BankMetaVerifyRequest extends $tea.Model {
|
|
|
190
192
|
return {
|
|
191
193
|
bankCard: 'string',
|
|
192
194
|
identifyNum: 'string',
|
|
195
|
+
identityType: 'string',
|
|
193
196
|
mobile: 'string',
|
|
194
197
|
paramType: 'string',
|
|
195
198
|
productType: 'string',
|
|
@@ -3547,6 +3550,540 @@ export class ModifyDeviceInfoResponse extends $tea.Model {
|
|
|
3547
3550
|
}
|
|
3548
3551
|
}
|
|
3549
3552
|
|
|
3553
|
+
export class Vehicle5ItemQueryRequest extends $tea.Model {
|
|
3554
|
+
/**
|
|
3555
|
+
* @example
|
|
3556
|
+
* normal
|
|
3557
|
+
*/
|
|
3558
|
+
paramType?: string;
|
|
3559
|
+
vehicleNum?: string;
|
|
3560
|
+
/**
|
|
3561
|
+
* @example
|
|
3562
|
+
* 02
|
|
3563
|
+
*/
|
|
3564
|
+
vehicleType?: string;
|
|
3565
|
+
static names(): { [key: string]: string } {
|
|
3566
|
+
return {
|
|
3567
|
+
paramType: 'ParamType',
|
|
3568
|
+
vehicleNum: 'VehicleNum',
|
|
3569
|
+
vehicleType: 'VehicleType',
|
|
3570
|
+
};
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
static types(): { [key: string]: any } {
|
|
3574
|
+
return {
|
|
3575
|
+
paramType: 'string',
|
|
3576
|
+
vehicleNum: 'string',
|
|
3577
|
+
vehicleType: 'string',
|
|
3578
|
+
};
|
|
3579
|
+
}
|
|
3580
|
+
|
|
3581
|
+
constructor(map?: { [key: string]: any }) {
|
|
3582
|
+
super(map);
|
|
3583
|
+
}
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
|
+
export class Vehicle5ItemQueryResponseBody extends $tea.Model {
|
|
3587
|
+
/**
|
|
3588
|
+
* @example
|
|
3589
|
+
* 200
|
|
3590
|
+
*/
|
|
3591
|
+
code?: string;
|
|
3592
|
+
/**
|
|
3593
|
+
* @example
|
|
3594
|
+
* success
|
|
3595
|
+
*/
|
|
3596
|
+
message?: string;
|
|
3597
|
+
/**
|
|
3598
|
+
* @example
|
|
3599
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0D******
|
|
3600
|
+
*/
|
|
3601
|
+
requestId?: string;
|
|
3602
|
+
resultObject?: Vehicle5ItemQueryResponseBodyResultObject;
|
|
3603
|
+
static names(): { [key: string]: string } {
|
|
3604
|
+
return {
|
|
3605
|
+
code: 'Code',
|
|
3606
|
+
message: 'Message',
|
|
3607
|
+
requestId: 'RequestId',
|
|
3608
|
+
resultObject: 'ResultObject',
|
|
3609
|
+
};
|
|
3610
|
+
}
|
|
3611
|
+
|
|
3612
|
+
static types(): { [key: string]: any } {
|
|
3613
|
+
return {
|
|
3614
|
+
code: 'string',
|
|
3615
|
+
message: 'string',
|
|
3616
|
+
requestId: 'string',
|
|
3617
|
+
resultObject: Vehicle5ItemQueryResponseBodyResultObject,
|
|
3618
|
+
};
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3621
|
+
constructor(map?: { [key: string]: any }) {
|
|
3622
|
+
super(map);
|
|
3623
|
+
}
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
export class Vehicle5ItemQueryResponse extends $tea.Model {
|
|
3627
|
+
headers?: { [key: string]: string };
|
|
3628
|
+
statusCode?: number;
|
|
3629
|
+
body?: Vehicle5ItemQueryResponseBody;
|
|
3630
|
+
static names(): { [key: string]: string } {
|
|
3631
|
+
return {
|
|
3632
|
+
headers: 'headers',
|
|
3633
|
+
statusCode: 'statusCode',
|
|
3634
|
+
body: 'body',
|
|
3635
|
+
};
|
|
3636
|
+
}
|
|
3637
|
+
|
|
3638
|
+
static types(): { [key: string]: any } {
|
|
3639
|
+
return {
|
|
3640
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3641
|
+
statusCode: 'number',
|
|
3642
|
+
body: Vehicle5ItemQueryResponseBody,
|
|
3643
|
+
};
|
|
3644
|
+
}
|
|
3645
|
+
|
|
3646
|
+
constructor(map?: { [key: string]: any }) {
|
|
3647
|
+
super(map);
|
|
3648
|
+
}
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
export class VehicleInsureQueryRequest extends $tea.Model {
|
|
3652
|
+
/**
|
|
3653
|
+
* @example
|
|
3654
|
+
* normal
|
|
3655
|
+
*/
|
|
3656
|
+
paramType?: string;
|
|
3657
|
+
vehicleNum?: string;
|
|
3658
|
+
/**
|
|
3659
|
+
* @example
|
|
3660
|
+
* 02
|
|
3661
|
+
*/
|
|
3662
|
+
vehicleType?: string;
|
|
3663
|
+
/**
|
|
3664
|
+
* @example
|
|
3665
|
+
* LB**************
|
|
3666
|
+
*/
|
|
3667
|
+
vin?: string;
|
|
3668
|
+
static names(): { [key: string]: string } {
|
|
3669
|
+
return {
|
|
3670
|
+
paramType: 'ParamType',
|
|
3671
|
+
vehicleNum: 'VehicleNum',
|
|
3672
|
+
vehicleType: 'VehicleType',
|
|
3673
|
+
vin: 'Vin',
|
|
3674
|
+
};
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
static types(): { [key: string]: any } {
|
|
3678
|
+
return {
|
|
3679
|
+
paramType: 'string',
|
|
3680
|
+
vehicleNum: 'string',
|
|
3681
|
+
vehicleType: 'string',
|
|
3682
|
+
vin: 'string',
|
|
3683
|
+
};
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3686
|
+
constructor(map?: { [key: string]: any }) {
|
|
3687
|
+
super(map);
|
|
3688
|
+
}
|
|
3689
|
+
}
|
|
3690
|
+
|
|
3691
|
+
export class VehicleInsureQueryResponseBody extends $tea.Model {
|
|
3692
|
+
/**
|
|
3693
|
+
* @example
|
|
3694
|
+
* 200
|
|
3695
|
+
*/
|
|
3696
|
+
code?: string;
|
|
3697
|
+
/**
|
|
3698
|
+
* @example
|
|
3699
|
+
* success
|
|
3700
|
+
*/
|
|
3701
|
+
message?: string;
|
|
3702
|
+
/**
|
|
3703
|
+
* @example
|
|
3704
|
+
* 5A6229C0-E156-48E4-B6EC-0F52********
|
|
3705
|
+
*/
|
|
3706
|
+
requestId?: string;
|
|
3707
|
+
resultObject?: VehicleInsureQueryResponseBodyResultObject;
|
|
3708
|
+
static names(): { [key: string]: string } {
|
|
3709
|
+
return {
|
|
3710
|
+
code: 'Code',
|
|
3711
|
+
message: 'Message',
|
|
3712
|
+
requestId: 'RequestId',
|
|
3713
|
+
resultObject: 'ResultObject',
|
|
3714
|
+
};
|
|
3715
|
+
}
|
|
3716
|
+
|
|
3717
|
+
static types(): { [key: string]: any } {
|
|
3718
|
+
return {
|
|
3719
|
+
code: 'string',
|
|
3720
|
+
message: 'string',
|
|
3721
|
+
requestId: 'string',
|
|
3722
|
+
resultObject: VehicleInsureQueryResponseBodyResultObject,
|
|
3723
|
+
};
|
|
3724
|
+
}
|
|
3725
|
+
|
|
3726
|
+
constructor(map?: { [key: string]: any }) {
|
|
3727
|
+
super(map);
|
|
3728
|
+
}
|
|
3729
|
+
}
|
|
3730
|
+
|
|
3731
|
+
export class VehicleInsureQueryResponse extends $tea.Model {
|
|
3732
|
+
headers?: { [key: string]: string };
|
|
3733
|
+
statusCode?: number;
|
|
3734
|
+
body?: VehicleInsureQueryResponseBody;
|
|
3735
|
+
static names(): { [key: string]: string } {
|
|
3736
|
+
return {
|
|
3737
|
+
headers: 'headers',
|
|
3738
|
+
statusCode: 'statusCode',
|
|
3739
|
+
body: 'body',
|
|
3740
|
+
};
|
|
3741
|
+
}
|
|
3742
|
+
|
|
3743
|
+
static types(): { [key: string]: any } {
|
|
3744
|
+
return {
|
|
3745
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3746
|
+
statusCode: 'number',
|
|
3747
|
+
body: VehicleInsureQueryResponseBody,
|
|
3748
|
+
};
|
|
3749
|
+
}
|
|
3750
|
+
|
|
3751
|
+
constructor(map?: { [key: string]: any }) {
|
|
3752
|
+
super(map);
|
|
3753
|
+
}
|
|
3754
|
+
}
|
|
3755
|
+
|
|
3756
|
+
export class VehicleMetaVerifyRequest extends $tea.Model {
|
|
3757
|
+
/**
|
|
3758
|
+
* @example
|
|
3759
|
+
* 4****************1
|
|
3760
|
+
*/
|
|
3761
|
+
identifyNum?: string;
|
|
3762
|
+
/**
|
|
3763
|
+
* @example
|
|
3764
|
+
* normal
|
|
3765
|
+
*/
|
|
3766
|
+
paramType?: string;
|
|
3767
|
+
userName?: string;
|
|
3768
|
+
vehicleNum?: string;
|
|
3769
|
+
/**
|
|
3770
|
+
* @example
|
|
3771
|
+
* 02
|
|
3772
|
+
*/
|
|
3773
|
+
vehicleType?: string;
|
|
3774
|
+
/**
|
|
3775
|
+
* @example
|
|
3776
|
+
* VEHICLE_2_META
|
|
3777
|
+
*/
|
|
3778
|
+
verifyMetaType?: string;
|
|
3779
|
+
static names(): { [key: string]: string } {
|
|
3780
|
+
return {
|
|
3781
|
+
identifyNum: 'IdentifyNum',
|
|
3782
|
+
paramType: 'ParamType',
|
|
3783
|
+
userName: 'UserName',
|
|
3784
|
+
vehicleNum: 'VehicleNum',
|
|
3785
|
+
vehicleType: 'VehicleType',
|
|
3786
|
+
verifyMetaType: 'VerifyMetaType',
|
|
3787
|
+
};
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3790
|
+
static types(): { [key: string]: any } {
|
|
3791
|
+
return {
|
|
3792
|
+
identifyNum: 'string',
|
|
3793
|
+
paramType: 'string',
|
|
3794
|
+
userName: 'string',
|
|
3795
|
+
vehicleNum: 'string',
|
|
3796
|
+
vehicleType: 'string',
|
|
3797
|
+
verifyMetaType: 'string',
|
|
3798
|
+
};
|
|
3799
|
+
}
|
|
3800
|
+
|
|
3801
|
+
constructor(map?: { [key: string]: any }) {
|
|
3802
|
+
super(map);
|
|
3803
|
+
}
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3806
|
+
export class VehicleMetaVerifyResponseBody extends $tea.Model {
|
|
3807
|
+
/**
|
|
3808
|
+
* @example
|
|
3809
|
+
* 200
|
|
3810
|
+
*/
|
|
3811
|
+
code?: string;
|
|
3812
|
+
/**
|
|
3813
|
+
* @example
|
|
3814
|
+
* success
|
|
3815
|
+
*/
|
|
3816
|
+
message?: string;
|
|
3817
|
+
/**
|
|
3818
|
+
* @remarks
|
|
3819
|
+
* Id of the request
|
|
3820
|
+
*
|
|
3821
|
+
* @example
|
|
3822
|
+
* 8FC3D6AC-9FED-4311-8DA7-C4BF4*****
|
|
3823
|
+
*/
|
|
3824
|
+
requestId?: string;
|
|
3825
|
+
resultObject?: VehicleMetaVerifyResponseBodyResultObject;
|
|
3826
|
+
static names(): { [key: string]: string } {
|
|
3827
|
+
return {
|
|
3828
|
+
code: 'Code',
|
|
3829
|
+
message: 'Message',
|
|
3830
|
+
requestId: 'RequestId',
|
|
3831
|
+
resultObject: 'ResultObject',
|
|
3832
|
+
};
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3835
|
+
static types(): { [key: string]: any } {
|
|
3836
|
+
return {
|
|
3837
|
+
code: 'string',
|
|
3838
|
+
message: 'string',
|
|
3839
|
+
requestId: 'string',
|
|
3840
|
+
resultObject: VehicleMetaVerifyResponseBodyResultObject,
|
|
3841
|
+
};
|
|
3842
|
+
}
|
|
3843
|
+
|
|
3844
|
+
constructor(map?: { [key: string]: any }) {
|
|
3845
|
+
super(map);
|
|
3846
|
+
}
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
export class VehicleMetaVerifyResponse extends $tea.Model {
|
|
3850
|
+
headers?: { [key: string]: string };
|
|
3851
|
+
statusCode?: number;
|
|
3852
|
+
body?: VehicleMetaVerifyResponseBody;
|
|
3853
|
+
static names(): { [key: string]: string } {
|
|
3854
|
+
return {
|
|
3855
|
+
headers: 'headers',
|
|
3856
|
+
statusCode: 'statusCode',
|
|
3857
|
+
body: 'body',
|
|
3858
|
+
};
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
static types(): { [key: string]: any } {
|
|
3862
|
+
return {
|
|
3863
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3864
|
+
statusCode: 'number',
|
|
3865
|
+
body: VehicleMetaVerifyResponseBody,
|
|
3866
|
+
};
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
constructor(map?: { [key: string]: any }) {
|
|
3870
|
+
super(map);
|
|
3871
|
+
}
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
export class VehicleMetaVerifyV2Request extends $tea.Model {
|
|
3875
|
+
/**
|
|
3876
|
+
* @example
|
|
3877
|
+
* 4****************1
|
|
3878
|
+
*/
|
|
3879
|
+
identifyNum?: string;
|
|
3880
|
+
/**
|
|
3881
|
+
* @example
|
|
3882
|
+
* normal
|
|
3883
|
+
*/
|
|
3884
|
+
paramType?: string;
|
|
3885
|
+
userName?: string;
|
|
3886
|
+
vehicleNum?: string;
|
|
3887
|
+
/**
|
|
3888
|
+
* @example
|
|
3889
|
+
* 02
|
|
3890
|
+
*/
|
|
3891
|
+
vehicleType?: string;
|
|
3892
|
+
/**
|
|
3893
|
+
* @example
|
|
3894
|
+
* VEHICLE_3_META
|
|
3895
|
+
*/
|
|
3896
|
+
verifyMetaType?: string;
|
|
3897
|
+
static names(): { [key: string]: string } {
|
|
3898
|
+
return {
|
|
3899
|
+
identifyNum: 'IdentifyNum',
|
|
3900
|
+
paramType: 'ParamType',
|
|
3901
|
+
userName: 'UserName',
|
|
3902
|
+
vehicleNum: 'VehicleNum',
|
|
3903
|
+
vehicleType: 'VehicleType',
|
|
3904
|
+
verifyMetaType: 'VerifyMetaType',
|
|
3905
|
+
};
|
|
3906
|
+
}
|
|
3907
|
+
|
|
3908
|
+
static types(): { [key: string]: any } {
|
|
3909
|
+
return {
|
|
3910
|
+
identifyNum: 'string',
|
|
3911
|
+
paramType: 'string',
|
|
3912
|
+
userName: 'string',
|
|
3913
|
+
vehicleNum: 'string',
|
|
3914
|
+
vehicleType: 'string',
|
|
3915
|
+
verifyMetaType: 'string',
|
|
3916
|
+
};
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3919
|
+
constructor(map?: { [key: string]: any }) {
|
|
3920
|
+
super(map);
|
|
3921
|
+
}
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
export class VehicleMetaVerifyV2ResponseBody extends $tea.Model {
|
|
3925
|
+
/**
|
|
3926
|
+
* @example
|
|
3927
|
+
* 200
|
|
3928
|
+
*/
|
|
3929
|
+
code?: string;
|
|
3930
|
+
/**
|
|
3931
|
+
* @example
|
|
3932
|
+
* success
|
|
3933
|
+
*/
|
|
3934
|
+
message?: string;
|
|
3935
|
+
/**
|
|
3936
|
+
* @example
|
|
3937
|
+
* 5A6229C0-E156-48E4-B6EC-0F528B******
|
|
3938
|
+
*/
|
|
3939
|
+
requestId?: string;
|
|
3940
|
+
resultObject?: VehicleMetaVerifyV2ResponseBodyResultObject;
|
|
3941
|
+
static names(): { [key: string]: string } {
|
|
3942
|
+
return {
|
|
3943
|
+
code: 'Code',
|
|
3944
|
+
message: 'Message',
|
|
3945
|
+
requestId: 'RequestId',
|
|
3946
|
+
resultObject: 'ResultObject',
|
|
3947
|
+
};
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
static types(): { [key: string]: any } {
|
|
3951
|
+
return {
|
|
3952
|
+
code: 'string',
|
|
3953
|
+
message: 'string',
|
|
3954
|
+
requestId: 'string',
|
|
3955
|
+
resultObject: VehicleMetaVerifyV2ResponseBodyResultObject,
|
|
3956
|
+
};
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
constructor(map?: { [key: string]: any }) {
|
|
3960
|
+
super(map);
|
|
3961
|
+
}
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
export class VehicleMetaVerifyV2Response extends $tea.Model {
|
|
3965
|
+
headers?: { [key: string]: string };
|
|
3966
|
+
statusCode?: number;
|
|
3967
|
+
body?: VehicleMetaVerifyV2ResponseBody;
|
|
3968
|
+
static names(): { [key: string]: string } {
|
|
3969
|
+
return {
|
|
3970
|
+
headers: 'headers',
|
|
3971
|
+
statusCode: 'statusCode',
|
|
3972
|
+
body: 'body',
|
|
3973
|
+
};
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3976
|
+
static types(): { [key: string]: any } {
|
|
3977
|
+
return {
|
|
3978
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3979
|
+
statusCode: 'number',
|
|
3980
|
+
body: VehicleMetaVerifyV2ResponseBody,
|
|
3981
|
+
};
|
|
3982
|
+
}
|
|
3983
|
+
|
|
3984
|
+
constructor(map?: { [key: string]: any }) {
|
|
3985
|
+
super(map);
|
|
3986
|
+
}
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
export class VehicleQueryRequest extends $tea.Model {
|
|
3990
|
+
/**
|
|
3991
|
+
* @example
|
|
3992
|
+
* normal
|
|
3993
|
+
*/
|
|
3994
|
+
paramType?: string;
|
|
3995
|
+
vehicleNum?: string;
|
|
3996
|
+
/**
|
|
3997
|
+
* @example
|
|
3998
|
+
* 02
|
|
3999
|
+
*/
|
|
4000
|
+
vehicleType?: string;
|
|
4001
|
+
static names(): { [key: string]: string } {
|
|
4002
|
+
return {
|
|
4003
|
+
paramType: 'ParamType',
|
|
4004
|
+
vehicleNum: 'VehicleNum',
|
|
4005
|
+
vehicleType: 'VehicleType',
|
|
4006
|
+
};
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
static types(): { [key: string]: any } {
|
|
4010
|
+
return {
|
|
4011
|
+
paramType: 'string',
|
|
4012
|
+
vehicleNum: 'string',
|
|
4013
|
+
vehicleType: 'string',
|
|
4014
|
+
};
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4017
|
+
constructor(map?: { [key: string]: any }) {
|
|
4018
|
+
super(map);
|
|
4019
|
+
}
|
|
4020
|
+
}
|
|
4021
|
+
|
|
4022
|
+
export class VehicleQueryResponseBody extends $tea.Model {
|
|
4023
|
+
/**
|
|
4024
|
+
* @example
|
|
4025
|
+
* 200
|
|
4026
|
+
*/
|
|
4027
|
+
code?: string;
|
|
4028
|
+
/**
|
|
4029
|
+
* @example
|
|
4030
|
+
* success
|
|
4031
|
+
*/
|
|
4032
|
+
message?: string;
|
|
4033
|
+
/**
|
|
4034
|
+
* @example
|
|
4035
|
+
* D6163397-15C5-419C-9ACC-B7C83*******
|
|
4036
|
+
*/
|
|
4037
|
+
requestId?: string;
|
|
4038
|
+
resultObject?: VehicleQueryResponseBodyResultObject;
|
|
4039
|
+
static names(): { [key: string]: string } {
|
|
4040
|
+
return {
|
|
4041
|
+
code: 'Code',
|
|
4042
|
+
message: 'Message',
|
|
4043
|
+
requestId: 'RequestId',
|
|
4044
|
+
resultObject: 'ResultObject',
|
|
4045
|
+
};
|
|
4046
|
+
}
|
|
4047
|
+
|
|
4048
|
+
static types(): { [key: string]: any } {
|
|
4049
|
+
return {
|
|
4050
|
+
code: 'string',
|
|
4051
|
+
message: 'string',
|
|
4052
|
+
requestId: 'string',
|
|
4053
|
+
resultObject: VehicleQueryResponseBodyResultObject,
|
|
4054
|
+
};
|
|
4055
|
+
}
|
|
4056
|
+
|
|
4057
|
+
constructor(map?: { [key: string]: any }) {
|
|
4058
|
+
super(map);
|
|
4059
|
+
}
|
|
4060
|
+
}
|
|
4061
|
+
|
|
4062
|
+
export class VehicleQueryResponse extends $tea.Model {
|
|
4063
|
+
headers?: { [key: string]: string };
|
|
4064
|
+
statusCode?: number;
|
|
4065
|
+
body?: VehicleQueryResponseBody;
|
|
4066
|
+
static names(): { [key: string]: string } {
|
|
4067
|
+
return {
|
|
4068
|
+
headers: 'headers',
|
|
4069
|
+
statusCode: 'statusCode',
|
|
4070
|
+
body: 'body',
|
|
4071
|
+
};
|
|
4072
|
+
}
|
|
4073
|
+
|
|
4074
|
+
static types(): { [key: string]: any } {
|
|
4075
|
+
return {
|
|
4076
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4077
|
+
statusCode: 'number',
|
|
4078
|
+
body: VehicleQueryResponseBody,
|
|
4079
|
+
};
|
|
4080
|
+
}
|
|
4081
|
+
|
|
4082
|
+
constructor(map?: { [key: string]: any }) {
|
|
4083
|
+
super(map);
|
|
4084
|
+
}
|
|
4085
|
+
}
|
|
4086
|
+
|
|
3550
4087
|
export class VerifyMaterialRequest extends $tea.Model {
|
|
3551
4088
|
/**
|
|
3552
4089
|
* @remarks
|
|
@@ -4881,31 +5418,192 @@ export class MobileDetectResponseBodyResultObjectItems extends $tea.Model {
|
|
|
4881
5418
|
ispName?: string;
|
|
4882
5419
|
/**
|
|
4883
5420
|
* @example
|
|
4884
|
-
* 131********
|
|
5421
|
+
* 131********
|
|
5422
|
+
*/
|
|
5423
|
+
mobile?: string;
|
|
5424
|
+
/**
|
|
5425
|
+
* @example
|
|
5426
|
+
* 101
|
|
5427
|
+
*/
|
|
5428
|
+
subCode?: string;
|
|
5429
|
+
static names(): { [key: string]: string } {
|
|
5430
|
+
return {
|
|
5431
|
+
area: 'Area',
|
|
5432
|
+
bizCode: 'BizCode',
|
|
5433
|
+
ispName: 'IspName',
|
|
5434
|
+
mobile: 'Mobile',
|
|
5435
|
+
subCode: 'SubCode',
|
|
5436
|
+
};
|
|
5437
|
+
}
|
|
5438
|
+
|
|
5439
|
+
static types(): { [key: string]: any } {
|
|
5440
|
+
return {
|
|
5441
|
+
area: 'string',
|
|
5442
|
+
bizCode: 'string',
|
|
5443
|
+
ispName: 'string',
|
|
5444
|
+
mobile: 'string',
|
|
5445
|
+
subCode: 'string',
|
|
5446
|
+
};
|
|
5447
|
+
}
|
|
5448
|
+
|
|
5449
|
+
constructor(map?: { [key: string]: any }) {
|
|
5450
|
+
super(map);
|
|
5451
|
+
}
|
|
5452
|
+
}
|
|
5453
|
+
|
|
5454
|
+
export class MobileDetectResponseBodyResultObject extends $tea.Model {
|
|
5455
|
+
/**
|
|
5456
|
+
* @example
|
|
5457
|
+
* 2
|
|
5458
|
+
*/
|
|
5459
|
+
chargeCount?: string;
|
|
5460
|
+
items?: MobileDetectResponseBodyResultObjectItems[];
|
|
5461
|
+
static names(): { [key: string]: string } {
|
|
5462
|
+
return {
|
|
5463
|
+
chargeCount: 'ChargeCount',
|
|
5464
|
+
items: 'Items',
|
|
5465
|
+
};
|
|
5466
|
+
}
|
|
5467
|
+
|
|
5468
|
+
static types(): { [key: string]: any } {
|
|
5469
|
+
return {
|
|
5470
|
+
chargeCount: 'string',
|
|
5471
|
+
items: { 'type': 'array', 'itemType': MobileDetectResponseBodyResultObjectItems },
|
|
5472
|
+
};
|
|
5473
|
+
}
|
|
5474
|
+
|
|
5475
|
+
constructor(map?: { [key: string]: any }) {
|
|
5476
|
+
super(map);
|
|
5477
|
+
}
|
|
5478
|
+
}
|
|
5479
|
+
|
|
5480
|
+
export class MobileOnlineStatusResponseBodyResultObject extends $tea.Model {
|
|
5481
|
+
/**
|
|
5482
|
+
* @example
|
|
5483
|
+
* 1
|
|
5484
|
+
*/
|
|
5485
|
+
bizCode?: string;
|
|
5486
|
+
/**
|
|
5487
|
+
* @example
|
|
5488
|
+
* CMCC
|
|
5489
|
+
*/
|
|
5490
|
+
ispName?: string;
|
|
5491
|
+
/**
|
|
5492
|
+
* @example
|
|
5493
|
+
* 101
|
|
5494
|
+
*/
|
|
5495
|
+
subCode?: string;
|
|
5496
|
+
static names(): { [key: string]: string } {
|
|
5497
|
+
return {
|
|
5498
|
+
bizCode: 'BizCode',
|
|
5499
|
+
ispName: 'IspName',
|
|
5500
|
+
subCode: 'SubCode',
|
|
5501
|
+
};
|
|
5502
|
+
}
|
|
5503
|
+
|
|
5504
|
+
static types(): { [key: string]: any } {
|
|
5505
|
+
return {
|
|
5506
|
+
bizCode: 'string',
|
|
5507
|
+
ispName: 'string',
|
|
5508
|
+
subCode: 'string',
|
|
5509
|
+
};
|
|
5510
|
+
}
|
|
5511
|
+
|
|
5512
|
+
constructor(map?: { [key: string]: any }) {
|
|
5513
|
+
super(map);
|
|
5514
|
+
}
|
|
5515
|
+
}
|
|
5516
|
+
|
|
5517
|
+
export class MobileOnlineTimeResponseBodyResultObject extends $tea.Model {
|
|
5518
|
+
/**
|
|
5519
|
+
* @example
|
|
5520
|
+
* 1
|
|
5521
|
+
*/
|
|
5522
|
+
bizCode?: string;
|
|
5523
|
+
/**
|
|
5524
|
+
* @example
|
|
5525
|
+
* CMCC
|
|
5526
|
+
*/
|
|
5527
|
+
ispName?: string;
|
|
5528
|
+
/**
|
|
5529
|
+
* @example
|
|
5530
|
+
* 5
|
|
5531
|
+
*/
|
|
5532
|
+
timeCode?: string;
|
|
5533
|
+
static names(): { [key: string]: string } {
|
|
5534
|
+
return {
|
|
5535
|
+
bizCode: 'BizCode',
|
|
5536
|
+
ispName: 'IspName',
|
|
5537
|
+
timeCode: 'TimeCode',
|
|
5538
|
+
};
|
|
5539
|
+
}
|
|
5540
|
+
|
|
5541
|
+
static types(): { [key: string]: any } {
|
|
5542
|
+
return {
|
|
5543
|
+
bizCode: 'string',
|
|
5544
|
+
ispName: 'string',
|
|
5545
|
+
timeCode: 'string',
|
|
5546
|
+
};
|
|
5547
|
+
}
|
|
5548
|
+
|
|
5549
|
+
constructor(map?: { [key: string]: any }) {
|
|
5550
|
+
super(map);
|
|
5551
|
+
}
|
|
5552
|
+
}
|
|
5553
|
+
|
|
5554
|
+
export class Vehicle5ItemQueryResponseBodyResultObject extends $tea.Model {
|
|
5555
|
+
/**
|
|
5556
|
+
* @example
|
|
5557
|
+
* 1
|
|
5558
|
+
*/
|
|
5559
|
+
bizCode?: string;
|
|
5560
|
+
vehicleInfo?: string;
|
|
5561
|
+
static names(): { [key: string]: string } {
|
|
5562
|
+
return {
|
|
5563
|
+
bizCode: 'BizCode',
|
|
5564
|
+
vehicleInfo: 'VehicleInfo',
|
|
5565
|
+
};
|
|
5566
|
+
}
|
|
5567
|
+
|
|
5568
|
+
static types(): { [key: string]: any } {
|
|
5569
|
+
return {
|
|
5570
|
+
bizCode: 'string',
|
|
5571
|
+
vehicleInfo: 'string',
|
|
5572
|
+
};
|
|
5573
|
+
}
|
|
5574
|
+
|
|
5575
|
+
constructor(map?: { [key: string]: any }) {
|
|
5576
|
+
super(map);
|
|
5577
|
+
}
|
|
5578
|
+
}
|
|
5579
|
+
|
|
5580
|
+
export class VehicleInsureQueryResponseBodyResultObject extends $tea.Model {
|
|
5581
|
+
/**
|
|
5582
|
+
* @example
|
|
5583
|
+
* 1
|
|
4885
5584
|
*/
|
|
4886
|
-
|
|
5585
|
+
bizCode?: string;
|
|
4887
5586
|
/**
|
|
4888
5587
|
* @example
|
|
4889
|
-
*
|
|
5588
|
+
* {
|
|
5589
|
+
* "firstInsuranceDate": "****-**-**",
|
|
5590
|
+
* "lastInsuranceDate": "****-**",
|
|
5591
|
+
* "latestInsuranceDate": "****-**",
|
|
5592
|
+
* "latestInsuranceDateStart": "****-**"
|
|
5593
|
+
* }
|
|
4890
5594
|
*/
|
|
4891
|
-
|
|
5595
|
+
vehicleInfo?: string;
|
|
4892
5596
|
static names(): { [key: string]: string } {
|
|
4893
5597
|
return {
|
|
4894
|
-
area: 'Area',
|
|
4895
5598
|
bizCode: 'BizCode',
|
|
4896
|
-
|
|
4897
|
-
mobile: 'Mobile',
|
|
4898
|
-
subCode: 'SubCode',
|
|
5599
|
+
vehicleInfo: 'VehicleInfo',
|
|
4899
5600
|
};
|
|
4900
5601
|
}
|
|
4901
5602
|
|
|
4902
5603
|
static types(): { [key: string]: any } {
|
|
4903
5604
|
return {
|
|
4904
|
-
area: 'string',
|
|
4905
5605
|
bizCode: 'string',
|
|
4906
|
-
|
|
4907
|
-
mobile: 'string',
|
|
4908
|
-
subCode: 'string',
|
|
5606
|
+
vehicleInfo: 'string',
|
|
4909
5607
|
};
|
|
4910
5608
|
}
|
|
4911
5609
|
|
|
@@ -4914,24 +5612,21 @@ export class MobileDetectResponseBodyResultObjectItems extends $tea.Model {
|
|
|
4914
5612
|
}
|
|
4915
5613
|
}
|
|
4916
5614
|
|
|
4917
|
-
export class
|
|
5615
|
+
export class VehicleMetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
4918
5616
|
/**
|
|
4919
5617
|
* @example
|
|
4920
|
-
*
|
|
5618
|
+
* 1
|
|
4921
5619
|
*/
|
|
4922
|
-
|
|
4923
|
-
items?: MobileDetectResponseBodyResultObjectItems[];
|
|
5620
|
+
bizCode?: string;
|
|
4924
5621
|
static names(): { [key: string]: string } {
|
|
4925
5622
|
return {
|
|
4926
|
-
|
|
4927
|
-
items: 'Items',
|
|
5623
|
+
bizCode: 'BizCode',
|
|
4928
5624
|
};
|
|
4929
5625
|
}
|
|
4930
5626
|
|
|
4931
5627
|
static types(): { [key: string]: any } {
|
|
4932
5628
|
return {
|
|
4933
|
-
|
|
4934
|
-
items: { 'type': 'array', 'itemType': MobileDetectResponseBodyResultObjectItems },
|
|
5629
|
+
bizCode: 'string',
|
|
4935
5630
|
};
|
|
4936
5631
|
}
|
|
4937
5632
|
|
|
@@ -4940,35 +5635,24 @@ export class MobileDetectResponseBodyResultObject extends $tea.Model {
|
|
|
4940
5635
|
}
|
|
4941
5636
|
}
|
|
4942
5637
|
|
|
4943
|
-
export class
|
|
5638
|
+
export class VehicleMetaVerifyV2ResponseBodyResultObject extends $tea.Model {
|
|
4944
5639
|
/**
|
|
4945
5640
|
* @example
|
|
4946
5641
|
* 1
|
|
4947
5642
|
*/
|
|
4948
5643
|
bizCode?: string;
|
|
4949
|
-
|
|
4950
|
-
* @example
|
|
4951
|
-
* CMCC
|
|
4952
|
-
*/
|
|
4953
|
-
ispName?: string;
|
|
4954
|
-
/**
|
|
4955
|
-
* @example
|
|
4956
|
-
* 101
|
|
4957
|
-
*/
|
|
4958
|
-
subCode?: string;
|
|
5644
|
+
vehicleInfo?: string;
|
|
4959
5645
|
static names(): { [key: string]: string } {
|
|
4960
5646
|
return {
|
|
4961
5647
|
bizCode: 'BizCode',
|
|
4962
|
-
|
|
4963
|
-
subCode: 'SubCode',
|
|
5648
|
+
vehicleInfo: 'VehicleInfo',
|
|
4964
5649
|
};
|
|
4965
5650
|
}
|
|
4966
5651
|
|
|
4967
5652
|
static types(): { [key: string]: any } {
|
|
4968
5653
|
return {
|
|
4969
5654
|
bizCode: 'string',
|
|
4970
|
-
|
|
4971
|
-
subCode: 'string',
|
|
5655
|
+
vehicleInfo: 'string',
|
|
4972
5656
|
};
|
|
4973
5657
|
}
|
|
4974
5658
|
|
|
@@ -4977,35 +5661,24 @@ export class MobileOnlineStatusResponseBodyResultObject extends $tea.Model {
|
|
|
4977
5661
|
}
|
|
4978
5662
|
}
|
|
4979
5663
|
|
|
4980
|
-
export class
|
|
5664
|
+
export class VehicleQueryResponseBodyResultObject extends $tea.Model {
|
|
4981
5665
|
/**
|
|
4982
5666
|
* @example
|
|
4983
5667
|
* 1
|
|
4984
5668
|
*/
|
|
4985
5669
|
bizCode?: string;
|
|
4986
|
-
|
|
4987
|
-
* @example
|
|
4988
|
-
* CMCC
|
|
4989
|
-
*/
|
|
4990
|
-
ispName?: string;
|
|
4991
|
-
/**
|
|
4992
|
-
* @example
|
|
4993
|
-
* 5
|
|
4994
|
-
*/
|
|
4995
|
-
timeCode?: string;
|
|
5670
|
+
vehicleInfo?: string;
|
|
4996
5671
|
static names(): { [key: string]: string } {
|
|
4997
5672
|
return {
|
|
4998
5673
|
bizCode: 'BizCode',
|
|
4999
|
-
|
|
5000
|
-
timeCode: 'TimeCode',
|
|
5674
|
+
vehicleInfo: 'VehicleInfo',
|
|
5001
5675
|
};
|
|
5002
5676
|
}
|
|
5003
5677
|
|
|
5004
5678
|
static types(): { [key: string]: any } {
|
|
5005
5679
|
return {
|
|
5006
5680
|
bizCode: 'string',
|
|
5007
|
-
|
|
5008
|
-
timeCode: 'string',
|
|
5681
|
+
vehicleInfo: 'string',
|
|
5009
5682
|
};
|
|
5010
5683
|
}
|
|
5011
5684
|
|
|
@@ -5250,6 +5923,10 @@ export default class Client extends OpenApi {
|
|
|
5250
5923
|
query["IdentifyNum"] = request.identifyNum;
|
|
5251
5924
|
}
|
|
5252
5925
|
|
|
5926
|
+
if (!Util.isUnset(request.identityType)) {
|
|
5927
|
+
query["IdentityType"] = request.identityType;
|
|
5928
|
+
}
|
|
5929
|
+
|
|
5253
5930
|
if (!Util.isUnset(request.mobile)) {
|
|
5254
5931
|
query["Mobile"] = request.mobile;
|
|
5255
5932
|
}
|
|
@@ -6964,6 +7641,284 @@ export default class Client extends OpenApi {
|
|
|
6964
7641
|
return await this.modifyDeviceInfoWithOptions(request, runtime);
|
|
6965
7642
|
}
|
|
6966
7643
|
|
|
7644
|
+
/**
|
|
7645
|
+
* 车五项信息识别
|
|
7646
|
+
*
|
|
7647
|
+
* @param request - Vehicle5ItemQueryRequest
|
|
7648
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
7649
|
+
* @returns Vehicle5ItemQueryResponse
|
|
7650
|
+
*/
|
|
7651
|
+
async vehicle5ItemQueryWithOptions(request: Vehicle5ItemQueryRequest, runtime: $Util.RuntimeOptions): Promise<Vehicle5ItemQueryResponse> {
|
|
7652
|
+
Util.validateModel(request);
|
|
7653
|
+
let query = { };
|
|
7654
|
+
if (!Util.isUnset(request.paramType)) {
|
|
7655
|
+
query["ParamType"] = request.paramType;
|
|
7656
|
+
}
|
|
7657
|
+
|
|
7658
|
+
if (!Util.isUnset(request.vehicleNum)) {
|
|
7659
|
+
query["VehicleNum"] = request.vehicleNum;
|
|
7660
|
+
}
|
|
7661
|
+
|
|
7662
|
+
if (!Util.isUnset(request.vehicleType)) {
|
|
7663
|
+
query["VehicleType"] = request.vehicleType;
|
|
7664
|
+
}
|
|
7665
|
+
|
|
7666
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7667
|
+
query: OpenApiUtil.query(query),
|
|
7668
|
+
});
|
|
7669
|
+
let params = new $OpenApi.Params({
|
|
7670
|
+
action: "Vehicle5ItemQuery",
|
|
7671
|
+
version: "2019-03-07",
|
|
7672
|
+
protocol: "HTTPS",
|
|
7673
|
+
pathname: "/",
|
|
7674
|
+
method: "POST",
|
|
7675
|
+
authType: "AK",
|
|
7676
|
+
style: "RPC",
|
|
7677
|
+
reqBodyType: "formData",
|
|
7678
|
+
bodyType: "json",
|
|
7679
|
+
});
|
|
7680
|
+
return $tea.cast<Vehicle5ItemQueryResponse>(await this.callApi(params, req, runtime), new Vehicle5ItemQueryResponse({}));
|
|
7681
|
+
}
|
|
7682
|
+
|
|
7683
|
+
/**
|
|
7684
|
+
* 车五项信息识别
|
|
7685
|
+
*
|
|
7686
|
+
* @param request - Vehicle5ItemQueryRequest
|
|
7687
|
+
* @returns Vehicle5ItemQueryResponse
|
|
7688
|
+
*/
|
|
7689
|
+
async vehicle5ItemQuery(request: Vehicle5ItemQueryRequest): Promise<Vehicle5ItemQueryResponse> {
|
|
7690
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7691
|
+
return await this.vehicle5ItemQueryWithOptions(request, runtime);
|
|
7692
|
+
}
|
|
7693
|
+
|
|
7694
|
+
/**
|
|
7695
|
+
* 车辆投保日期查询
|
|
7696
|
+
*
|
|
7697
|
+
* @param request - VehicleInsureQueryRequest
|
|
7698
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
7699
|
+
* @returns VehicleInsureQueryResponse
|
|
7700
|
+
*/
|
|
7701
|
+
async vehicleInsureQueryWithOptions(request: VehicleInsureQueryRequest, runtime: $Util.RuntimeOptions): Promise<VehicleInsureQueryResponse> {
|
|
7702
|
+
Util.validateModel(request);
|
|
7703
|
+
let query = { };
|
|
7704
|
+
if (!Util.isUnset(request.paramType)) {
|
|
7705
|
+
query["ParamType"] = request.paramType;
|
|
7706
|
+
}
|
|
7707
|
+
|
|
7708
|
+
if (!Util.isUnset(request.vehicleNum)) {
|
|
7709
|
+
query["VehicleNum"] = request.vehicleNum;
|
|
7710
|
+
}
|
|
7711
|
+
|
|
7712
|
+
if (!Util.isUnset(request.vehicleType)) {
|
|
7713
|
+
query["VehicleType"] = request.vehicleType;
|
|
7714
|
+
}
|
|
7715
|
+
|
|
7716
|
+
if (!Util.isUnset(request.vin)) {
|
|
7717
|
+
query["Vin"] = request.vin;
|
|
7718
|
+
}
|
|
7719
|
+
|
|
7720
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7721
|
+
query: OpenApiUtil.query(query),
|
|
7722
|
+
});
|
|
7723
|
+
let params = new $OpenApi.Params({
|
|
7724
|
+
action: "VehicleInsureQuery",
|
|
7725
|
+
version: "2019-03-07",
|
|
7726
|
+
protocol: "HTTPS",
|
|
7727
|
+
pathname: "/",
|
|
7728
|
+
method: "POST",
|
|
7729
|
+
authType: "AK",
|
|
7730
|
+
style: "RPC",
|
|
7731
|
+
reqBodyType: "formData",
|
|
7732
|
+
bodyType: "json",
|
|
7733
|
+
});
|
|
7734
|
+
return $tea.cast<VehicleInsureQueryResponse>(await this.callApi(params, req, runtime), new VehicleInsureQueryResponse({}));
|
|
7735
|
+
}
|
|
7736
|
+
|
|
7737
|
+
/**
|
|
7738
|
+
* 车辆投保日期查询
|
|
7739
|
+
*
|
|
7740
|
+
* @param request - VehicleInsureQueryRequest
|
|
7741
|
+
* @returns VehicleInsureQueryResponse
|
|
7742
|
+
*/
|
|
7743
|
+
async vehicleInsureQuery(request: VehicleInsureQueryRequest): Promise<VehicleInsureQueryResponse> {
|
|
7744
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7745
|
+
return await this.vehicleInsureQueryWithOptions(request, runtime);
|
|
7746
|
+
}
|
|
7747
|
+
|
|
7748
|
+
/**
|
|
7749
|
+
* 车辆要素核验
|
|
7750
|
+
*
|
|
7751
|
+
* @param request - VehicleMetaVerifyRequest
|
|
7752
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
7753
|
+
* @returns VehicleMetaVerifyResponse
|
|
7754
|
+
*/
|
|
7755
|
+
async vehicleMetaVerifyWithOptions(request: VehicleMetaVerifyRequest, runtime: $Util.RuntimeOptions): Promise<VehicleMetaVerifyResponse> {
|
|
7756
|
+
Util.validateModel(request);
|
|
7757
|
+
let query = { };
|
|
7758
|
+
if (!Util.isUnset(request.identifyNum)) {
|
|
7759
|
+
query["IdentifyNum"] = request.identifyNum;
|
|
7760
|
+
}
|
|
7761
|
+
|
|
7762
|
+
if (!Util.isUnset(request.paramType)) {
|
|
7763
|
+
query["ParamType"] = request.paramType;
|
|
7764
|
+
}
|
|
7765
|
+
|
|
7766
|
+
if (!Util.isUnset(request.userName)) {
|
|
7767
|
+
query["UserName"] = request.userName;
|
|
7768
|
+
}
|
|
7769
|
+
|
|
7770
|
+
if (!Util.isUnset(request.vehicleNum)) {
|
|
7771
|
+
query["VehicleNum"] = request.vehicleNum;
|
|
7772
|
+
}
|
|
7773
|
+
|
|
7774
|
+
if (!Util.isUnset(request.vehicleType)) {
|
|
7775
|
+
query["VehicleType"] = request.vehicleType;
|
|
7776
|
+
}
|
|
7777
|
+
|
|
7778
|
+
if (!Util.isUnset(request.verifyMetaType)) {
|
|
7779
|
+
query["VerifyMetaType"] = request.verifyMetaType;
|
|
7780
|
+
}
|
|
7781
|
+
|
|
7782
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7783
|
+
query: OpenApiUtil.query(query),
|
|
7784
|
+
});
|
|
7785
|
+
let params = new $OpenApi.Params({
|
|
7786
|
+
action: "VehicleMetaVerify",
|
|
7787
|
+
version: "2019-03-07",
|
|
7788
|
+
protocol: "HTTPS",
|
|
7789
|
+
pathname: "/",
|
|
7790
|
+
method: "POST",
|
|
7791
|
+
authType: "AK",
|
|
7792
|
+
style: "RPC",
|
|
7793
|
+
reqBodyType: "formData",
|
|
7794
|
+
bodyType: "json",
|
|
7795
|
+
});
|
|
7796
|
+
return $tea.cast<VehicleMetaVerifyResponse>(await this.callApi(params, req, runtime), new VehicleMetaVerifyResponse({}));
|
|
7797
|
+
}
|
|
7798
|
+
|
|
7799
|
+
/**
|
|
7800
|
+
* 车辆要素核验
|
|
7801
|
+
*
|
|
7802
|
+
* @param request - VehicleMetaVerifyRequest
|
|
7803
|
+
* @returns VehicleMetaVerifyResponse
|
|
7804
|
+
*/
|
|
7805
|
+
async vehicleMetaVerify(request: VehicleMetaVerifyRequest): Promise<VehicleMetaVerifyResponse> {
|
|
7806
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7807
|
+
return await this.vehicleMetaVerifyWithOptions(request, runtime);
|
|
7808
|
+
}
|
|
7809
|
+
|
|
7810
|
+
/**
|
|
7811
|
+
* 车辆要素核验增强版
|
|
7812
|
+
*
|
|
7813
|
+
* @param request - VehicleMetaVerifyV2Request
|
|
7814
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
7815
|
+
* @returns VehicleMetaVerifyV2Response
|
|
7816
|
+
*/
|
|
7817
|
+
async vehicleMetaVerifyV2WithOptions(request: VehicleMetaVerifyV2Request, runtime: $Util.RuntimeOptions): Promise<VehicleMetaVerifyV2Response> {
|
|
7818
|
+
Util.validateModel(request);
|
|
7819
|
+
let query = { };
|
|
7820
|
+
if (!Util.isUnset(request.identifyNum)) {
|
|
7821
|
+
query["IdentifyNum"] = request.identifyNum;
|
|
7822
|
+
}
|
|
7823
|
+
|
|
7824
|
+
if (!Util.isUnset(request.paramType)) {
|
|
7825
|
+
query["ParamType"] = request.paramType;
|
|
7826
|
+
}
|
|
7827
|
+
|
|
7828
|
+
if (!Util.isUnset(request.userName)) {
|
|
7829
|
+
query["UserName"] = request.userName;
|
|
7830
|
+
}
|
|
7831
|
+
|
|
7832
|
+
if (!Util.isUnset(request.vehicleNum)) {
|
|
7833
|
+
query["VehicleNum"] = request.vehicleNum;
|
|
7834
|
+
}
|
|
7835
|
+
|
|
7836
|
+
if (!Util.isUnset(request.vehicleType)) {
|
|
7837
|
+
query["VehicleType"] = request.vehicleType;
|
|
7838
|
+
}
|
|
7839
|
+
|
|
7840
|
+
if (!Util.isUnset(request.verifyMetaType)) {
|
|
7841
|
+
query["VerifyMetaType"] = request.verifyMetaType;
|
|
7842
|
+
}
|
|
7843
|
+
|
|
7844
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7845
|
+
query: OpenApiUtil.query(query),
|
|
7846
|
+
});
|
|
7847
|
+
let params = new $OpenApi.Params({
|
|
7848
|
+
action: "VehicleMetaVerifyV2",
|
|
7849
|
+
version: "2019-03-07",
|
|
7850
|
+
protocol: "HTTPS",
|
|
7851
|
+
pathname: "/",
|
|
7852
|
+
method: "POST",
|
|
7853
|
+
authType: "AK",
|
|
7854
|
+
style: "RPC",
|
|
7855
|
+
reqBodyType: "formData",
|
|
7856
|
+
bodyType: "json",
|
|
7857
|
+
});
|
|
7858
|
+
return $tea.cast<VehicleMetaVerifyV2Response>(await this.callApi(params, req, runtime), new VehicleMetaVerifyV2Response({}));
|
|
7859
|
+
}
|
|
7860
|
+
|
|
7861
|
+
/**
|
|
7862
|
+
* 车辆要素核验增强版
|
|
7863
|
+
*
|
|
7864
|
+
* @param request - VehicleMetaVerifyV2Request
|
|
7865
|
+
* @returns VehicleMetaVerifyV2Response
|
|
7866
|
+
*/
|
|
7867
|
+
async vehicleMetaVerifyV2(request: VehicleMetaVerifyV2Request): Promise<VehicleMetaVerifyV2Response> {
|
|
7868
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7869
|
+
return await this.vehicleMetaVerifyV2WithOptions(request, runtime);
|
|
7870
|
+
}
|
|
7871
|
+
|
|
7872
|
+
/**
|
|
7873
|
+
* 车辆信息识别
|
|
7874
|
+
*
|
|
7875
|
+
* @param request - VehicleQueryRequest
|
|
7876
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
7877
|
+
* @returns VehicleQueryResponse
|
|
7878
|
+
*/
|
|
7879
|
+
async vehicleQueryWithOptions(request: VehicleQueryRequest, runtime: $Util.RuntimeOptions): Promise<VehicleQueryResponse> {
|
|
7880
|
+
Util.validateModel(request);
|
|
7881
|
+
let query = { };
|
|
7882
|
+
if (!Util.isUnset(request.paramType)) {
|
|
7883
|
+
query["ParamType"] = request.paramType;
|
|
7884
|
+
}
|
|
7885
|
+
|
|
7886
|
+
if (!Util.isUnset(request.vehicleNum)) {
|
|
7887
|
+
query["VehicleNum"] = request.vehicleNum;
|
|
7888
|
+
}
|
|
7889
|
+
|
|
7890
|
+
if (!Util.isUnset(request.vehicleType)) {
|
|
7891
|
+
query["VehicleType"] = request.vehicleType;
|
|
7892
|
+
}
|
|
7893
|
+
|
|
7894
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7895
|
+
query: OpenApiUtil.query(query),
|
|
7896
|
+
});
|
|
7897
|
+
let params = new $OpenApi.Params({
|
|
7898
|
+
action: "VehicleQuery",
|
|
7899
|
+
version: "2019-03-07",
|
|
7900
|
+
protocol: "HTTPS",
|
|
7901
|
+
pathname: "/",
|
|
7902
|
+
method: "POST",
|
|
7903
|
+
authType: "AK",
|
|
7904
|
+
style: "RPC",
|
|
7905
|
+
reqBodyType: "formData",
|
|
7906
|
+
bodyType: "json",
|
|
7907
|
+
});
|
|
7908
|
+
return $tea.cast<VehicleQueryResponse>(await this.callApi(params, req, runtime), new VehicleQueryResponse({}));
|
|
7909
|
+
}
|
|
7910
|
+
|
|
7911
|
+
/**
|
|
7912
|
+
* 车辆信息识别
|
|
7913
|
+
*
|
|
7914
|
+
* @param request - VehicleQueryRequest
|
|
7915
|
+
* @returns VehicleQueryResponse
|
|
7916
|
+
*/
|
|
7917
|
+
async vehicleQuery(request: VehicleQueryRequest): Promise<VehicleQueryResponse> {
|
|
7918
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7919
|
+
return await this.vehicleQueryWithOptions(request, runtime);
|
|
7920
|
+
}
|
|
7921
|
+
|
|
6967
7922
|
/**
|
|
6968
7923
|
* @param request - VerifyMaterialRequest
|
|
6969
7924
|
* @param runtime - runtime options for this request RuntimeOptions
|