@antchain/ato 1.9.30 → 1.9.71

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/src/client.ts CHANGED
@@ -107,16 +107,51 @@ export class SubRentRiskItem extends $tea.Model {
107
107
  }
108
108
  }
109
109
 
110
+ // 订单还款策略
111
+ export class OrderRepayStrategy extends $tea.Model {
112
+ // 还款期数
113
+ termIndex?: number;
114
+ // 每期应还租金(分)
115
+ rentalMoney?: number;
116
+ // 每期应付时间
117
+ payDay?: string;
118
+ static names(): { [key: string]: string } {
119
+ return {
120
+ termIndex: 'term_index',
121
+ rentalMoney: 'rental_money',
122
+ payDay: 'pay_day',
123
+ };
124
+ }
125
+
126
+ static types(): { [key: string]: any } {
127
+ return {
128
+ termIndex: 'number',
129
+ rentalMoney: 'number',
130
+ payDay: 'string',
131
+ };
132
+ }
133
+
134
+ constructor(map?: { [key: string]: any }) {
135
+ super(map);
136
+ }
137
+ }
138
+
110
139
  // 静态数据模块详情
111
140
  export class StaticDataModuleDetail extends $tea.Model {
112
141
  // 描述
113
142
  propertyText: string;
114
143
  // 商户类型
115
144
  propertyValue: string;
145
+ // 叶子结点,目前存的一级类目下的二级类目
146
+ childrenDetailList?: string;
147
+ // 是否有叶子结点
148
+ hasChildren?: boolean;
116
149
  static names(): { [key: string]: string } {
117
150
  return {
118
151
  propertyText: 'property_text',
119
152
  propertyValue: 'property_value',
153
+ childrenDetailList: 'children_detail_list',
154
+ hasChildren: 'has_children',
120
155
  };
121
156
  }
122
157
 
@@ -124,6 +159,8 @@ export class StaticDataModuleDetail extends $tea.Model {
124
159
  return {
125
160
  propertyText: 'string',
126
161
  propertyValue: 'string',
162
+ childrenDetailList: 'string',
163
+ hasChildren: 'boolean',
127
164
  };
128
165
  }
129
166
 
@@ -169,6 +206,8 @@ export class AppletRiskModel extends $tea.Model {
169
206
  riskName: string;
170
207
  // 风险等级中文描述
171
208
  riskDesc: string;
209
+ // 流程id
210
+ flowId: string;
172
211
  // 子风险结果列表
173
212
  subRiskResultList?: SubRentRiskItem[];
174
213
  // 调用失败错误提示信息,仅调用失败时返回该字段信息。
@@ -180,6 +219,7 @@ export class AppletRiskModel extends $tea.Model {
180
219
  riskRank: 'risk_rank',
181
220
  riskName: 'risk_name',
182
221
  riskDesc: 'risk_desc',
222
+ flowId: 'flow_id',
183
223
  subRiskResultList: 'sub_risk_result_list',
184
224
  errorMsg: 'error_msg',
185
225
  };
@@ -192,6 +232,7 @@ export class AppletRiskModel extends $tea.Model {
192
232
  riskRank: 'string',
193
233
  riskName: 'string',
194
234
  riskDesc: 'string',
235
+ flowId: 'string',
195
236
  subRiskResultList: { 'type': 'array', 'itemType': SubRentRiskItem },
196
237
  errorMsg: 'string',
197
238
  };
@@ -323,6 +364,35 @@ export class UserPerformanceInfo extends $tea.Model {
323
364
  }
324
365
  }
325
366
 
367
+ // 投保商品信息
368
+ export class InsureProductInfo extends $tea.Model {
369
+ // 商品库id
370
+ productId: string;
371
+ // 商品设备编号
372
+ productImeiId: string;
373
+ // 商品采购价,单位:分
374
+ purchaseAmount: number;
375
+ static names(): { [key: string]: string } {
376
+ return {
377
+ productId: 'product_id',
378
+ productImeiId: 'product_imei_id',
379
+ purchaseAmount: 'purchase_amount',
380
+ };
381
+ }
382
+
383
+ static types(): { [key: string]: any } {
384
+ return {
385
+ productId: 'string',
386
+ productImeiId: 'string',
387
+ purchaseAmount: 'number',
388
+ };
389
+ }
390
+
391
+ constructor(map?: { [key: string]: any }) {
392
+ super(map);
393
+ }
394
+ }
395
+
326
396
  // 策略结果详情
327
397
  export class RiskStrategy extends $tea.Model {
328
398
  // 策略ID
@@ -356,6 +426,55 @@ export class RiskStrategy extends $tea.Model {
356
426
  }
357
427
  }
358
428
 
429
+ // 保单信息
430
+ export class InsureOrderInfo extends $tea.Model {
431
+ // 商家订单ID
432
+ orderId?: string;
433
+ // 投保编号(承保id)
434
+ insureId?: string;
435
+ // 商品名称
436
+ productName?: string;
437
+ // 保险开始时间
438
+ insureStartTime?: string;
439
+ // 保险终止时间
440
+ insureEndTime?: string;
441
+ // 投保金额(保额),单位分 100代表1元
442
+ insureAmount?: number;
443
+ // 投保费用(保费),单位分 100代表1元
444
+ insurePremium?: number;
445
+ // 投保状态枚举
446
+ status?: string;
447
+ static names(): { [key: string]: string } {
448
+ return {
449
+ orderId: 'order_id',
450
+ insureId: 'insure_id',
451
+ productName: 'product_name',
452
+ insureStartTime: 'insure_start_time',
453
+ insureEndTime: 'insure_end_time',
454
+ insureAmount: 'insure_amount',
455
+ insurePremium: 'insure_premium',
456
+ status: 'status',
457
+ };
458
+ }
459
+
460
+ static types(): { [key: string]: any } {
461
+ return {
462
+ orderId: 'string',
463
+ insureId: 'string',
464
+ productName: 'string',
465
+ insureStartTime: 'string',
466
+ insureEndTime: 'string',
467
+ insureAmount: 'number',
468
+ insurePremium: 'number',
469
+ status: 'string',
470
+ };
471
+ }
472
+
473
+ constructor(map?: { [key: string]: any }) {
474
+ super(map);
475
+ }
476
+ }
477
+
359
478
  // 静态数据
360
479
  export class StaticData extends $tea.Model {
361
480
  // 商户类型
@@ -512,13 +631,123 @@ export class OrderMsgInfo extends $tea.Model {
512
631
 
513
632
  // 主订单信息
514
633
  export class OrderInfo extends $tea.Model {
634
+ // 订单id
635
+ orderId?: string;
636
+ // 订单创建时间
637
+ orderCreateTime?: string;
638
+ // 订单支付时间
639
+ orderPayTime?: string;
640
+ // 租金总额(分)
641
+ totalRentMoney?: number;
642
+ // 租期
643
+ rentTerm?: number;
644
+ // 租期单位
645
+ rentUnit?: string;
646
+ // 订单状态
647
+ orderStatus?: string;
648
+ // 订单子状态
649
+ orderSubStatus?: string;
650
+ // 免押金额(分)
651
+ depositPrice?: number;
652
+ // 到期买断价(分)
653
+ buyOutPrice?: number;
654
+ // 物流方案
655
+ logisticType?: string;
656
+ // 到期形式
657
+ // NA(0, "无意义"),
658
+ // BUYOUT(1, "到期买断或归还"),
659
+ // FREE_ON_RENT(2, "租满即送"),
660
+ // RENEW_LEASE(3, "续租"),;
661
+ dueMode?: number;
662
+ // 首付款金额(分)
663
+ downPayment?: number;
664
+ static names(): { [key: string]: string } {
665
+ return {
666
+ orderId: 'order_id',
667
+ orderCreateTime: 'order_create_time',
668
+ orderPayTime: 'order_pay_time',
669
+ totalRentMoney: 'total_rent_money',
670
+ rentTerm: 'rent_term',
671
+ rentUnit: 'rent_unit',
672
+ orderStatus: 'order_status',
673
+ orderSubStatus: 'order_sub_status',
674
+ depositPrice: 'deposit_price',
675
+ buyOutPrice: 'buy_out_price',
676
+ logisticType: 'logistic_type',
677
+ dueMode: 'due_mode',
678
+ downPayment: 'down_payment',
679
+ };
680
+ }
681
+
682
+ static types(): { [key: string]: any } {
683
+ return {
684
+ orderId: 'string',
685
+ orderCreateTime: 'string',
686
+ orderPayTime: 'string',
687
+ totalRentMoney: 'number',
688
+ rentTerm: 'number',
689
+ rentUnit: 'string',
690
+ orderStatus: 'string',
691
+ orderSubStatus: 'string',
692
+ depositPrice: 'number',
693
+ buyOutPrice: 'number',
694
+ logisticType: 'string',
695
+ dueMode: 'number',
696
+ downPayment: 'number',
697
+ };
698
+ }
699
+
700
+ constructor(map?: { [key: string]: any }) {
701
+ super(map);
702
+ }
703
+ }
704
+
705
+ // 订单还款承诺
706
+ export class OrderPromiseInfo extends $tea.Model {
707
+ // 订单还款策略
708
+ repayStrategyList?: OrderRepayStrategy[];
709
+ static names(): { [key: string]: string } {
710
+ return {
711
+ repayStrategyList: 'repay_strategy_list',
712
+ };
713
+ }
714
+
715
+ static types(): { [key: string]: any } {
716
+ return {
717
+ repayStrategyList: { 'type': 'array', 'itemType': OrderRepayStrategy },
718
+ };
719
+ }
720
+
721
+ constructor(map?: { [key: string]: any }) {
722
+ super(map);
723
+ }
724
+ }
725
+
726
+ // 通知信息
727
+ export class NoticeInfo extends $tea.Model {
728
+ // 通知id
729
+ noticeId?: number;
730
+ // 通知标题
731
+ title?: string;
732
+ // 通知创建时间
733
+ noticeCreateTime?: string;
734
+ // 是否未读
735
+ unread?: boolean;
515
736
  static names(): { [key: string]: string } {
516
737
  return {
738
+ noticeId: 'notice_id',
739
+ title: 'title',
740
+ noticeCreateTime: 'notice_create_time',
741
+ unread: 'unread',
517
742
  };
518
743
  }
519
744
 
520
745
  static types(): { [key: string]: any } {
521
746
  return {
747
+ noticeId: 'number',
748
+ title: 'string',
749
+ noticeCreateTime: 'string',
750
+ unread: 'boolean',
522
751
  };
523
752
  }
524
753
 
@@ -609,6 +838,102 @@ export class AuditInfo extends $tea.Model {
609
838
  }
610
839
  }
611
840
 
841
+ // 订单用户信息
842
+ export class OrderUserInfo extends $tea.Model {
843
+ // 承租人名称
844
+ userName?: string;
845
+ // 承租人手机号
846
+ userPhoneNumber?: string;
847
+ // 地址
848
+ userAddress?: string;
849
+ // 支付宝账号
850
+ alipayUid?: string;
851
+ // 租赁类别
852
+ // 1:个人用户
853
+ // 2:企业用户
854
+ lesseeType?: number;
855
+ // 承租人身份证
856
+ userId?: string;
857
+ static names(): { [key: string]: string } {
858
+ return {
859
+ userName: 'user_name',
860
+ userPhoneNumber: 'user_phone_number',
861
+ userAddress: 'user_address',
862
+ alipayUid: 'alipay_uid',
863
+ lesseeType: 'lessee_type',
864
+ userId: 'user_id',
865
+ };
866
+ }
867
+
868
+ static types(): { [key: string]: any } {
869
+ return {
870
+ userName: 'string',
871
+ userPhoneNumber: 'string',
872
+ userAddress: 'string',
873
+ alipayUid: 'string',
874
+ lesseeType: 'number',
875
+ userId: 'string',
876
+ };
877
+ }
878
+
879
+ constructor(map?: { [key: string]: any }) {
880
+ super(map);
881
+ }
882
+ }
883
+
884
+ // 商品信息
885
+ export class ProductInfo extends $tea.Model {
886
+ // 商家社会统一信用代码
887
+ merchantId?: string;
888
+ // 商品名称
889
+ productName?: string;
890
+ // 商品id
891
+ productId?: string;
892
+ // 商品规格
893
+ productModel?: string;
894
+ // 商品版本
895
+ productVersion?: string;
896
+ // 指导价(单位分)
897
+ productPrice?: number;
898
+ // 一级类目
899
+ mainClass?: string;
900
+ // 二级类目
901
+ subClass?: string;
902
+ // 品牌
903
+ productBrand?: string;
904
+ static names(): { [key: string]: string } {
905
+ return {
906
+ merchantId: 'merchant_id',
907
+ productName: 'product_name',
908
+ productId: 'product_id',
909
+ productModel: 'product_model',
910
+ productVersion: 'product_version',
911
+ productPrice: 'product_price',
912
+ mainClass: 'main_class',
913
+ subClass: 'sub_class',
914
+ productBrand: 'product_brand',
915
+ };
916
+ }
917
+
918
+ static types(): { [key: string]: any } {
919
+ return {
920
+ merchantId: 'string',
921
+ productName: 'string',
922
+ productId: 'string',
923
+ productModel: 'string',
924
+ productVersion: 'string',
925
+ productPrice: 'number',
926
+ mainClass: 'string',
927
+ subClass: 'string',
928
+ productBrand: 'string',
929
+ };
930
+ }
931
+
932
+ constructor(map?: { [key: string]: any }) {
933
+ super(map);
934
+ }
935
+ }
936
+
612
937
  // 订单包含的单个商品模型
613
938
  export class OrderGoodsModel extends $tea.Model {
614
939
  static names(): { [key: string]: string } {
@@ -659,6 +984,55 @@ export class LegalInfoUpdate extends $tea.Model {
659
984
  }
660
985
  }
661
986
 
987
+ // 订单信息
988
+ export class MerchantOrderInfo extends $tea.Model {
989
+ // 支付宝代扣协议号
990
+ agreementNo?: string;
991
+ // 订单id
992
+ orderId?: string;
993
+ // 订单创建时间
994
+ orderCreateTime?: string;
995
+ // 租金总额(单位分)
996
+ totalRentMoney?: number;
997
+ // 租期
998
+ rentRerm?: number;
999
+ // 订单状态
1000
+ orderStatus?: string;
1001
+ // 承租人名称
1002
+ userName?: string;
1003
+ // 承租人手机号
1004
+ userPhoneNumber?: string;
1005
+ static names(): { [key: string]: string } {
1006
+ return {
1007
+ agreementNo: 'agreement_no',
1008
+ orderId: 'order_id',
1009
+ orderCreateTime: 'order_create_time',
1010
+ totalRentMoney: 'total_rent_money',
1011
+ rentRerm: 'rent_rerm',
1012
+ orderStatus: 'order_status',
1013
+ userName: 'user_name',
1014
+ userPhoneNumber: 'user_phone_number',
1015
+ };
1016
+ }
1017
+
1018
+ static types(): { [key: string]: any } {
1019
+ return {
1020
+ agreementNo: 'string',
1021
+ orderId: 'string',
1022
+ orderCreateTime: 'string',
1023
+ totalRentMoney: 'number',
1024
+ rentRerm: 'number',
1025
+ orderStatus: 'string',
1026
+ userName: 'string',
1027
+ userPhoneNumber: 'string',
1028
+ };
1029
+ }
1030
+
1031
+ constructor(map?: { [key: string]: any }) {
1032
+ super(map);
1033
+ }
1034
+ }
1035
+
662
1036
  // 订单还款计划
663
1037
  export class PromiseInfo extends $tea.Model {
664
1038
  static names(): { [key: string]: string } {
@@ -746,6 +1120,43 @@ export class AgreementPage extends $tea.Model {
746
1120
  }
747
1121
  }
748
1122
 
1123
+ // 订单履约
1124
+ export class OrderFulfillmentInfo extends $tea.Model {
1125
+ // 租期编号
1126
+ leaseTermIndex?: number;
1127
+ // 租期归还状态
1128
+ rentalReturnState?: string;
1129
+ // 实际还款金额(分)
1130
+ realRepayMoney?: number;
1131
+ // 租金(分)
1132
+ rentalMoney?: number;
1133
+ // 每期实付时间
1134
+ returnTime?: string;
1135
+ static names(): { [key: string]: string } {
1136
+ return {
1137
+ leaseTermIndex: 'lease_term_index',
1138
+ rentalReturnState: 'rental_return_state',
1139
+ realRepayMoney: 'real_repay_money',
1140
+ rentalMoney: 'rental_money',
1141
+ returnTime: 'return_time',
1142
+ };
1143
+ }
1144
+
1145
+ static types(): { [key: string]: any } {
1146
+ return {
1147
+ leaseTermIndex: 'number',
1148
+ rentalReturnState: 'string',
1149
+ realRepayMoney: 'number',
1150
+ rentalMoney: 'number',
1151
+ returnTime: 'string',
1152
+ };
1153
+ }
1154
+
1155
+ constructor(map?: { [key: string]: any }) {
1156
+ super(map);
1157
+ }
1158
+ }
1159
+
749
1160
  // 风险场景的决策结果
750
1161
  export class RiskScene extends $tea.Model {
751
1162
  // 风险场景编码
@@ -869,6 +1280,35 @@ export class CompanyInfoUpdate extends $tea.Model {
869
1280
  }
870
1281
  }
871
1282
 
1283
+ // 订单商品
1284
+ export class OrderProductInfo extends $tea.Model {
1285
+ // 商品编码
1286
+ productId?: string;
1287
+ // 商品名称
1288
+ productName?: string;
1289
+ // 商品数量
1290
+ productNumber?: number;
1291
+ static names(): { [key: string]: string } {
1292
+ return {
1293
+ productId: 'product_id',
1294
+ productName: 'product_name',
1295
+ productNumber: 'product_number',
1296
+ };
1297
+ }
1298
+
1299
+ static types(): { [key: string]: any } {
1300
+ return {
1301
+ productId: 'string',
1302
+ productName: 'string',
1303
+ productNumber: 'number',
1304
+ };
1305
+ }
1306
+
1307
+ constructor(map?: { [key: string]: any }) {
1308
+ super(map);
1309
+ }
1310
+ }
1311
+
872
1312
  // 主动支付单据
873
1313
  export class ActivePayOrder extends $tea.Model {
874
1314
  // 支付宝支付订单号,用于拉起主动支付页面
@@ -1093,6 +1533,8 @@ export class RiskModel extends $tea.Model {
1093
1533
  riskAdvice?: string;
1094
1534
  // 风险等级
1095
1535
  riskRank?: string;
1536
+ // 流程id
1537
+ flowId: string;
1096
1538
  static names(): { [key: string]: string } {
1097
1539
  return {
1098
1540
  sceneCode: 'scene_code',
@@ -1100,6 +1542,7 @@ export class RiskModel extends $tea.Model {
1100
1542
  delinquencyRate: 'delinquency_rate',
1101
1543
  riskAdvice: 'risk_advice',
1102
1544
  riskRank: 'risk_rank',
1545
+ flowId: 'flow_id',
1103
1546
  };
1104
1547
  }
1105
1548
 
@@ -1110,6 +1553,7 @@ export class RiskModel extends $tea.Model {
1110
1553
  delinquencyRate: 'string',
1111
1554
  riskAdvice: 'string',
1112
1555
  riskRank: 'string',
1556
+ flowId: 'string',
1113
1557
  };
1114
1558
  }
1115
1559
 
@@ -6246,29 +6690,20 @@ export class GetInnerFunddividemerchantResponse extends $tea.Model {
6246
6690
  }
6247
6691
  }
6248
6692
 
6249
- export class RegisterMerchantexpandMerchantRequest extends $tea.Model {
6693
+ export class QueryInnerInsuresignRequest extends $tea.Model {
6250
6694
  // OAuth模式下的授权token
6251
6695
  authToken?: string;
6252
6696
  productInstanceId?: string;
6253
- // 公司信息
6254
- companyInfo: CompanyInfo;
6255
- // 法人信息
6256
- legalInfo: LegalInfo;
6257
- // 应用信息
6258
- applicationInfo: ApplicationInfo;
6259
- // 进件模式 DIRECT(直连进件) AGENT(代理进件)
6260
- expandMode: string;
6261
- // expand_mode=_AGENT_ 必填
6262
- subTenantId?: string;
6697
+ // 商户租户id
6698
+ merchantTenantId: string;
6699
+ // 保司社会统一信用代码
6700
+ insureMerchantId: string;
6263
6701
  static names(): { [key: string]: string } {
6264
6702
  return {
6265
6703
  authToken: 'auth_token',
6266
6704
  productInstanceId: 'product_instance_id',
6267
- companyInfo: 'company_info',
6268
- legalInfo: 'legal_info',
6269
- applicationInfo: 'application_info',
6270
- expandMode: 'expand_mode',
6271
- subTenantId: 'sub_tenant_id',
6705
+ merchantTenantId: 'merchant_tenant_id',
6706
+ insureMerchantId: 'insure_merchant_id',
6272
6707
  };
6273
6708
  }
6274
6709
 
@@ -6276,11 +6711,8 @@ export class RegisterMerchantexpandMerchantRequest extends $tea.Model {
6276
6711
  return {
6277
6712
  authToken: 'string',
6278
6713
  productInstanceId: 'string',
6279
- companyInfo: CompanyInfo,
6280
- legalInfo: LegalInfo,
6281
- applicationInfo: ApplicationInfo,
6282
- expandMode: 'string',
6283
- subTenantId: 'string',
6714
+ merchantTenantId: 'string',
6715
+ insureMerchantId: 'string',
6284
6716
  };
6285
6717
  }
6286
6718
 
@@ -6289,21 +6721,33 @@ export class RegisterMerchantexpandMerchantRequest extends $tea.Model {
6289
6721
  }
6290
6722
  }
6291
6723
 
6292
- export class RegisterMerchantexpandMerchantResponse extends $tea.Model {
6724
+ export class QueryInnerInsuresignResponse extends $tea.Model {
6293
6725
  // 请求唯一ID,用于链路跟踪和问题排查
6294
6726
  reqMsgId?: string;
6295
6727
  // 结果码,一般OK表示调用成功
6296
6728
  resultCode?: string;
6297
6729
  // 异常信息的文本描述
6298
6730
  resultMsg?: string;
6299
- // 进件流水号
6300
- payExpandId?: string;
6731
+ // 商户社会统一信用代码
6732
+ merchantId?: string;
6733
+ // 保司社会统一信用代码
6734
+ insureMerchantId?: string;
6735
+ // 外部代扣协议号
6736
+ externalAgreementNo?: string;
6737
+ // 合同未签署:CONTRACT_UN_SIGNED
6738
+ // 合同已签署:CONTRACT_SIGNED
6739
+ // 代扣已签署:WITHHOLD_SIGNED
6740
+ // 代扣已解约:WITHHOLD_UN_SIGNED
6741
+ status?: string;
6301
6742
  static names(): { [key: string]: string } {
6302
6743
  return {
6303
6744
  reqMsgId: 'req_msg_id',
6304
6745
  resultCode: 'result_code',
6305
6746
  resultMsg: 'result_msg',
6306
- payExpandId: 'pay_expand_id',
6747
+ merchantId: 'merchant_id',
6748
+ insureMerchantId: 'insure_merchant_id',
6749
+ externalAgreementNo: 'external_agreement_no',
6750
+ status: 'status',
6307
6751
  };
6308
6752
  }
6309
6753
 
@@ -6312,7 +6756,10 @@ export class RegisterMerchantexpandMerchantResponse extends $tea.Model {
6312
6756
  reqMsgId: 'string',
6313
6757
  resultCode: 'string',
6314
6758
  resultMsg: 'string',
6315
- payExpandId: 'string',
6759
+ merchantId: 'string',
6760
+ insureMerchantId: 'string',
6761
+ externalAgreementNo: 'string',
6762
+ status: 'string',
6316
6763
  };
6317
6764
  }
6318
6765
 
@@ -6321,19 +6768,1077 @@ export class RegisterMerchantexpandMerchantResponse extends $tea.Model {
6321
6768
  }
6322
6769
  }
6323
6770
 
6324
- export class UploadMerchantexpandFileRequest extends $tea.Model {
6771
+ export class CreateInnerInsuresignRequest extends $tea.Model {
6325
6772
  // OAuth模式下的授权token
6326
6773
  authToken?: string;
6327
6774
  productInstanceId?: string;
6328
- // 文件名称 包含后缀
6329
- fileName: string;
6330
- // ● BUSINESS_LICENSE 营业执照 ● CARD_FRONT 身份证正面 ● CARD_BACK 身份证反面 ● SPLITTING 分账
6331
- bizScene: string;
6775
+ // 商户租户id
6776
+ merchantTenantId: string;
6777
+ // 外部代扣协议号
6778
+ externalAgreementNo: string;
6332
6779
  static names(): { [key: string]: string } {
6333
6780
  return {
6334
6781
  authToken: 'auth_token',
6335
6782
  productInstanceId: 'product_instance_id',
6336
- fileName: 'file_name',
6783
+ merchantTenantId: 'merchant_tenant_id',
6784
+ externalAgreementNo: 'external_agreement_no',
6785
+ };
6786
+ }
6787
+
6788
+ static types(): { [key: string]: any } {
6789
+ return {
6790
+ authToken: 'string',
6791
+ productInstanceId: 'string',
6792
+ merchantTenantId: 'string',
6793
+ externalAgreementNo: 'string',
6794
+ };
6795
+ }
6796
+
6797
+ constructor(map?: { [key: string]: any }) {
6798
+ super(map);
6799
+ }
6800
+ }
6801
+
6802
+ export class CreateInnerInsuresignResponse extends $tea.Model {
6803
+ // 请求唯一ID,用于链路跟踪和问题排查
6804
+ reqMsgId?: string;
6805
+ // 结果码,一般OK表示调用成功
6806
+ resultCode?: string;
6807
+ // 异常信息的文本描述
6808
+ resultMsg?: string;
6809
+ // 签约链接
6810
+ signStr?: string;
6811
+ static names(): { [key: string]: string } {
6812
+ return {
6813
+ reqMsgId: 'req_msg_id',
6814
+ resultCode: 'result_code',
6815
+ resultMsg: 'result_msg',
6816
+ signStr: 'sign_str',
6817
+ };
6818
+ }
6819
+
6820
+ static types(): { [key: string]: any } {
6821
+ return {
6822
+ reqMsgId: 'string',
6823
+ resultCode: 'string',
6824
+ resultMsg: 'string',
6825
+ signStr: 'string',
6826
+ };
6827
+ }
6828
+
6829
+ constructor(map?: { [key: string]: any }) {
6830
+ super(map);
6831
+ }
6832
+ }
6833
+
6834
+ export class PagequeryInnerInsureorderRequest extends $tea.Model {
6835
+ // OAuth模式下的授权token
6836
+ authToken?: string;
6837
+ productInstanceId?: string;
6838
+ // 租户id
6839
+ // (商家后台接口特有)
6840
+ tenantId: string;
6841
+ // 商家订单ID
6842
+ orderId?: string;
6843
+ // 分页查询对象
6844
+ pageInfo: PageQuery;
6845
+ // 保司信息merchant_id
6846
+ insureMerchantId: string;
6847
+ // 投保状态枚举
6848
+ status?: string;
6849
+ static names(): { [key: string]: string } {
6850
+ return {
6851
+ authToken: 'auth_token',
6852
+ productInstanceId: 'product_instance_id',
6853
+ tenantId: 'tenant_id',
6854
+ orderId: 'order_id',
6855
+ pageInfo: 'page_info',
6856
+ insureMerchantId: 'insure_merchant_id',
6857
+ status: 'status',
6858
+ };
6859
+ }
6860
+
6861
+ static types(): { [key: string]: any } {
6862
+ return {
6863
+ authToken: 'string',
6864
+ productInstanceId: 'string',
6865
+ tenantId: 'string',
6866
+ orderId: 'string',
6867
+ pageInfo: PageQuery,
6868
+ insureMerchantId: 'string',
6869
+ status: 'string',
6870
+ };
6871
+ }
6872
+
6873
+ constructor(map?: { [key: string]: any }) {
6874
+ super(map);
6875
+ }
6876
+ }
6877
+
6878
+ export class PagequeryInnerInsureorderResponse extends $tea.Model {
6879
+ // 请求唯一ID,用于链路跟踪和问题排查
6880
+ reqMsgId?: string;
6881
+ // 结果码,一般OK表示调用成功
6882
+ resultCode?: string;
6883
+ // 异常信息的文本描述
6884
+ resultMsg?: string;
6885
+ // 数据总量
6886
+ totalSize?: number;
6887
+ // 保单信息
6888
+ inusreOrderInfos?: InsureOrderInfo[];
6889
+ static names(): { [key: string]: string } {
6890
+ return {
6891
+ reqMsgId: 'req_msg_id',
6892
+ resultCode: 'result_code',
6893
+ resultMsg: 'result_msg',
6894
+ totalSize: 'total_size',
6895
+ inusreOrderInfos: 'inusre_order_infos',
6896
+ };
6897
+ }
6898
+
6899
+ static types(): { [key: string]: any } {
6900
+ return {
6901
+ reqMsgId: 'string',
6902
+ resultCode: 'string',
6903
+ resultMsg: 'string',
6904
+ totalSize: 'number',
6905
+ inusreOrderInfos: { 'type': 'array', 'itemType': InsureOrderInfo },
6906
+ };
6907
+ }
6908
+
6909
+ constructor(map?: { [key: string]: any }) {
6910
+ super(map);
6911
+ }
6912
+ }
6913
+
6914
+ export class PagequeryInnerProductRequest extends $tea.Model {
6915
+ // OAuth模式下的授权token
6916
+ authToken?: string;
6917
+ productInstanceId?: string;
6918
+ // 商户租户id
6919
+ tenantId: string;
6920
+ // 商品名称
6921
+ productName?: string;
6922
+ // 商品id
6923
+ productId?: string;
6924
+ // 一级类目
6925
+ mainClass?: string;
6926
+ // 二级类目
6927
+ subClass?: string;
6928
+ // 品牌
6929
+ productBrand?: string;
6930
+ // 分页
6931
+ pageInfo: PageQuery;
6932
+ static names(): { [key: string]: string } {
6933
+ return {
6934
+ authToken: 'auth_token',
6935
+ productInstanceId: 'product_instance_id',
6936
+ tenantId: 'tenant_id',
6937
+ productName: 'product_name',
6938
+ productId: 'product_id',
6939
+ mainClass: 'main_class',
6940
+ subClass: 'sub_class',
6941
+ productBrand: 'product_brand',
6942
+ pageInfo: 'page_info',
6943
+ };
6944
+ }
6945
+
6946
+ static types(): { [key: string]: any } {
6947
+ return {
6948
+ authToken: 'string',
6949
+ productInstanceId: 'string',
6950
+ tenantId: 'string',
6951
+ productName: 'string',
6952
+ productId: 'string',
6953
+ mainClass: 'string',
6954
+ subClass: 'string',
6955
+ productBrand: 'string',
6956
+ pageInfo: PageQuery,
6957
+ };
6958
+ }
6959
+
6960
+ constructor(map?: { [key: string]: any }) {
6961
+ super(map);
6962
+ }
6963
+ }
6964
+
6965
+ export class PagequeryInnerProductResponse extends $tea.Model {
6966
+ // 请求唯一ID,用于链路跟踪和问题排查
6967
+ reqMsgId?: string;
6968
+ // 结果码,一般OK表示调用成功
6969
+ resultCode?: string;
6970
+ // 异常信息的文本描述
6971
+ resultMsg?: string;
6972
+ // 总量
6973
+ total?: number;
6974
+ // 商品列表
6975
+ productInfoList?: ProductInfo[];
6976
+ static names(): { [key: string]: string } {
6977
+ return {
6978
+ reqMsgId: 'req_msg_id',
6979
+ resultCode: 'result_code',
6980
+ resultMsg: 'result_msg',
6981
+ total: 'total',
6982
+ productInfoList: 'product_info_list',
6983
+ };
6984
+ }
6985
+
6986
+ static types(): { [key: string]: any } {
6987
+ return {
6988
+ reqMsgId: 'string',
6989
+ resultCode: 'string',
6990
+ resultMsg: 'string',
6991
+ total: 'number',
6992
+ productInfoList: { 'type': 'array', 'itemType': ProductInfo },
6993
+ };
6994
+ }
6995
+
6996
+ constructor(map?: { [key: string]: any }) {
6997
+ super(map);
6998
+ }
6999
+ }
7000
+
7001
+ export class DetailInnerProductRequest extends $tea.Model {
7002
+ // OAuth模式下的授权token
7003
+ authToken?: string;
7004
+ productInstanceId?: string;
7005
+ // 商户租户id
7006
+ tenantId: string;
7007
+ // 商家社会统一信用代码
7008
+ merchantId: string;
7009
+ // 商品id
7010
+ productId: string;
7011
+ // 商品版本
7012
+ productVersion: string;
7013
+ static names(): { [key: string]: string } {
7014
+ return {
7015
+ authToken: 'auth_token',
7016
+ productInstanceId: 'product_instance_id',
7017
+ tenantId: 'tenant_id',
7018
+ merchantId: 'merchant_id',
7019
+ productId: 'product_id',
7020
+ productVersion: 'product_version',
7021
+ };
7022
+ }
7023
+
7024
+ static types(): { [key: string]: any } {
7025
+ return {
7026
+ authToken: 'string',
7027
+ productInstanceId: 'string',
7028
+ tenantId: 'string',
7029
+ merchantId: 'string',
7030
+ productId: 'string',
7031
+ productVersion: 'string',
7032
+ };
7033
+ }
7034
+
7035
+ constructor(map?: { [key: string]: any }) {
7036
+ super(map);
7037
+ }
7038
+ }
7039
+
7040
+ export class DetailInnerProductResponse extends $tea.Model {
7041
+ // 请求唯一ID,用于链路跟踪和问题排查
7042
+ reqMsgId?: string;
7043
+ // 结果码,一般OK表示调用成功
7044
+ resultCode?: string;
7045
+ // 异常信息的文本描述
7046
+ resultMsg?: string;
7047
+ // 商家社会统一信用代码
7048
+ merchantId?: string;
7049
+ // 商品名称
7050
+ productName?: string;
7051
+ // 商品id
7052
+ productId?: string;
7053
+ // 商品规格
7054
+ productModel?: string;
7055
+ // 商品版本
7056
+ productVersion?: string;
7057
+ // 指导价
7058
+ productPrice?: string;
7059
+ // 一级类目
7060
+ mainClass?: string;
7061
+ // 二级类目
7062
+ subClass?: string;
7063
+ // 品牌
7064
+ productBrand?: string;
7065
+ // 商品链接
7066
+ productUrl?: string;
7067
+ // 商品详情
7068
+ productDetailInfo?: string;
7069
+ static names(): { [key: string]: string } {
7070
+ return {
7071
+ reqMsgId: 'req_msg_id',
7072
+ resultCode: 'result_code',
7073
+ resultMsg: 'result_msg',
7074
+ merchantId: 'merchant_id',
7075
+ productName: 'product_name',
7076
+ productId: 'product_id',
7077
+ productModel: 'product_model',
7078
+ productVersion: 'product_version',
7079
+ productPrice: 'product_price',
7080
+ mainClass: 'main_class',
7081
+ subClass: 'sub_class',
7082
+ productBrand: 'product_brand',
7083
+ productUrl: 'product_url',
7084
+ productDetailInfo: 'product_detail_info',
7085
+ };
7086
+ }
7087
+
7088
+ static types(): { [key: string]: any } {
7089
+ return {
7090
+ reqMsgId: 'string',
7091
+ resultCode: 'string',
7092
+ resultMsg: 'string',
7093
+ merchantId: 'string',
7094
+ productName: 'string',
7095
+ productId: 'string',
7096
+ productModel: 'string',
7097
+ productVersion: 'string',
7098
+ productPrice: 'string',
7099
+ mainClass: 'string',
7100
+ subClass: 'string',
7101
+ productBrand: 'string',
7102
+ productUrl: 'string',
7103
+ productDetailInfo: 'string',
7104
+ };
7105
+ }
7106
+
7107
+ constructor(map?: { [key: string]: any }) {
7108
+ super(map);
7109
+ }
7110
+ }
7111
+
7112
+ export class GetInnerHomepagenoticeRequest extends $tea.Model {
7113
+ // OAuth模式下的授权token
7114
+ authToken?: string;
7115
+ productInstanceId?: string;
7116
+ // 商户租户id
7117
+ tenantId: string;
7118
+ static names(): { [key: string]: string } {
7119
+ return {
7120
+ authToken: 'auth_token',
7121
+ productInstanceId: 'product_instance_id',
7122
+ tenantId: 'tenant_id',
7123
+ };
7124
+ }
7125
+
7126
+ static types(): { [key: string]: any } {
7127
+ return {
7128
+ authToken: 'string',
7129
+ productInstanceId: 'string',
7130
+ tenantId: 'string',
7131
+ };
7132
+ }
7133
+
7134
+ constructor(map?: { [key: string]: any }) {
7135
+ super(map);
7136
+ }
7137
+ }
7138
+
7139
+ export class GetInnerHomepagenoticeResponse extends $tea.Model {
7140
+ // 请求唯一ID,用于链路跟踪和问题排查
7141
+ reqMsgId?: string;
7142
+ // 结果码,一般OK表示调用成功
7143
+ resultCode?: string;
7144
+ // 异常信息的文本描述
7145
+ resultMsg?: string;
7146
+ // 通知id
7147
+ noticeId?: number;
7148
+ // 通知标题
7149
+ title?: string;
7150
+ // 未读数量
7151
+ unreadCount?: number;
7152
+ // 是否未读
7153
+ unread?: boolean;
7154
+ static names(): { [key: string]: string } {
7155
+ return {
7156
+ reqMsgId: 'req_msg_id',
7157
+ resultCode: 'result_code',
7158
+ resultMsg: 'result_msg',
7159
+ noticeId: 'notice_id',
7160
+ title: 'title',
7161
+ unreadCount: 'unread_count',
7162
+ unread: 'unread',
7163
+ };
7164
+ }
7165
+
7166
+ static types(): { [key: string]: any } {
7167
+ return {
7168
+ reqMsgId: 'string',
7169
+ resultCode: 'string',
7170
+ resultMsg: 'string',
7171
+ noticeId: 'number',
7172
+ title: 'string',
7173
+ unreadCount: 'number',
7174
+ unread: 'boolean',
7175
+ };
7176
+ }
7177
+
7178
+ constructor(map?: { [key: string]: any }) {
7179
+ super(map);
7180
+ }
7181
+ }
7182
+
7183
+ export class PagequeryInnerNoticeRequest extends $tea.Model {
7184
+ // OAuth模式下的授权token
7185
+ authToken?: string;
7186
+ productInstanceId?: string;
7187
+ // 商户租户id
7188
+ tenantId: string;
7189
+ // 分页
7190
+ pageInfo: PageQuery;
7191
+ static names(): { [key: string]: string } {
7192
+ return {
7193
+ authToken: 'auth_token',
7194
+ productInstanceId: 'product_instance_id',
7195
+ tenantId: 'tenant_id',
7196
+ pageInfo: 'page_info',
7197
+ };
7198
+ }
7199
+
7200
+ static types(): { [key: string]: any } {
7201
+ return {
7202
+ authToken: 'string',
7203
+ productInstanceId: 'string',
7204
+ tenantId: 'string',
7205
+ pageInfo: PageQuery,
7206
+ };
7207
+ }
7208
+
7209
+ constructor(map?: { [key: string]: any }) {
7210
+ super(map);
7211
+ }
7212
+ }
7213
+
7214
+ export class PagequeryInnerNoticeResponse extends $tea.Model {
7215
+ // 请求唯一ID,用于链路跟踪和问题排查
7216
+ reqMsgId?: string;
7217
+ // 结果码,一般OK表示调用成功
7218
+ resultCode?: string;
7219
+ // 异常信息的文本描述
7220
+ resultMsg?: string;
7221
+ // 总量
7222
+ total?: number;
7223
+ // 商户通知信息
7224
+ noticeInfoList?: NoticeInfo[];
7225
+ static names(): { [key: string]: string } {
7226
+ return {
7227
+ reqMsgId: 'req_msg_id',
7228
+ resultCode: 'result_code',
7229
+ resultMsg: 'result_msg',
7230
+ total: 'total',
7231
+ noticeInfoList: 'notice_info_list',
7232
+ };
7233
+ }
7234
+
7235
+ static types(): { [key: string]: any } {
7236
+ return {
7237
+ reqMsgId: 'string',
7238
+ resultCode: 'string',
7239
+ resultMsg: 'string',
7240
+ total: 'number',
7241
+ noticeInfoList: { 'type': 'array', 'itemType': NoticeInfo },
7242
+ };
7243
+ }
7244
+
7245
+ constructor(map?: { [key: string]: any }) {
7246
+ super(map);
7247
+ }
7248
+ }
7249
+
7250
+ export class DetailInnerNoticeRequest extends $tea.Model {
7251
+ // OAuth模式下的授权token
7252
+ authToken?: string;
7253
+ productInstanceId?: string;
7254
+ // 商户租户id
7255
+ tenantId: string;
7256
+ // 通知id
7257
+ noticeId: number;
7258
+ // 是否未读
7259
+ unread: boolean;
7260
+ static names(): { [key: string]: string } {
7261
+ return {
7262
+ authToken: 'auth_token',
7263
+ productInstanceId: 'product_instance_id',
7264
+ tenantId: 'tenant_id',
7265
+ noticeId: 'notice_id',
7266
+ unread: 'unread',
7267
+ };
7268
+ }
7269
+
7270
+ static types(): { [key: string]: any } {
7271
+ return {
7272
+ authToken: 'string',
7273
+ productInstanceId: 'string',
7274
+ tenantId: 'string',
7275
+ noticeId: 'number',
7276
+ unread: 'boolean',
7277
+ };
7278
+ }
7279
+
7280
+ constructor(map?: { [key: string]: any }) {
7281
+ super(map);
7282
+ }
7283
+ }
7284
+
7285
+ export class DetailInnerNoticeResponse extends $tea.Model {
7286
+ // 请求唯一ID,用于链路跟踪和问题排查
7287
+ reqMsgId?: string;
7288
+ // 结果码,一般OK表示调用成功
7289
+ resultCode?: string;
7290
+ // 异常信息的文本描述
7291
+ resultMsg?: string;
7292
+ // 通知标题
7293
+ title?: string;
7294
+ // 通知内容
7295
+ content?: string;
7296
+ // 通知创建时间
7297
+ noticeCreateTime?: string;
7298
+ static names(): { [key: string]: string } {
7299
+ return {
7300
+ reqMsgId: 'req_msg_id',
7301
+ resultCode: 'result_code',
7302
+ resultMsg: 'result_msg',
7303
+ title: 'title',
7304
+ content: 'content',
7305
+ noticeCreateTime: 'notice_create_time',
7306
+ };
7307
+ }
7308
+
7309
+ static types(): { [key: string]: any } {
7310
+ return {
7311
+ reqMsgId: 'string',
7312
+ resultCode: 'string',
7313
+ resultMsg: 'string',
7314
+ title: 'string',
7315
+ content: 'string',
7316
+ noticeCreateTime: 'string',
7317
+ };
7318
+ }
7319
+
7320
+ constructor(map?: { [key: string]: any }) {
7321
+ super(map);
7322
+ }
7323
+ }
7324
+
7325
+ export class PagequeryInnerOrderRequest extends $tea.Model {
7326
+ // OAuth模式下的授权token
7327
+ authToken?: string;
7328
+ productInstanceId?: string;
7329
+ // 商户租户id
7330
+ tenantId: string;
7331
+ // 订单id
7332
+ orderId?: string;
7333
+ // 支付宝代扣协议号
7334
+ agreementNo?: string;
7335
+ // 订单创建时间开始
7336
+ orderCreateTimeStart?: string;
7337
+ // 订单创建时间结束
7338
+ orderCreateTimeEnd?: string;
7339
+ // 订单状态
7340
+ orderStatus?: string;
7341
+ // 分页
7342
+ pageInfo: PageQuery;
7343
+ static names(): { [key: string]: string } {
7344
+ return {
7345
+ authToken: 'auth_token',
7346
+ productInstanceId: 'product_instance_id',
7347
+ tenantId: 'tenant_id',
7348
+ orderId: 'order_id',
7349
+ agreementNo: 'agreement_no',
7350
+ orderCreateTimeStart: 'order_create_time_start',
7351
+ orderCreateTimeEnd: 'order_create_time_end',
7352
+ orderStatus: 'order_status',
7353
+ pageInfo: 'page_info',
7354
+ };
7355
+ }
7356
+
7357
+ static types(): { [key: string]: any } {
7358
+ return {
7359
+ authToken: 'string',
7360
+ productInstanceId: 'string',
7361
+ tenantId: 'string',
7362
+ orderId: 'string',
7363
+ agreementNo: 'string',
7364
+ orderCreateTimeStart: 'string',
7365
+ orderCreateTimeEnd: 'string',
7366
+ orderStatus: 'string',
7367
+ pageInfo: PageQuery,
7368
+ };
7369
+ }
7370
+
7371
+ constructor(map?: { [key: string]: any }) {
7372
+ super(map);
7373
+ }
7374
+ }
7375
+
7376
+ export class PagequeryInnerOrderResponse extends $tea.Model {
7377
+ // 请求唯一ID,用于链路跟踪和问题排查
7378
+ reqMsgId?: string;
7379
+ // 结果码,一般OK表示调用成功
7380
+ resultCode?: string;
7381
+ // 异常信息的文本描述
7382
+ resultMsg?: string;
7383
+ // 订单列表信息
7384
+ orderInfoList?: MerchantOrderInfo[];
7385
+ // 总量
7386
+ total?: number;
7387
+ static names(): { [key: string]: string } {
7388
+ return {
7389
+ reqMsgId: 'req_msg_id',
7390
+ resultCode: 'result_code',
7391
+ resultMsg: 'result_msg',
7392
+ orderInfoList: 'order_info_list',
7393
+ total: 'total',
7394
+ };
7395
+ }
7396
+
7397
+ static types(): { [key: string]: any } {
7398
+ return {
7399
+ reqMsgId: 'string',
7400
+ resultCode: 'string',
7401
+ resultMsg: 'string',
7402
+ orderInfoList: { 'type': 'array', 'itemType': MerchantOrderInfo },
7403
+ total: 'number',
7404
+ };
7405
+ }
7406
+
7407
+ constructor(map?: { [key: string]: any }) {
7408
+ super(map);
7409
+ }
7410
+ }
7411
+
7412
+ export class DetailInnerOrderRequest extends $tea.Model {
7413
+ // OAuth模式下的授权token
7414
+ authToken?: string;
7415
+ productInstanceId?: string;
7416
+ // 商户租户id
7417
+ tenantId: string;
7418
+ // 订单id
7419
+ orderId: string;
7420
+ static names(): { [key: string]: string } {
7421
+ return {
7422
+ authToken: 'auth_token',
7423
+ productInstanceId: 'product_instance_id',
7424
+ tenantId: 'tenant_id',
7425
+ orderId: 'order_id',
7426
+ };
7427
+ }
7428
+
7429
+ static types(): { [key: string]: any } {
7430
+ return {
7431
+ authToken: 'string',
7432
+ productInstanceId: 'string',
7433
+ tenantId: 'string',
7434
+ orderId: 'string',
7435
+ };
7436
+ }
7437
+
7438
+ constructor(map?: { [key: string]: any }) {
7439
+ super(map);
7440
+ }
7441
+ }
7442
+
7443
+ export class DetailInnerOrderResponse extends $tea.Model {
7444
+ // 请求唯一ID,用于链路跟踪和问题排查
7445
+ reqMsgId?: string;
7446
+ // 结果码,一般OK表示调用成功
7447
+ resultCode?: string;
7448
+ // 异常信息的文本描述
7449
+ resultMsg?: string;
7450
+ // 订单id
7451
+ orderId?: string;
7452
+ // 支付宝代扣协议号
7453
+ agreementNo?: string;
7454
+ // 商品总数量
7455
+ productTotalCount?: number;
7456
+ // 订单基础信息
7457
+ orderInfo?: OrderInfo;
7458
+ // 用户信息
7459
+ orderUserInfo?: OrderUserInfo;
7460
+ // 订单履约
7461
+ orderFulfillmentInfoList?: OrderFulfillmentInfo[];
7462
+ // 订单还款承诺
7463
+ orderPromiseInfo?: OrderPromiseInfo;
7464
+ // 订单商品信息
7465
+ orderProductInfoList?: OrderProductInfo[];
7466
+ static names(): { [key: string]: string } {
7467
+ return {
7468
+ reqMsgId: 'req_msg_id',
7469
+ resultCode: 'result_code',
7470
+ resultMsg: 'result_msg',
7471
+ orderId: 'order_id',
7472
+ agreementNo: 'agreement_no',
7473
+ productTotalCount: 'product_total_count',
7474
+ orderInfo: 'order_info',
7475
+ orderUserInfo: 'order_user_info',
7476
+ orderFulfillmentInfoList: 'order_fulfillment_info_list',
7477
+ orderPromiseInfo: 'order_promise_info',
7478
+ orderProductInfoList: 'order_product_info_list',
7479
+ };
7480
+ }
7481
+
7482
+ static types(): { [key: string]: any } {
7483
+ return {
7484
+ reqMsgId: 'string',
7485
+ resultCode: 'string',
7486
+ resultMsg: 'string',
7487
+ orderId: 'string',
7488
+ agreementNo: 'string',
7489
+ productTotalCount: 'number',
7490
+ orderInfo: OrderInfo,
7491
+ orderUserInfo: OrderUserInfo,
7492
+ orderFulfillmentInfoList: { 'type': 'array', 'itemType': OrderFulfillmentInfo },
7493
+ orderPromiseInfo: OrderPromiseInfo,
7494
+ orderProductInfoList: { 'type': 'array', 'itemType': OrderProductInfo },
7495
+ };
7496
+ }
7497
+
7498
+ constructor(map?: { [key: string]: any }) {
7499
+ super(map);
7500
+ }
7501
+ }
7502
+
7503
+ export class CreateInsureRequest extends $tea.Model {
7504
+ // OAuth模式下的授权token
7505
+ authToken?: string;
7506
+ productInstanceId?: string;
7507
+ // 商户的订单号,后续用作和保单结果交互
7508
+ orderId: string;
7509
+ // 风控业务流水号
7510
+ riskFlowId: string;
7511
+ // 保险公司枚举,PA:平安保险
7512
+ insureCompanyType: string;
7513
+ // 保险类型枚举,PERFORMANCE:履约
7514
+ insureProductType: string;
7515
+ // 投保商品信息列表
7516
+ productInfoList: InsureProductInfo[];
7517
+ // 发货方式枚举,可选值:
7518
+ // EXPRESS-物流发货
7519
+ // OFFLINE-线下交易
7520
+ deliveryType: string;
7521
+ // 公司联系人姓名,RSA 加密传输
7522
+ contactName: string;
7523
+ // 公司联系人手机号,RSA 加密传输
7524
+ contactMobile: string;
7525
+ // 实人认证业务流水号
7526
+ facevrfFlowId?: string;
7527
+ // 物流单号,非必填参数。如果选择的物流发货方式为 EXPRESS(物流发货),则该字段必填。
7528
+ logisticsNumber?: string;
7529
+ // 交易时间,非必填参数。如果发货方式为 OFFLINE(线下交易),则该字段必填。
7530
+ tradeTime?: string;
7531
+ static names(): { [key: string]: string } {
7532
+ return {
7533
+ authToken: 'auth_token',
7534
+ productInstanceId: 'product_instance_id',
7535
+ orderId: 'order_id',
7536
+ riskFlowId: 'risk_flow_id',
7537
+ insureCompanyType: 'insure_company_type',
7538
+ insureProductType: 'insure_product_type',
7539
+ productInfoList: 'product_info_list',
7540
+ deliveryType: 'delivery_type',
7541
+ contactName: 'contact_name',
7542
+ contactMobile: 'contact_mobile',
7543
+ facevrfFlowId: 'facevrf_flow_id',
7544
+ logisticsNumber: 'logistics_number',
7545
+ tradeTime: 'trade_time',
7546
+ };
7547
+ }
7548
+
7549
+ static types(): { [key: string]: any } {
7550
+ return {
7551
+ authToken: 'string',
7552
+ productInstanceId: 'string',
7553
+ orderId: 'string',
7554
+ riskFlowId: 'string',
7555
+ insureCompanyType: 'string',
7556
+ insureProductType: 'string',
7557
+ productInfoList: { 'type': 'array', 'itemType': InsureProductInfo },
7558
+ deliveryType: 'string',
7559
+ contactName: 'string',
7560
+ contactMobile: 'string',
7561
+ facevrfFlowId: 'string',
7562
+ logisticsNumber: 'string',
7563
+ tradeTime: 'string',
7564
+ };
7565
+ }
7566
+
7567
+ constructor(map?: { [key: string]: any }) {
7568
+ super(map);
7569
+ }
7570
+ }
7571
+
7572
+ export class CreateInsureResponse extends $tea.Model {
7573
+ // 请求唯一ID,用于链路跟踪和问题排查
7574
+ reqMsgId?: string;
7575
+ // 结果码,一般OK表示调用成功
7576
+ resultCode?: string;
7577
+ // 异常信息的文本描述
7578
+ resultMsg?: string;
7579
+ static names(): { [key: string]: string } {
7580
+ return {
7581
+ reqMsgId: 'req_msg_id',
7582
+ resultCode: 'result_code',
7583
+ resultMsg: 'result_msg',
7584
+ };
7585
+ }
7586
+
7587
+ static types(): { [key: string]: any } {
7588
+ return {
7589
+ reqMsgId: 'string',
7590
+ resultCode: 'string',
7591
+ resultMsg: 'string',
7592
+ };
7593
+ }
7594
+
7595
+ constructor(map?: { [key: string]: any }) {
7596
+ super(map);
7597
+ }
7598
+ }
7599
+
7600
+ export class QueryInsureRequest extends $tea.Model {
7601
+ // OAuth模式下的授权token
7602
+ authToken?: string;
7603
+ productInstanceId?: string;
7604
+ // 商户的订单号
7605
+ orderId: string;
7606
+ // 保险类型枚举,PERFORMANCE:履约
7607
+ insureProductType: string;
7608
+ // 保险公司枚举,PA:平安保险
7609
+ insureCompanyType: string;
7610
+ static names(): { [key: string]: string } {
7611
+ return {
7612
+ authToken: 'auth_token',
7613
+ productInstanceId: 'product_instance_id',
7614
+ orderId: 'order_id',
7615
+ insureProductType: 'insure_product_type',
7616
+ insureCompanyType: 'insure_company_type',
7617
+ };
7618
+ }
7619
+
7620
+ static types(): { [key: string]: any } {
7621
+ return {
7622
+ authToken: 'string',
7623
+ productInstanceId: 'string',
7624
+ orderId: 'string',
7625
+ insureProductType: 'string',
7626
+ insureCompanyType: 'string',
7627
+ };
7628
+ }
7629
+
7630
+ constructor(map?: { [key: string]: any }) {
7631
+ super(map);
7632
+ }
7633
+ }
7634
+
7635
+ export class QueryInsureResponse extends $tea.Model {
7636
+ // 请求唯一ID,用于链路跟踪和问题排查
7637
+ reqMsgId?: string;
7638
+ // 结果码,一般OK表示调用成功
7639
+ resultCode?: string;
7640
+ // 异常信息的文本描述
7641
+ resultMsg?: string;
7642
+ // 商户的订单号
7643
+ orderId?: string;
7644
+ // 保单号
7645
+ insureId?: string;
7646
+ // 保险订单状态。TOBE_INSURE:待发起投保 ;INSUR_PRE_SUCC:投保成功。WITHHOLD_DEDUCTING:代扣中;WITHHOLD_SUCC:代扣成功。WITHHOLD_FAIL:代扣失败。INSUR_SUCC:承保成功
7647
+ status?: string;
7648
+ // 商品名称
7649
+ productName?: string;
7650
+ // 2024-09-24 20:04:35
7651
+ insureStartTime?: string;
7652
+ // 2024-12-24 20:04:35
7653
+ insureEndTime?: string;
7654
+ // 投保金额(保额),单位分。100代表1元
7655
+ insureAmount?: string;
7656
+ // 投保费用(保费),单位分。100代表1元
7657
+ insurePremium?: string;
7658
+ static names(): { [key: string]: string } {
7659
+ return {
7660
+ reqMsgId: 'req_msg_id',
7661
+ resultCode: 'result_code',
7662
+ resultMsg: 'result_msg',
7663
+ orderId: 'order_id',
7664
+ insureId: 'insure_id',
7665
+ status: 'status',
7666
+ productName: 'product_name',
7667
+ insureStartTime: 'insure_start_time',
7668
+ insureEndTime: 'insure_end_time',
7669
+ insureAmount: 'insure_amount',
7670
+ insurePremium: 'insure_premium',
7671
+ };
7672
+ }
7673
+
7674
+ static types(): { [key: string]: any } {
7675
+ return {
7676
+ reqMsgId: 'string',
7677
+ resultCode: 'string',
7678
+ resultMsg: 'string',
7679
+ orderId: 'string',
7680
+ insureId: 'string',
7681
+ status: 'string',
7682
+ productName: 'string',
7683
+ insureStartTime: 'string',
7684
+ insureEndTime: 'string',
7685
+ insureAmount: 'string',
7686
+ insurePremium: 'string',
7687
+ };
7688
+ }
7689
+
7690
+ constructor(map?: { [key: string]: any }) {
7691
+ super(map);
7692
+ }
7693
+ }
7694
+
7695
+ export class RetryInsurePayRequest extends $tea.Model {
7696
+ // OAuth模式下的授权token
7697
+ authToken?: string;
7698
+ productInstanceId?: string;
7699
+ // 商户的订单号,后续用作和保单结果交互
7700
+ orderId: string;
7701
+ // 保险公司产品(险种)类型
7702
+ insureProductType: string;
7703
+ static names(): { [key: string]: string } {
7704
+ return {
7705
+ authToken: 'auth_token',
7706
+ productInstanceId: 'product_instance_id',
7707
+ orderId: 'order_id',
7708
+ insureProductType: 'insure_product_type',
7709
+ };
7710
+ }
7711
+
7712
+ static types(): { [key: string]: any } {
7713
+ return {
7714
+ authToken: 'string',
7715
+ productInstanceId: 'string',
7716
+ orderId: 'string',
7717
+ insureProductType: 'string',
7718
+ };
7719
+ }
7720
+
7721
+ constructor(map?: { [key: string]: any }) {
7722
+ super(map);
7723
+ }
7724
+ }
7725
+
7726
+ export class RetryInsurePayResponse extends $tea.Model {
7727
+ // 请求唯一ID,用于链路跟踪和问题排查
7728
+ reqMsgId?: string;
7729
+ // 结果码,一般OK表示调用成功
7730
+ resultCode?: string;
7731
+ // 异常信息的文本描述
7732
+ resultMsg?: string;
7733
+ static names(): { [key: string]: string } {
7734
+ return {
7735
+ reqMsgId: 'req_msg_id',
7736
+ resultCode: 'result_code',
7737
+ resultMsg: 'result_msg',
7738
+ };
7739
+ }
7740
+
7741
+ static types(): { [key: string]: any } {
7742
+ return {
7743
+ reqMsgId: 'string',
7744
+ resultCode: 'string',
7745
+ resultMsg: 'string',
7746
+ };
7747
+ }
7748
+
7749
+ constructor(map?: { [key: string]: any }) {
7750
+ super(map);
7751
+ }
7752
+ }
7753
+
7754
+ export class RegisterMerchantexpandMerchantRequest extends $tea.Model {
7755
+ // OAuth模式下的授权token
7756
+ authToken?: string;
7757
+ productInstanceId?: string;
7758
+ // 公司信息
7759
+ companyInfo: CompanyInfo;
7760
+ // 法人信息
7761
+ legalInfo: LegalInfo;
7762
+ // 应用信息
7763
+ applicationInfo: ApplicationInfo;
7764
+ // 进件模式 DIRECT(直连进件) AGENT(代理进件)
7765
+ expandMode: string;
7766
+ // expand_mode=_AGENT_ 必填
7767
+ subTenantId?: string;
7768
+ static names(): { [key: string]: string } {
7769
+ return {
7770
+ authToken: 'auth_token',
7771
+ productInstanceId: 'product_instance_id',
7772
+ companyInfo: 'company_info',
7773
+ legalInfo: 'legal_info',
7774
+ applicationInfo: 'application_info',
7775
+ expandMode: 'expand_mode',
7776
+ subTenantId: 'sub_tenant_id',
7777
+ };
7778
+ }
7779
+
7780
+ static types(): { [key: string]: any } {
7781
+ return {
7782
+ authToken: 'string',
7783
+ productInstanceId: 'string',
7784
+ companyInfo: CompanyInfo,
7785
+ legalInfo: LegalInfo,
7786
+ applicationInfo: ApplicationInfo,
7787
+ expandMode: 'string',
7788
+ subTenantId: 'string',
7789
+ };
7790
+ }
7791
+
7792
+ constructor(map?: { [key: string]: any }) {
7793
+ super(map);
7794
+ }
7795
+ }
7796
+
7797
+ export class RegisterMerchantexpandMerchantResponse extends $tea.Model {
7798
+ // 请求唯一ID,用于链路跟踪和问题排查
7799
+ reqMsgId?: string;
7800
+ // 结果码,一般OK表示调用成功
7801
+ resultCode?: string;
7802
+ // 异常信息的文本描述
7803
+ resultMsg?: string;
7804
+ // 进件流水号
7805
+ payExpandId?: string;
7806
+ static names(): { [key: string]: string } {
7807
+ return {
7808
+ reqMsgId: 'req_msg_id',
7809
+ resultCode: 'result_code',
7810
+ resultMsg: 'result_msg',
7811
+ payExpandId: 'pay_expand_id',
7812
+ };
7813
+ }
7814
+
7815
+ static types(): { [key: string]: any } {
7816
+ return {
7817
+ reqMsgId: 'string',
7818
+ resultCode: 'string',
7819
+ resultMsg: 'string',
7820
+ payExpandId: 'string',
7821
+ };
7822
+ }
7823
+
7824
+ constructor(map?: { [key: string]: any }) {
7825
+ super(map);
7826
+ }
7827
+ }
7828
+
7829
+ export class UploadMerchantexpandFileRequest extends $tea.Model {
7830
+ // OAuth模式下的授权token
7831
+ authToken?: string;
7832
+ productInstanceId?: string;
7833
+ // 文件名称 包含后缀
7834
+ fileName: string;
7835
+ // ● BUSINESS_LICENSE 营业执照 ● CARD_FRONT 身份证正面 ● CARD_BACK 身份证反面 ● SPLITTING 分账
7836
+ bizScene: string;
7837
+ static names(): { [key: string]: string } {
7838
+ return {
7839
+ authToken: 'auth_token',
7840
+ productInstanceId: 'product_instance_id',
7841
+ fileName: 'file_name',
6337
7842
  bizScene: 'biz_scene',
6338
7843
  };
6339
7844
  }
@@ -8737,8 +10242,6 @@ export class QueryWithholdSignResponse extends $tea.Model {
8737
10242
  invalidTime?: string;
8738
10243
  // 代扣协议号
8739
10244
  agreementNo?: string;
8740
- // 签约字符串类型。SIGN_ONLY:仅签约;PAY_SIGN:支付并签约
8741
- signStrType?: string;
8742
10245
  static names(): { [key: string]: string } {
8743
10246
  return {
8744
10247
  reqMsgId: 'req_msg_id',
@@ -8749,7 +10252,6 @@ export class QueryWithholdSignResponse extends $tea.Model {
8749
10252
  validTime: 'valid_time',
8750
10253
  invalidTime: 'invalid_time',
8751
10254
  agreementNo: 'agreement_no',
8752
- signStrType: 'sign_str_type',
8753
10255
  };
8754
10256
  }
8755
10257
 
@@ -8763,7 +10265,6 @@ export class QueryWithholdSignResponse extends $tea.Model {
8763
10265
  validTime: 'string',
8764
10266
  invalidTime: 'string',
8765
10267
  agreementNo: 'string',
8766
- signStrType: 'string',
8767
10268
  };
8768
10269
  }
8769
10270
 
@@ -9693,7 +11194,7 @@ export default class Client {
9693
11194
  req_msg_id: AntchainUtil.getNonce(),
9694
11195
  access_key: this._accessKeyId,
9695
11196
  base_sdk_version: "TeaSDK-2.0",
9696
- sdk_version: "1.9.30",
11197
+ sdk_version: "1.9.71",
9697
11198
  _prod_code: "ATO",
9698
11199
  _prod_channel: "undefined",
9699
11200
  };
@@ -11095,6 +12596,253 @@ export default class Client {
11095
12596
  return $tea.cast<GetInnerFunddividemerchantResponse>(await this.doRequest("1.0", "antchain.ato.inner.funddividemerchant.get", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new GetInnerFunddividemerchantResponse({}));
11096
12597
  }
11097
12598
 
12599
+ /**
12600
+ * Description: 查询商户和保司协议签署信息
12601
+ * Summary: 查询商户和保司协议签署信息
12602
+ */
12603
+ async queryInnerInsuresign(request: QueryInnerInsuresignRequest): Promise<QueryInnerInsuresignResponse> {
12604
+ let runtime = new $Util.RuntimeOptions({ });
12605
+ let headers : {[key: string ]: string} = { };
12606
+ return await this.queryInnerInsuresignEx(request, headers, runtime);
12607
+ }
12608
+
12609
+ /**
12610
+ * Description: 查询商户和保司协议签署信息
12611
+ * Summary: 查询商户和保司协议签署信息
12612
+ */
12613
+ async queryInnerInsuresignEx(request: QueryInnerInsuresignRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerInsuresignResponse> {
12614
+ Util.validateModel(request);
12615
+ return $tea.cast<QueryInnerInsuresignResponse>(await this.doRequest("1.0", "antchain.ato.inner.insuresign.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerInsuresignResponse({}));
12616
+ }
12617
+
12618
+ /**
12619
+ * Description: 生成商户和保司签约链接
12620
+ * Summary: 生成商户和保司签约链接
12621
+ */
12622
+ async createInnerInsuresign(request: CreateInnerInsuresignRequest): Promise<CreateInnerInsuresignResponse> {
12623
+ let runtime = new $Util.RuntimeOptions({ });
12624
+ let headers : {[key: string ]: string} = { };
12625
+ return await this.createInnerInsuresignEx(request, headers, runtime);
12626
+ }
12627
+
12628
+ /**
12629
+ * Description: 生成商户和保司签约链接
12630
+ * Summary: 生成商户和保司签约链接
12631
+ */
12632
+ async createInnerInsuresignEx(request: CreateInnerInsuresignRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateInnerInsuresignResponse> {
12633
+ Util.validateModel(request);
12634
+ return $tea.cast<CreateInnerInsuresignResponse>(await this.doRequest("1.0", "antchain.ato.inner.insuresign.create", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CreateInnerInsuresignResponse({}));
12635
+ }
12636
+
12637
+ /**
12638
+ * Description: 查询保单信息
12639
+ * Summary: 查询保单信息
12640
+ */
12641
+ async pagequeryInnerInsureorder(request: PagequeryInnerInsureorderRequest): Promise<PagequeryInnerInsureorderResponse> {
12642
+ let runtime = new $Util.RuntimeOptions({ });
12643
+ let headers : {[key: string ]: string} = { };
12644
+ return await this.pagequeryInnerInsureorderEx(request, headers, runtime);
12645
+ }
12646
+
12647
+ /**
12648
+ * Description: 查询保单信息
12649
+ * Summary: 查询保单信息
12650
+ */
12651
+ async pagequeryInnerInsureorderEx(request: PagequeryInnerInsureorderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerInsureorderResponse> {
12652
+ Util.validateModel(request);
12653
+ return $tea.cast<PagequeryInnerInsureorderResponse>(await this.doRequest("1.0", "antchain.ato.inner.insureorder.pagequery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PagequeryInnerInsureorderResponse({}));
12654
+ }
12655
+
12656
+ /**
12657
+ * Description: 商户控制台商品列表
12658
+ * Summary: 商品列表
12659
+ */
12660
+ async pagequeryInnerProduct(request: PagequeryInnerProductRequest): Promise<PagequeryInnerProductResponse> {
12661
+ let runtime = new $Util.RuntimeOptions({ });
12662
+ let headers : {[key: string ]: string} = { };
12663
+ return await this.pagequeryInnerProductEx(request, headers, runtime);
12664
+ }
12665
+
12666
+ /**
12667
+ * Description: 商户控制台商品列表
12668
+ * Summary: 商品列表
12669
+ */
12670
+ async pagequeryInnerProductEx(request: PagequeryInnerProductRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerProductResponse> {
12671
+ Util.validateModel(request);
12672
+ return $tea.cast<PagequeryInnerProductResponse>(await this.doRequest("1.0", "antchain.ato.inner.product.pagequery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PagequeryInnerProductResponse({}));
12673
+ }
12674
+
12675
+ /**
12676
+ * Description: 商户控制台商品详情
12677
+ * Summary: 商品详情
12678
+ */
12679
+ async detailInnerProduct(request: DetailInnerProductRequest): Promise<DetailInnerProductResponse> {
12680
+ let runtime = new $Util.RuntimeOptions({ });
12681
+ let headers : {[key: string ]: string} = { };
12682
+ return await this.detailInnerProductEx(request, headers, runtime);
12683
+ }
12684
+
12685
+ /**
12686
+ * Description: 商户控制台商品详情
12687
+ * Summary: 商品详情
12688
+ */
12689
+ async detailInnerProductEx(request: DetailInnerProductRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DetailInnerProductResponse> {
12690
+ Util.validateModel(request);
12691
+ return $tea.cast<DetailInnerProductResponse>(await this.doRequest("1.0", "antchain.ato.inner.product.detail", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new DetailInnerProductResponse({}));
12692
+ }
12693
+
12694
+ /**
12695
+ * Description: 商户控制台首页通知栏
12696
+ * Summary: 首页通知栏
12697
+ */
12698
+ async getInnerHomepagenotice(request: GetInnerHomepagenoticeRequest): Promise<GetInnerHomepagenoticeResponse> {
12699
+ let runtime = new $Util.RuntimeOptions({ });
12700
+ let headers : {[key: string ]: string} = { };
12701
+ return await this.getInnerHomepagenoticeEx(request, headers, runtime);
12702
+ }
12703
+
12704
+ /**
12705
+ * Description: 商户控制台首页通知栏
12706
+ * Summary: 首页通知栏
12707
+ */
12708
+ async getInnerHomepagenoticeEx(request: GetInnerHomepagenoticeRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetInnerHomepagenoticeResponse> {
12709
+ Util.validateModel(request);
12710
+ return $tea.cast<GetInnerHomepagenoticeResponse>(await this.doRequest("1.0", "antchain.ato.inner.homepagenotice.get", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new GetInnerHomepagenoticeResponse({}));
12711
+ }
12712
+
12713
+ /**
12714
+ * Description: 商户控制台通知列表
12715
+ * Summary: 通知列表
12716
+ */
12717
+ async pagequeryInnerNotice(request: PagequeryInnerNoticeRequest): Promise<PagequeryInnerNoticeResponse> {
12718
+ let runtime = new $Util.RuntimeOptions({ });
12719
+ let headers : {[key: string ]: string} = { };
12720
+ return await this.pagequeryInnerNoticeEx(request, headers, runtime);
12721
+ }
12722
+
12723
+ /**
12724
+ * Description: 商户控制台通知列表
12725
+ * Summary: 通知列表
12726
+ */
12727
+ async pagequeryInnerNoticeEx(request: PagequeryInnerNoticeRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerNoticeResponse> {
12728
+ Util.validateModel(request);
12729
+ return $tea.cast<PagequeryInnerNoticeResponse>(await this.doRequest("1.0", "antchain.ato.inner.notice.pagequery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PagequeryInnerNoticeResponse({}));
12730
+ }
12731
+
12732
+ /**
12733
+ * Description: 商户控制台通知详情
12734
+ * Summary: 通知详情
12735
+ */
12736
+ async detailInnerNotice(request: DetailInnerNoticeRequest): Promise<DetailInnerNoticeResponse> {
12737
+ let runtime = new $Util.RuntimeOptions({ });
12738
+ let headers : {[key: string ]: string} = { };
12739
+ return await this.detailInnerNoticeEx(request, headers, runtime);
12740
+ }
12741
+
12742
+ /**
12743
+ * Description: 商户控制台通知详情
12744
+ * Summary: 通知详情
12745
+ */
12746
+ async detailInnerNoticeEx(request: DetailInnerNoticeRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DetailInnerNoticeResponse> {
12747
+ Util.validateModel(request);
12748
+ return $tea.cast<DetailInnerNoticeResponse>(await this.doRequest("1.0", "antchain.ato.inner.notice.detail", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new DetailInnerNoticeResponse({}));
12749
+ }
12750
+
12751
+ /**
12752
+ * Description: 商户控制台订单列表
12753
+ * Summary: 订单列表
12754
+ */
12755
+ async pagequeryInnerOrder(request: PagequeryInnerOrderRequest): Promise<PagequeryInnerOrderResponse> {
12756
+ let runtime = new $Util.RuntimeOptions({ });
12757
+ let headers : {[key: string ]: string} = { };
12758
+ return await this.pagequeryInnerOrderEx(request, headers, runtime);
12759
+ }
12760
+
12761
+ /**
12762
+ * Description: 商户控制台订单列表
12763
+ * Summary: 订单列表
12764
+ */
12765
+ async pagequeryInnerOrderEx(request: PagequeryInnerOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerOrderResponse> {
12766
+ Util.validateModel(request);
12767
+ return $tea.cast<PagequeryInnerOrderResponse>(await this.doRequest("1.0", "antchain.ato.inner.order.pagequery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PagequeryInnerOrderResponse({}));
12768
+ }
12769
+
12770
+ /**
12771
+ * Description: 订单详情
12772
+ * Summary: 订单详情
12773
+ */
12774
+ async detailInnerOrder(request: DetailInnerOrderRequest): Promise<DetailInnerOrderResponse> {
12775
+ let runtime = new $Util.RuntimeOptions({ });
12776
+ let headers : {[key: string ]: string} = { };
12777
+ return await this.detailInnerOrderEx(request, headers, runtime);
12778
+ }
12779
+
12780
+ /**
12781
+ * Description: 订单详情
12782
+ * Summary: 订单详情
12783
+ */
12784
+ async detailInnerOrderEx(request: DetailInnerOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DetailInnerOrderResponse> {
12785
+ Util.validateModel(request);
12786
+ return $tea.cast<DetailInnerOrderResponse>(await this.doRequest("1.0", "antchain.ato.inner.order.detail", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new DetailInnerOrderResponse({}));
12787
+ }
12788
+
12789
+ /**
12790
+ * Description: 一键投保
12791
+ * Summary: 投保
12792
+ */
12793
+ async createInsure(request: CreateInsureRequest): Promise<CreateInsureResponse> {
12794
+ let runtime = new $Util.RuntimeOptions({ });
12795
+ let headers : {[key: string ]: string} = { };
12796
+ return await this.createInsureEx(request, headers, runtime);
12797
+ }
12798
+
12799
+ /**
12800
+ * Description: 一键投保
12801
+ * Summary: 投保
12802
+ */
12803
+ async createInsureEx(request: CreateInsureRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateInsureResponse> {
12804
+ Util.validateModel(request);
12805
+ return $tea.cast<CreateInsureResponse>(await this.doRequest("1.0", "antchain.ato.insure.create", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CreateInsureResponse({}));
12806
+ }
12807
+
12808
+ /**
12809
+ * Description: 保单查询
12810
+ * Summary: 保单查询
12811
+ */
12812
+ async queryInsure(request: QueryInsureRequest): Promise<QueryInsureResponse> {
12813
+ let runtime = new $Util.RuntimeOptions({ });
12814
+ let headers : {[key: string ]: string} = { };
12815
+ return await this.queryInsureEx(request, headers, runtime);
12816
+ }
12817
+
12818
+ /**
12819
+ * Description: 保单查询
12820
+ * Summary: 保单查询
12821
+ */
12822
+ async queryInsureEx(request: QueryInsureRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInsureResponse> {
12823
+ Util.validateModel(request);
12824
+ return $tea.cast<QueryInsureResponse>(await this.doRequest("1.0", "antchain.ato.insure.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInsureResponse({}));
12825
+ }
12826
+
12827
+ /**
12828
+ * Description: 保险代扣重试
12829
+ * Summary: 保险代扣重试
12830
+ */
12831
+ async retryInsurePay(request: RetryInsurePayRequest): Promise<RetryInsurePayResponse> {
12832
+ let runtime = new $Util.RuntimeOptions({ });
12833
+ let headers : {[key: string ]: string} = { };
12834
+ return await this.retryInsurePayEx(request, headers, runtime);
12835
+ }
12836
+
12837
+ /**
12838
+ * Description: 保险代扣重试
12839
+ * Summary: 保险代扣重试
12840
+ */
12841
+ async retryInsurePayEx(request: RetryInsurePayRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RetryInsurePayResponse> {
12842
+ Util.validateModel(request);
12843
+ return $tea.cast<RetryInsurePayResponse>(await this.doRequest("1.0", "antchain.ato.insure.pay.retry", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new RetryInsurePayResponse({}));
12844
+ }
12845
+
11098
12846
  /**
11099
12847
  * Description: 商户入驻
11100
12848
  * Summary: 商户入驻