@antchain/realperson 1.21.21 → 1.22.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 +199 -0
- package/dist/client.js +317 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +486 -1
package/src/client.ts
CHANGED
|
@@ -473,6 +473,208 @@ export class OcrInfo extends $tea.Model {
|
|
|
473
473
|
}
|
|
474
474
|
}
|
|
475
475
|
|
|
476
|
+
// 车辆资产验证详版车辆信息
|
|
477
|
+
export class CarInfoDetail extends $tea.Model {
|
|
478
|
+
// 车辆型号
|
|
479
|
+
clxh?: string;
|
|
480
|
+
// 发动机号
|
|
481
|
+
engineCode?: string;
|
|
482
|
+
// 发动机型号
|
|
483
|
+
engineModel?: string;
|
|
484
|
+
// 生产时间
|
|
485
|
+
productionTime?: string;
|
|
486
|
+
// 品牌名称
|
|
487
|
+
brandName?: string;
|
|
488
|
+
// 高尔夫(第七代,2014-)
|
|
489
|
+
seriesName?: string;
|
|
490
|
+
// 年款
|
|
491
|
+
modelYear?: string;
|
|
492
|
+
// 款型名称
|
|
493
|
+
vehicleName?: string;
|
|
494
|
+
// 指导价
|
|
495
|
+
guidePrice?: string;
|
|
496
|
+
// 车身颜色
|
|
497
|
+
color?: string;
|
|
498
|
+
// 车型级别
|
|
499
|
+
vehicleLevel?: string;
|
|
500
|
+
// 车型种类
|
|
501
|
+
vehicleType?: string;
|
|
502
|
+
// 车身结构
|
|
503
|
+
bodyStruct?: string;
|
|
504
|
+
// 燃料种类
|
|
505
|
+
fuelType?: string;
|
|
506
|
+
// 驱动方式
|
|
507
|
+
driveWay?: string;
|
|
508
|
+
// 底盘型号-商用车用
|
|
509
|
+
chassisModel?: string;
|
|
510
|
+
// 排放标准
|
|
511
|
+
emissionStandard?: string;
|
|
512
|
+
// 排量
|
|
513
|
+
displacement?: string;
|
|
514
|
+
// 长
|
|
515
|
+
length?: string;
|
|
516
|
+
// 宽
|
|
517
|
+
width?: string;
|
|
518
|
+
// 高
|
|
519
|
+
height?: string;
|
|
520
|
+
// 总质量
|
|
521
|
+
totalMass?: string;
|
|
522
|
+
// 整备质量
|
|
523
|
+
curbWeight?: string;
|
|
524
|
+
// 前轮距
|
|
525
|
+
tireDistanceBefore?: string;
|
|
526
|
+
// 后轮距
|
|
527
|
+
tireDistanceAfter?: string;
|
|
528
|
+
// 轴数
|
|
529
|
+
axesNumber?: string;
|
|
530
|
+
// 轴距
|
|
531
|
+
wheelBase?: string;
|
|
532
|
+
// 座位数
|
|
533
|
+
seatingCapacity?: string;
|
|
534
|
+
// 核定载质量
|
|
535
|
+
approvedLoad?: string;
|
|
536
|
+
// 准牵引总质量
|
|
537
|
+
quasiTraction?: string;
|
|
538
|
+
// 轮胎规格
|
|
539
|
+
tireSize?: string;
|
|
540
|
+
// 轮胎数
|
|
541
|
+
tireNumber?: string;
|
|
542
|
+
// 变速箱
|
|
543
|
+
transmission?: string;
|
|
544
|
+
// 功率
|
|
545
|
+
power?: string;
|
|
546
|
+
// 油耗
|
|
547
|
+
fuelConsumption?: string;
|
|
548
|
+
// 环保标准
|
|
549
|
+
environmentalStandards?: string;
|
|
550
|
+
static names(): { [key: string]: string } {
|
|
551
|
+
return {
|
|
552
|
+
clxh: 'clxh',
|
|
553
|
+
engineCode: 'engine_code',
|
|
554
|
+
engineModel: 'engine_model',
|
|
555
|
+
productionTime: 'production_time',
|
|
556
|
+
brandName: 'brand_name',
|
|
557
|
+
seriesName: 'series_name',
|
|
558
|
+
modelYear: 'model_year',
|
|
559
|
+
vehicleName: 'vehicle_name',
|
|
560
|
+
guidePrice: 'guide_price',
|
|
561
|
+
color: 'color',
|
|
562
|
+
vehicleLevel: 'vehicle_level',
|
|
563
|
+
vehicleType: 'vehicle_type',
|
|
564
|
+
bodyStruct: 'body_struct',
|
|
565
|
+
fuelType: 'fuel_type',
|
|
566
|
+
driveWay: 'drive_way',
|
|
567
|
+
chassisModel: 'chassis_model',
|
|
568
|
+
emissionStandard: 'emission_standard',
|
|
569
|
+
displacement: 'displacement',
|
|
570
|
+
length: 'length',
|
|
571
|
+
width: 'width',
|
|
572
|
+
height: 'height',
|
|
573
|
+
totalMass: 'total_mass',
|
|
574
|
+
curbWeight: 'curb_weight',
|
|
575
|
+
tireDistanceBefore: 'tire_distance_before',
|
|
576
|
+
tireDistanceAfter: 'tire_distance_after',
|
|
577
|
+
axesNumber: 'axes_number',
|
|
578
|
+
wheelBase: 'wheel_base',
|
|
579
|
+
seatingCapacity: 'seating_capacity',
|
|
580
|
+
approvedLoad: 'approved_load',
|
|
581
|
+
quasiTraction: 'quasi_traction',
|
|
582
|
+
tireSize: 'tire_size',
|
|
583
|
+
tireNumber: 'tire_number',
|
|
584
|
+
transmission: 'transmission',
|
|
585
|
+
power: 'power',
|
|
586
|
+
fuelConsumption: 'fuel_consumption',
|
|
587
|
+
environmentalStandards: 'environmental_standards',
|
|
588
|
+
};
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
static types(): { [key: string]: any } {
|
|
592
|
+
return {
|
|
593
|
+
clxh: 'string',
|
|
594
|
+
engineCode: 'string',
|
|
595
|
+
engineModel: 'string',
|
|
596
|
+
productionTime: 'string',
|
|
597
|
+
brandName: 'string',
|
|
598
|
+
seriesName: 'string',
|
|
599
|
+
modelYear: 'string',
|
|
600
|
+
vehicleName: 'string',
|
|
601
|
+
guidePrice: 'string',
|
|
602
|
+
color: 'string',
|
|
603
|
+
vehicleLevel: 'string',
|
|
604
|
+
vehicleType: 'string',
|
|
605
|
+
bodyStruct: 'string',
|
|
606
|
+
fuelType: 'string',
|
|
607
|
+
driveWay: 'string',
|
|
608
|
+
chassisModel: 'string',
|
|
609
|
+
emissionStandard: 'string',
|
|
610
|
+
displacement: 'string',
|
|
611
|
+
length: 'string',
|
|
612
|
+
width: 'string',
|
|
613
|
+
height: 'string',
|
|
614
|
+
totalMass: 'string',
|
|
615
|
+
curbWeight: 'string',
|
|
616
|
+
tireDistanceBefore: 'string',
|
|
617
|
+
tireDistanceAfter: 'string',
|
|
618
|
+
axesNumber: 'string',
|
|
619
|
+
wheelBase: 'string',
|
|
620
|
+
seatingCapacity: 'string',
|
|
621
|
+
approvedLoad: 'string',
|
|
622
|
+
quasiTraction: 'string',
|
|
623
|
+
tireSize: 'string',
|
|
624
|
+
tireNumber: 'string',
|
|
625
|
+
transmission: 'string',
|
|
626
|
+
power: 'string',
|
|
627
|
+
fuelConsumption: 'string',
|
|
628
|
+
environmentalStandards: 'string',
|
|
629
|
+
};
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
constructor(map?: { [key: string]: any }) {
|
|
633
|
+
super(map);
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
// 车辆资产验证简版车辆信息
|
|
638
|
+
export class CarInfoBrief extends $tea.Model {
|
|
639
|
+
// 生产时间
|
|
640
|
+
productionTime?: string;
|
|
641
|
+
// 品牌名称
|
|
642
|
+
brandName?: string;
|
|
643
|
+
// 车系名称
|
|
644
|
+
seriesName?: string;
|
|
645
|
+
// 燃料种类
|
|
646
|
+
fuelType?: string;
|
|
647
|
+
// 轴数
|
|
648
|
+
axesNumber?: string;
|
|
649
|
+
// 轴距
|
|
650
|
+
wheelBase?: string;
|
|
651
|
+
static names(): { [key: string]: string } {
|
|
652
|
+
return {
|
|
653
|
+
productionTime: 'production_time',
|
|
654
|
+
brandName: 'brand_name',
|
|
655
|
+
seriesName: 'series_name',
|
|
656
|
+
fuelType: 'fuel_type',
|
|
657
|
+
axesNumber: 'axes_number',
|
|
658
|
+
wheelBase: 'wheel_base',
|
|
659
|
+
};
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
static types(): { [key: string]: any } {
|
|
663
|
+
return {
|
|
664
|
+
productionTime: 'string',
|
|
665
|
+
brandName: 'string',
|
|
666
|
+
seriesName: 'string',
|
|
667
|
+
fuelType: 'string',
|
|
668
|
+
axesNumber: 'string',
|
|
669
|
+
wheelBase: 'string',
|
|
670
|
+
};
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
constructor(map?: { [key: string]: any }) {
|
|
674
|
+
super(map);
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
|
|
476
678
|
// 键值对
|
|
477
679
|
export class XNameValuePair extends $tea.Model {
|
|
478
680
|
// 键名
|
|
@@ -5401,6 +5603,232 @@ export class RecognizeOcrIndividualcardResponse extends $tea.Model {
|
|
|
5401
5603
|
}
|
|
5402
5604
|
}
|
|
5403
5605
|
|
|
5606
|
+
export class CheckIdcardFourmetaRequest extends $tea.Model {
|
|
5607
|
+
// OAuth模式下的授权token
|
|
5608
|
+
authToken?: string;
|
|
5609
|
+
productInstanceId?: string;
|
|
5610
|
+
// 外部唯一标识。用于定位。 值为32位长度的字母数字组合前面几位字符是商户自定义的简称,中间可以使用一段时间,后段可以使用一个随机或递增序列
|
|
5611
|
+
outerOrderNo: string;
|
|
5612
|
+
// 姓名
|
|
5613
|
+
certName: string;
|
|
5614
|
+
// 身份证号码
|
|
5615
|
+
certNo: string;
|
|
5616
|
+
// 开始时间,yyyyMMdd格式的注册日期。
|
|
5617
|
+
beginDate: string;
|
|
5618
|
+
// 失效时间,yyyyMMdd格式的注册日期。(长期有效
|
|
5619
|
+
// 身份证填 8 个 0))
|
|
5620
|
+
expiryDate: string;
|
|
5621
|
+
// map结果的json数据格式,预留字段
|
|
5622
|
+
externParam?: string;
|
|
5623
|
+
static names(): { [key: string]: string } {
|
|
5624
|
+
return {
|
|
5625
|
+
authToken: 'auth_token',
|
|
5626
|
+
productInstanceId: 'product_instance_id',
|
|
5627
|
+
outerOrderNo: 'outer_order_no',
|
|
5628
|
+
certName: 'cert_name',
|
|
5629
|
+
certNo: 'cert_no',
|
|
5630
|
+
beginDate: 'begin_date',
|
|
5631
|
+
expiryDate: 'expiry_date',
|
|
5632
|
+
externParam: 'extern_param',
|
|
5633
|
+
};
|
|
5634
|
+
}
|
|
5635
|
+
|
|
5636
|
+
static types(): { [key: string]: any } {
|
|
5637
|
+
return {
|
|
5638
|
+
authToken: 'string',
|
|
5639
|
+
productInstanceId: 'string',
|
|
5640
|
+
outerOrderNo: 'string',
|
|
5641
|
+
certName: 'string',
|
|
5642
|
+
certNo: 'string',
|
|
5643
|
+
beginDate: 'string',
|
|
5644
|
+
expiryDate: 'string',
|
|
5645
|
+
externParam: 'string',
|
|
5646
|
+
};
|
|
5647
|
+
}
|
|
5648
|
+
|
|
5649
|
+
constructor(map?: { [key: string]: any }) {
|
|
5650
|
+
super(map);
|
|
5651
|
+
}
|
|
5652
|
+
}
|
|
5653
|
+
|
|
5654
|
+
export class CheckIdcardFourmetaResponse extends $tea.Model {
|
|
5655
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
5656
|
+
reqMsgId?: string;
|
|
5657
|
+
// 结果码,一般OK表示调用成功
|
|
5658
|
+
resultCode?: string;
|
|
5659
|
+
// 异常信息的文本描述
|
|
5660
|
+
resultMsg?: string;
|
|
5661
|
+
// true:匹配成功 false:匹配失败
|
|
5662
|
+
match?: string;
|
|
5663
|
+
// 扩展信息,预留字段
|
|
5664
|
+
externInfo?: string;
|
|
5665
|
+
static names(): { [key: string]: string } {
|
|
5666
|
+
return {
|
|
5667
|
+
reqMsgId: 'req_msg_id',
|
|
5668
|
+
resultCode: 'result_code',
|
|
5669
|
+
resultMsg: 'result_msg',
|
|
5670
|
+
match: 'match',
|
|
5671
|
+
externInfo: 'extern_info',
|
|
5672
|
+
};
|
|
5673
|
+
}
|
|
5674
|
+
|
|
5675
|
+
static types(): { [key: string]: any } {
|
|
5676
|
+
return {
|
|
5677
|
+
reqMsgId: 'string',
|
|
5678
|
+
resultCode: 'string',
|
|
5679
|
+
resultMsg: 'string',
|
|
5680
|
+
match: 'string',
|
|
5681
|
+
externInfo: 'string',
|
|
5682
|
+
};
|
|
5683
|
+
}
|
|
5684
|
+
|
|
5685
|
+
constructor(map?: { [key: string]: any }) {
|
|
5686
|
+
super(map);
|
|
5687
|
+
}
|
|
5688
|
+
}
|
|
5689
|
+
|
|
5690
|
+
export class QueryCarinfoDetailRequest extends $tea.Model {
|
|
5691
|
+
// OAuth模式下的授权token
|
|
5692
|
+
authToken?: string;
|
|
5693
|
+
productInstanceId?: string;
|
|
5694
|
+
// vin码
|
|
5695
|
+
vin: string;
|
|
5696
|
+
// 扩展信息,预留字段
|
|
5697
|
+
externParam?: string;
|
|
5698
|
+
// 请求ID,为32位以内的字母数字组合,由调用方自行生成、保证唯一并留存,以便问题定位和授权核查。
|
|
5699
|
+
outerOrderNo: string;
|
|
5700
|
+
static names(): { [key: string]: string } {
|
|
5701
|
+
return {
|
|
5702
|
+
authToken: 'auth_token',
|
|
5703
|
+
productInstanceId: 'product_instance_id',
|
|
5704
|
+
vin: 'vin',
|
|
5705
|
+
externParam: 'extern_param',
|
|
5706
|
+
outerOrderNo: 'outer_order_no',
|
|
5707
|
+
};
|
|
5708
|
+
}
|
|
5709
|
+
|
|
5710
|
+
static types(): { [key: string]: any } {
|
|
5711
|
+
return {
|
|
5712
|
+
authToken: 'string',
|
|
5713
|
+
productInstanceId: 'string',
|
|
5714
|
+
vin: 'string',
|
|
5715
|
+
externParam: 'string',
|
|
5716
|
+
outerOrderNo: 'string',
|
|
5717
|
+
};
|
|
5718
|
+
}
|
|
5719
|
+
|
|
5720
|
+
constructor(map?: { [key: string]: any }) {
|
|
5721
|
+
super(map);
|
|
5722
|
+
}
|
|
5723
|
+
}
|
|
5724
|
+
|
|
5725
|
+
export class QueryCarinfoDetailResponse extends $tea.Model {
|
|
5726
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
5727
|
+
reqMsgId?: string;
|
|
5728
|
+
// 结果码,一般OK表示调用成功
|
|
5729
|
+
resultCode?: string;
|
|
5730
|
+
// 异常信息的文本描述
|
|
5731
|
+
resultMsg?: string;
|
|
5732
|
+
// 扩展信息,为JSONObject。
|
|
5733
|
+
externInfo?: string;
|
|
5734
|
+
// 车辆信息
|
|
5735
|
+
carInfo?: CarInfoDetail;
|
|
5736
|
+
static names(): { [key: string]: string } {
|
|
5737
|
+
return {
|
|
5738
|
+
reqMsgId: 'req_msg_id',
|
|
5739
|
+
resultCode: 'result_code',
|
|
5740
|
+
resultMsg: 'result_msg',
|
|
5741
|
+
externInfo: 'extern_info',
|
|
5742
|
+
carInfo: 'car_info',
|
|
5743
|
+
};
|
|
5744
|
+
}
|
|
5745
|
+
|
|
5746
|
+
static types(): { [key: string]: any } {
|
|
5747
|
+
return {
|
|
5748
|
+
reqMsgId: 'string',
|
|
5749
|
+
resultCode: 'string',
|
|
5750
|
+
resultMsg: 'string',
|
|
5751
|
+
externInfo: 'string',
|
|
5752
|
+
carInfo: CarInfoDetail,
|
|
5753
|
+
};
|
|
5754
|
+
}
|
|
5755
|
+
|
|
5756
|
+
constructor(map?: { [key: string]: any }) {
|
|
5757
|
+
super(map);
|
|
5758
|
+
}
|
|
5759
|
+
}
|
|
5760
|
+
|
|
5761
|
+
export class QueryCarinfoBriefRequest extends $tea.Model {
|
|
5762
|
+
// OAuth模式下的授权token
|
|
5763
|
+
authToken?: string;
|
|
5764
|
+
productInstanceId?: string;
|
|
5765
|
+
// extern_param
|
|
5766
|
+
vin: string;
|
|
5767
|
+
// 请求ID,为32位以内的字母数字组合,由调用方自行生成、保证唯一并留存,以便问题定位和授权核查。
|
|
5768
|
+
outerOrderNo: string;
|
|
5769
|
+
// 扩展信息,预留字段
|
|
5770
|
+
externParam?: string;
|
|
5771
|
+
static names(): { [key: string]: string } {
|
|
5772
|
+
return {
|
|
5773
|
+
authToken: 'auth_token',
|
|
5774
|
+
productInstanceId: 'product_instance_id',
|
|
5775
|
+
vin: 'vin',
|
|
5776
|
+
outerOrderNo: 'outer_order_no',
|
|
5777
|
+
externParam: 'extern_param',
|
|
5778
|
+
};
|
|
5779
|
+
}
|
|
5780
|
+
|
|
5781
|
+
static types(): { [key: string]: any } {
|
|
5782
|
+
return {
|
|
5783
|
+
authToken: 'string',
|
|
5784
|
+
productInstanceId: 'string',
|
|
5785
|
+
vin: 'string',
|
|
5786
|
+
outerOrderNo: 'string',
|
|
5787
|
+
externParam: 'string',
|
|
5788
|
+
};
|
|
5789
|
+
}
|
|
5790
|
+
|
|
5791
|
+
constructor(map?: { [key: string]: any }) {
|
|
5792
|
+
super(map);
|
|
5793
|
+
}
|
|
5794
|
+
}
|
|
5795
|
+
|
|
5796
|
+
export class QueryCarinfoBriefResponse extends $tea.Model {
|
|
5797
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
5798
|
+
reqMsgId?: string;
|
|
5799
|
+
// 结果码,一般OK表示调用成功
|
|
5800
|
+
resultCode?: string;
|
|
5801
|
+
// 异常信息的文本描述
|
|
5802
|
+
resultMsg?: string;
|
|
5803
|
+
// 扩展信息,为JSONObject。
|
|
5804
|
+
externInfo?: string;
|
|
5805
|
+
// 车辆信息
|
|
5806
|
+
carInfo?: CarInfoBrief;
|
|
5807
|
+
static names(): { [key: string]: string } {
|
|
5808
|
+
return {
|
|
5809
|
+
reqMsgId: 'req_msg_id',
|
|
5810
|
+
resultCode: 'result_code',
|
|
5811
|
+
resultMsg: 'result_msg',
|
|
5812
|
+
externInfo: 'extern_info',
|
|
5813
|
+
carInfo: 'car_info',
|
|
5814
|
+
};
|
|
5815
|
+
}
|
|
5816
|
+
|
|
5817
|
+
static types(): { [key: string]: any } {
|
|
5818
|
+
return {
|
|
5819
|
+
reqMsgId: 'string',
|
|
5820
|
+
resultCode: 'string',
|
|
5821
|
+
resultMsg: 'string',
|
|
5822
|
+
externInfo: 'string',
|
|
5823
|
+
carInfo: CarInfoBrief,
|
|
5824
|
+
};
|
|
5825
|
+
}
|
|
5826
|
+
|
|
5827
|
+
constructor(map?: { [key: string]: any }) {
|
|
5828
|
+
super(map);
|
|
5829
|
+
}
|
|
5830
|
+
}
|
|
5831
|
+
|
|
5404
5832
|
export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
5405
5833
|
// OAuth模式下的授权token
|
|
5406
5834
|
authToken?: string;
|
|
@@ -5602,7 +6030,7 @@ export default class Client {
|
|
|
5602
6030
|
req_msg_id: AntchainUtil.getNonce(),
|
|
5603
6031
|
access_key: this._accessKeyId,
|
|
5604
6032
|
base_sdk_version: "TeaSDK-2.0",
|
|
5605
|
-
sdk_version: "1.
|
|
6033
|
+
sdk_version: "1.22.0",
|
|
5606
6034
|
_prod_code: "REALPERSON",
|
|
5607
6035
|
_prod_channel: "undefined",
|
|
5608
6036
|
};
|
|
@@ -6830,6 +7258,63 @@ export default class Client {
|
|
|
6830
7258
|
return $tea.cast<RecognizeOcrIndividualcardResponse>(await this.doRequest("1.0", "di.realperson.ocr.individualcard.recognize", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new RecognizeOcrIndividualcardResponse({}));
|
|
6831
7259
|
}
|
|
6832
7260
|
|
|
7261
|
+
/**
|
|
7262
|
+
* Description: 个人四要素认证
|
|
7263
|
+
* Summary: 个人四要素认证
|
|
7264
|
+
*/
|
|
7265
|
+
async checkIdcardFourmeta(request: CheckIdcardFourmetaRequest): Promise<CheckIdcardFourmetaResponse> {
|
|
7266
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7267
|
+
let headers : {[key: string ]: string} = { };
|
|
7268
|
+
return await this.checkIdcardFourmetaEx(request, headers, runtime);
|
|
7269
|
+
}
|
|
7270
|
+
|
|
7271
|
+
/**
|
|
7272
|
+
* Description: 个人四要素认证
|
|
7273
|
+
* Summary: 个人四要素认证
|
|
7274
|
+
*/
|
|
7275
|
+
async checkIdcardFourmetaEx(request: CheckIdcardFourmetaRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CheckIdcardFourmetaResponse> {
|
|
7276
|
+
Util.validateModel(request);
|
|
7277
|
+
return $tea.cast<CheckIdcardFourmetaResponse>(await this.doRequest("1.0", "di.realperson.idcard.fourmeta.check", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CheckIdcardFourmetaResponse({}));
|
|
7278
|
+
}
|
|
7279
|
+
|
|
7280
|
+
/**
|
|
7281
|
+
* Description: 车辆资产验证详版
|
|
7282
|
+
* Summary: 车辆资产验证详版
|
|
7283
|
+
*/
|
|
7284
|
+
async queryCarinfoDetail(request: QueryCarinfoDetailRequest): Promise<QueryCarinfoDetailResponse> {
|
|
7285
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7286
|
+
let headers : {[key: string ]: string} = { };
|
|
7287
|
+
return await this.queryCarinfoDetailEx(request, headers, runtime);
|
|
7288
|
+
}
|
|
7289
|
+
|
|
7290
|
+
/**
|
|
7291
|
+
* Description: 车辆资产验证详版
|
|
7292
|
+
* Summary: 车辆资产验证详版
|
|
7293
|
+
*/
|
|
7294
|
+
async queryCarinfoDetailEx(request: QueryCarinfoDetailRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryCarinfoDetailResponse> {
|
|
7295
|
+
Util.validateModel(request);
|
|
7296
|
+
return $tea.cast<QueryCarinfoDetailResponse>(await this.doRequest("1.0", "di.realperson.carinfo.detail.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryCarinfoDetailResponse({}));
|
|
7297
|
+
}
|
|
7298
|
+
|
|
7299
|
+
/**
|
|
7300
|
+
* Description: 车辆资产验证简版
|
|
7301
|
+
* Summary: 车辆资产验证简版
|
|
7302
|
+
*/
|
|
7303
|
+
async queryCarinfoBrief(request: QueryCarinfoBriefRequest): Promise<QueryCarinfoBriefResponse> {
|
|
7304
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7305
|
+
let headers : {[key: string ]: string} = { };
|
|
7306
|
+
return await this.queryCarinfoBriefEx(request, headers, runtime);
|
|
7307
|
+
}
|
|
7308
|
+
|
|
7309
|
+
/**
|
|
7310
|
+
* Description: 车辆资产验证简版
|
|
7311
|
+
* Summary: 车辆资产验证简版
|
|
7312
|
+
*/
|
|
7313
|
+
async queryCarinfoBriefEx(request: QueryCarinfoBriefRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryCarinfoBriefResponse> {
|
|
7314
|
+
Util.validateModel(request);
|
|
7315
|
+
return $tea.cast<QueryCarinfoBriefResponse>(await this.doRequest("1.0", "di.realperson.carinfo.brief.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryCarinfoBriefResponse({}));
|
|
7316
|
+
}
|
|
7317
|
+
|
|
6833
7318
|
/**
|
|
6834
7319
|
* Description: 创建HTTP PUT提交的文件上传
|
|
6835
7320
|
* Summary: 文件上传创建
|