@antchain/ato 1.11.3 → 1.12.11
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 +774 -260
- package/dist/client.js +1315 -518
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1939 -750
package/src/client.ts
CHANGED
|
@@ -103,6 +103,75 @@ export class FileInfo extends $tea.Model {
|
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
// 订单所有商品信息模型
|
|
107
|
+
export class ScalperQueryOrderItem extends $tea.Model {
|
|
108
|
+
// 订单商品名称
|
|
109
|
+
orderItemsName?: string;
|
|
110
|
+
// 订单商品数量
|
|
111
|
+
orderItemsQuantity?: number;
|
|
112
|
+
// 订单商品价格,单位:分
|
|
113
|
+
orderItemsPrice?: number;
|
|
114
|
+
static names(): { [key: string]: string } {
|
|
115
|
+
return {
|
|
116
|
+
orderItemsName: 'order_items_name',
|
|
117
|
+
orderItemsQuantity: 'order_items_quantity',
|
|
118
|
+
orderItemsPrice: 'order_items_price',
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
static types(): { [key: string]: any } {
|
|
123
|
+
return {
|
|
124
|
+
orderItemsName: 'string',
|
|
125
|
+
orderItemsQuantity: 'number',
|
|
126
|
+
orderItemsPrice: 'number',
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
constructor(map?: { [key: string]: any }) {
|
|
131
|
+
super(map);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
// 经营分账收入方详情信息(商户控制台订单详情用)
|
|
136
|
+
export class OperationDivideTransInDetailInfo extends $tea.Model {
|
|
137
|
+
// 分账收入方名称
|
|
138
|
+
transInName?: string;
|
|
139
|
+
// 分账收入方支付宝用户id, 支付宝2088id
|
|
140
|
+
transInUserId?: string;
|
|
141
|
+
// 分账金额,单位为分
|
|
142
|
+
divideAmount?: number;
|
|
143
|
+
// 分账描述
|
|
144
|
+
desc?: string;
|
|
145
|
+
// INIT("INIT", "初始化"),
|
|
146
|
+
// PROCESSING("PROCESSING", "处理中"),
|
|
147
|
+
// FAILED("FAILED", "失败"),
|
|
148
|
+
// SUCCESS("SUCCESS", "分账成功");
|
|
149
|
+
divideStatus?: string;
|
|
150
|
+
static names(): { [key: string]: string } {
|
|
151
|
+
return {
|
|
152
|
+
transInName: 'trans_in_name',
|
|
153
|
+
transInUserId: 'trans_in_user_id',
|
|
154
|
+
divideAmount: 'divide_amount',
|
|
155
|
+
desc: 'desc',
|
|
156
|
+
divideStatus: 'divide_status',
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
static types(): { [key: string]: any } {
|
|
161
|
+
return {
|
|
162
|
+
transInName: 'string',
|
|
163
|
+
transInUserId: 'string',
|
|
164
|
+
divideAmount: 'number',
|
|
165
|
+
desc: 'string',
|
|
166
|
+
divideStatus: 'string',
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
constructor(map?: { [key: string]: any }) {
|
|
171
|
+
super(map);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
106
175
|
// 智租风控-子风险项
|
|
107
176
|
export class SubRentRiskItem extends $tea.Model {
|
|
108
177
|
// 风险名称。枚举值:BASE_PERFORMANCE - 基础履约风险;OVERDUE - 逾期风险;MULTI_RENT - 共租风险。
|
|
@@ -167,6 +236,10 @@ export class StaticDataModuleDetail extends $tea.Model {
|
|
|
167
236
|
propertyText: string;
|
|
168
237
|
// 商户类型
|
|
169
238
|
propertyValue: string;
|
|
239
|
+
// 图标
|
|
240
|
+
icon?: string;
|
|
241
|
+
// 置灰图标
|
|
242
|
+
greyIcon?: string;
|
|
170
243
|
// 叶子结点,目前存的一级类目下的二级类目
|
|
171
244
|
childrenDetailList?: string;
|
|
172
245
|
// 是否有叶子结点
|
|
@@ -175,6 +248,8 @@ export class StaticDataModuleDetail extends $tea.Model {
|
|
|
175
248
|
return {
|
|
176
249
|
propertyText: 'property_text',
|
|
177
250
|
propertyValue: 'property_value',
|
|
251
|
+
icon: 'icon',
|
|
252
|
+
greyIcon: 'grey_icon',
|
|
178
253
|
childrenDetailList: 'children_detail_list',
|
|
179
254
|
hasChildren: 'has_children',
|
|
180
255
|
};
|
|
@@ -184,6 +259,8 @@ export class StaticDataModuleDetail extends $tea.Model {
|
|
|
184
259
|
return {
|
|
185
260
|
propertyText: 'string',
|
|
186
261
|
propertyValue: 'string',
|
|
262
|
+
icon: 'string',
|
|
263
|
+
greyIcon: 'string',
|
|
187
264
|
childrenDetailList: 'string',
|
|
188
265
|
hasChildren: 'boolean',
|
|
189
266
|
};
|
|
@@ -288,148 +365,6 @@ export class AppletRiskModel extends $tea.Model {
|
|
|
288
365
|
}
|
|
289
366
|
}
|
|
290
367
|
|
|
291
|
-
// 同步订单中的下单人信息
|
|
292
|
-
export class UserSyncInfo extends $tea.Model {
|
|
293
|
-
static names(): { [key: string]: string } {
|
|
294
|
-
return {
|
|
295
|
-
};
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
static types(): { [key: string]: any } {
|
|
299
|
-
return {
|
|
300
|
-
};
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
constructor(map?: { [key: string]: any }) {
|
|
304
|
-
super(map);
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
// 公司信息
|
|
309
|
-
export class CompanyInfo extends $tea.Model {
|
|
310
|
-
// 营业执照文件信息
|
|
311
|
-
businessLicenseFile: FileInfo;
|
|
312
|
-
// 业务类型 枚举
|
|
313
|
-
productMainClass: string;
|
|
314
|
-
// 公司名称
|
|
315
|
-
companyName: string;
|
|
316
|
-
// 公司别名
|
|
317
|
-
companyAliasName: string;
|
|
318
|
-
// 公司数科租户id
|
|
319
|
-
tenantId?: string;
|
|
320
|
-
// 统一社会信用代码
|
|
321
|
-
merchantId: string;
|
|
322
|
-
// 商户类型: 01:企业;07:个体工商户
|
|
323
|
-
// 默认不填为01
|
|
324
|
-
merchantType?: string;
|
|
325
|
-
// 公司联系电话
|
|
326
|
-
companyMobile: string;
|
|
327
|
-
// 公司联系地址
|
|
328
|
-
companyAddress: string;
|
|
329
|
-
// 联系人姓名
|
|
330
|
-
contactName: string;
|
|
331
|
-
// 联系人手机号码
|
|
332
|
-
contactMobile: string;
|
|
333
|
-
// 绑定企业支付宝账号
|
|
334
|
-
bindAlipayNo: string;
|
|
335
|
-
// 结算企业支付宝账号
|
|
336
|
-
settleAlipayNo: string;
|
|
337
|
-
// 绑定支付宝uid
|
|
338
|
-
bindAlipayUid: string;
|
|
339
|
-
static names(): { [key: string]: string } {
|
|
340
|
-
return {
|
|
341
|
-
businessLicenseFile: 'business_license_file',
|
|
342
|
-
productMainClass: 'product_main_class',
|
|
343
|
-
companyName: 'company_name',
|
|
344
|
-
companyAliasName: 'company_alias_name',
|
|
345
|
-
tenantId: 'tenant_id',
|
|
346
|
-
merchantId: 'merchant_id',
|
|
347
|
-
merchantType: 'merchant_type',
|
|
348
|
-
companyMobile: 'company_mobile',
|
|
349
|
-
companyAddress: 'company_address',
|
|
350
|
-
contactName: 'contact_name',
|
|
351
|
-
contactMobile: 'contact_mobile',
|
|
352
|
-
bindAlipayNo: 'bind_alipay_no',
|
|
353
|
-
settleAlipayNo: 'settle_alipay_no',
|
|
354
|
-
bindAlipayUid: 'bind_alipay_uid',
|
|
355
|
-
};
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
static types(): { [key: string]: any } {
|
|
359
|
-
return {
|
|
360
|
-
businessLicenseFile: FileInfo,
|
|
361
|
-
productMainClass: 'string',
|
|
362
|
-
companyName: 'string',
|
|
363
|
-
companyAliasName: 'string',
|
|
364
|
-
tenantId: 'string',
|
|
365
|
-
merchantId: 'string',
|
|
366
|
-
merchantType: 'string',
|
|
367
|
-
companyMobile: 'string',
|
|
368
|
-
companyAddress: 'string',
|
|
369
|
-
contactName: 'string',
|
|
370
|
-
contactMobile: 'string',
|
|
371
|
-
bindAlipayNo: 'string',
|
|
372
|
-
settleAlipayNo: 'string',
|
|
373
|
-
bindAlipayUid: 'string',
|
|
374
|
-
};
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
constructor(map?: { [key: string]: any }) {
|
|
378
|
-
super(map);
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
// 用户履约信息
|
|
383
|
-
export class UserPerformanceInfo extends $tea.Model {
|
|
384
|
-
// 履约期数
|
|
385
|
-
periodNum: number;
|
|
386
|
-
// 履约时间,格式 yyyy-MM-dd
|
|
387
|
-
// 针对签收日作为起租日模式,未签收时:以签收日开始计算
|
|
388
|
-
payDate: string;
|
|
389
|
-
// 履约金额,单位为分
|
|
390
|
-
payMoney: number;
|
|
391
|
-
static names(): { [key: string]: string } {
|
|
392
|
-
return {
|
|
393
|
-
periodNum: 'period_num',
|
|
394
|
-
payDate: 'pay_date',
|
|
395
|
-
payMoney: 'pay_money',
|
|
396
|
-
};
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
static types(): { [key: string]: any } {
|
|
400
|
-
return {
|
|
401
|
-
periodNum: 'number',
|
|
402
|
-
payDate: 'string',
|
|
403
|
-
payMoney: 'number',
|
|
404
|
-
};
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
constructor(map?: { [key: string]: any }) {
|
|
408
|
-
super(map);
|
|
409
|
-
}
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
// 营销分查询对象
|
|
413
|
-
export class MarketingScoreQueryInfo extends $tea.Model {
|
|
414
|
-
// 手机号码
|
|
415
|
-
phoneNum?: string;
|
|
416
|
-
static names(): { [key: string]: string } {
|
|
417
|
-
return {
|
|
418
|
-
phoneNum: 'phone_num',
|
|
419
|
-
};
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
static types(): { [key: string]: any } {
|
|
423
|
-
return {
|
|
424
|
-
phoneNum: 'string',
|
|
425
|
-
};
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
constructor(map?: { [key: string]: any }) {
|
|
429
|
-
super(map);
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
|
|
433
368
|
// 投保商品信息
|
|
434
369
|
export class InsureProductInfo extends $tea.Model {
|
|
435
370
|
// 商品库id
|
|
@@ -459,39 +394,6 @@ export class InsureProductInfo extends $tea.Model {
|
|
|
459
394
|
}
|
|
460
395
|
}
|
|
461
396
|
|
|
462
|
-
// 策略结果详情
|
|
463
|
-
export class RiskStrategy extends $tea.Model {
|
|
464
|
-
// 策略ID
|
|
465
|
-
id: string;
|
|
466
|
-
// 策略名称
|
|
467
|
-
name: string;
|
|
468
|
-
// 策略决策结果
|
|
469
|
-
decision: string;
|
|
470
|
-
// 风险场景编码
|
|
471
|
-
sceneCode: string;
|
|
472
|
-
static names(): { [key: string]: string } {
|
|
473
|
-
return {
|
|
474
|
-
id: 'id',
|
|
475
|
-
name: 'name',
|
|
476
|
-
decision: 'decision',
|
|
477
|
-
sceneCode: 'scene_code',
|
|
478
|
-
};
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
static types(): { [key: string]: any } {
|
|
482
|
-
return {
|
|
483
|
-
id: 'string',
|
|
484
|
-
name: 'string',
|
|
485
|
-
decision: 'string',
|
|
486
|
-
sceneCode: 'string',
|
|
487
|
-
};
|
|
488
|
-
}
|
|
489
|
-
|
|
490
|
-
constructor(map?: { [key: string]: any }) {
|
|
491
|
-
super(map);
|
|
492
|
-
}
|
|
493
|
-
}
|
|
494
|
-
|
|
495
397
|
// 模板组件(文本域)
|
|
496
398
|
export class TemplateComponent extends $tea.Model {
|
|
497
399
|
// 模板编码
|
|
@@ -545,98 +447,16 @@ export class TemplateComponent extends $tea.Model {
|
|
|
545
447
|
}
|
|
546
448
|
}
|
|
547
449
|
|
|
548
|
-
//
|
|
549
|
-
export class
|
|
550
|
-
//
|
|
551
|
-
|
|
552
|
-
//
|
|
553
|
-
|
|
554
|
-
// 商品名称
|
|
555
|
-
productName?: string;
|
|
556
|
-
// 保险开始时间
|
|
557
|
-
insureStartTime?: string;
|
|
558
|
-
// 保险终止时间
|
|
559
|
-
insureEndTime?: string;
|
|
560
|
-
// 投保金额(保额),单位分 100代表1元
|
|
561
|
-
insureAmount?: number;
|
|
562
|
-
// 投保费用(保费),单位分 100代表1元
|
|
563
|
-
insurePremium?: number;
|
|
564
|
-
// 投保状态枚举
|
|
565
|
-
status?: string;
|
|
566
|
-
// 电子保单下载链接
|
|
567
|
-
policyUrl?: string;
|
|
568
|
-
// 验真码
|
|
569
|
-
validateCode?: string;
|
|
450
|
+
// 静态数据
|
|
451
|
+
export class StaticData extends $tea.Model {
|
|
452
|
+
// 商户类型
|
|
453
|
+
moduleName: string;
|
|
454
|
+
// 静态数据详情
|
|
455
|
+
moduleDetailList: StaticDataModuleDetail[];
|
|
570
456
|
static names(): { [key: string]: string } {
|
|
571
457
|
return {
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
productName: 'product_name',
|
|
575
|
-
insureStartTime: 'insure_start_time',
|
|
576
|
-
insureEndTime: 'insure_end_time',
|
|
577
|
-
insureAmount: 'insure_amount',
|
|
578
|
-
insurePremium: 'insure_premium',
|
|
579
|
-
status: 'status',
|
|
580
|
-
policyUrl: 'policy_url',
|
|
581
|
-
validateCode: 'validate_code',
|
|
582
|
-
};
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
static types(): { [key: string]: any } {
|
|
586
|
-
return {
|
|
587
|
-
orderId: 'string',
|
|
588
|
-
insureId: 'string',
|
|
589
|
-
productName: 'string',
|
|
590
|
-
insureStartTime: 'string',
|
|
591
|
-
insureEndTime: 'string',
|
|
592
|
-
insureAmount: 'number',
|
|
593
|
-
insurePremium: 'number',
|
|
594
|
-
status: 'string',
|
|
595
|
-
policyUrl: 'string',
|
|
596
|
-
validateCode: 'string',
|
|
597
|
-
};
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
constructor(map?: { [key: string]: any }) {
|
|
601
|
-
super(map);
|
|
602
|
-
}
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
// 营销分对象
|
|
606
|
-
export class MarketingScoreInfo extends $tea.Model {
|
|
607
|
-
// 手机号
|
|
608
|
-
phoneNum?: string;
|
|
609
|
-
// 营销分
|
|
610
|
-
score?: string;
|
|
611
|
-
static names(): { [key: string]: string } {
|
|
612
|
-
return {
|
|
613
|
-
phoneNum: 'phone_num',
|
|
614
|
-
score: 'score',
|
|
615
|
-
};
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
static types(): { [key: string]: any } {
|
|
619
|
-
return {
|
|
620
|
-
phoneNum: 'string',
|
|
621
|
-
score: 'string',
|
|
622
|
-
};
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
constructor(map?: { [key: string]: any }) {
|
|
626
|
-
super(map);
|
|
627
|
-
}
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
// 静态数据
|
|
631
|
-
export class StaticData extends $tea.Model {
|
|
632
|
-
// 商户类型
|
|
633
|
-
moduleName: string;
|
|
634
|
-
// 静态数据详情
|
|
635
|
-
moduleDetailList: StaticDataModuleDetail[];
|
|
636
|
-
static names(): { [key: string]: string } {
|
|
637
|
-
return {
|
|
638
|
-
moduleName: 'module_name',
|
|
639
|
-
moduleDetailList: 'module_detail_list',
|
|
458
|
+
moduleName: 'module_name',
|
|
459
|
+
moduleDetailList: 'module_detail_list',
|
|
640
460
|
};
|
|
641
461
|
}
|
|
642
462
|
|
|
@@ -690,97 +510,6 @@ export class MerchantAgentPage extends $tea.Model {
|
|
|
690
510
|
}
|
|
691
511
|
}
|
|
692
512
|
|
|
693
|
-
// 智租风控-商品价格
|
|
694
|
-
export class PriceDetail extends $tea.Model {
|
|
695
|
-
// 商品租赁期数
|
|
696
|
-
periodNum: number;
|
|
697
|
-
// 押金,单位:分。
|
|
698
|
-
depositPrice: number;
|
|
699
|
-
// 买断价格,单位:分
|
|
700
|
-
buyoutPrice: number;
|
|
701
|
-
// 首期租金,单位:分
|
|
702
|
-
initialRentPrice: number;
|
|
703
|
-
static names(): { [key: string]: string } {
|
|
704
|
-
return {
|
|
705
|
-
periodNum: 'period_num',
|
|
706
|
-
depositPrice: 'deposit_price',
|
|
707
|
-
buyoutPrice: 'buyout_price',
|
|
708
|
-
initialRentPrice: 'initial_rent_price',
|
|
709
|
-
};
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
static types(): { [key: string]: any } {
|
|
713
|
-
return {
|
|
714
|
-
periodNum: 'number',
|
|
715
|
-
depositPrice: 'number',
|
|
716
|
-
buyoutPrice: 'number',
|
|
717
|
-
initialRentPrice: 'number',
|
|
718
|
-
};
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
constructor(map?: { [key: string]: any }) {
|
|
722
|
-
super(map);
|
|
723
|
-
}
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
// 订单消息结构体
|
|
727
|
-
export class OrderMsgInfo extends $tea.Model {
|
|
728
|
-
// 订单id
|
|
729
|
-
//
|
|
730
|
-
orderId: string;
|
|
731
|
-
// 消息ID
|
|
732
|
-
//
|
|
733
|
-
msgId: string;
|
|
734
|
-
// 消息类型
|
|
735
|
-
//
|
|
736
|
-
msgPublishType: string;
|
|
737
|
-
// 消息创建时间
|
|
738
|
-
//
|
|
739
|
-
msgCreateTime: string;
|
|
740
|
-
// 消息投递状态 SUCCESS 成功 FAIL 失败 WAIT 等待投递重试
|
|
741
|
-
msgStatus: string;
|
|
742
|
-
// 消息重投次数
|
|
743
|
-
//
|
|
744
|
-
msgRetryTime: number;
|
|
745
|
-
// 消息体内容
|
|
746
|
-
msgContent: string;
|
|
747
|
-
// 消息回调地址
|
|
748
|
-
msgCallbackUrl: string;
|
|
749
|
-
// 新回调地址
|
|
750
|
-
newMsgCallbackUrl: string;
|
|
751
|
-
static names(): { [key: string]: string } {
|
|
752
|
-
return {
|
|
753
|
-
orderId: 'order_id',
|
|
754
|
-
msgId: 'msg_id',
|
|
755
|
-
msgPublishType: 'msg_publish_type',
|
|
756
|
-
msgCreateTime: 'msg_create_time',
|
|
757
|
-
msgStatus: 'msg_status',
|
|
758
|
-
msgRetryTime: 'msg_retry_time',
|
|
759
|
-
msgContent: 'msg_content',
|
|
760
|
-
msgCallbackUrl: 'msg_callback_url',
|
|
761
|
-
newMsgCallbackUrl: 'new_msg_callback_url',
|
|
762
|
-
};
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
static types(): { [key: string]: any } {
|
|
766
|
-
return {
|
|
767
|
-
orderId: 'string',
|
|
768
|
-
msgId: 'string',
|
|
769
|
-
msgPublishType: 'string',
|
|
770
|
-
msgCreateTime: 'string',
|
|
771
|
-
msgStatus: 'string',
|
|
772
|
-
msgRetryTime: 'number',
|
|
773
|
-
msgContent: 'string',
|
|
774
|
-
msgCallbackUrl: 'string',
|
|
775
|
-
newMsgCallbackUrl: 'string',
|
|
776
|
-
};
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
constructor(map?: { [key: string]: any }) {
|
|
780
|
-
super(map);
|
|
781
|
-
}
|
|
782
|
-
}
|
|
783
|
-
|
|
784
513
|
// 主订单信息
|
|
785
514
|
export class OrderInfo extends $tea.Model {
|
|
786
515
|
// 订单id
|
|
@@ -908,51 +637,6 @@ export class NoticeInfo extends $tea.Model {
|
|
|
908
637
|
}
|
|
909
638
|
}
|
|
910
639
|
|
|
911
|
-
// 应用信息修改
|
|
912
|
-
export class ApplicationInfoUpdate extends $tea.Model {
|
|
913
|
-
// 应用场景 MINI_APP 小程序 APP 自有app ALL 两种都有
|
|
914
|
-
applicationScene?: string;
|
|
915
|
-
// 小程序id
|
|
916
|
-
tinyAppId?: string;
|
|
917
|
-
// 小程序名称
|
|
918
|
-
siteName?: string;
|
|
919
|
-
// http://asdasas.com
|
|
920
|
-
sitUrl?: string;
|
|
921
|
-
// 商户名称。 修改后的商户名称,将同步支付宝代扣签约页面字段展示
|
|
922
|
-
merchantName?: string;
|
|
923
|
-
// 商户服务名称。 修改后的商户服务名称,将同步支付宝代扣签约页面字段展示
|
|
924
|
-
merchantServiceName?: string;
|
|
925
|
-
// 商户服务描述。 修改后的商户服务描述,将同步支付宝代扣签约页面字段展示
|
|
926
|
-
merchantServiceDesc?: string;
|
|
927
|
-
static names(): { [key: string]: string } {
|
|
928
|
-
return {
|
|
929
|
-
applicationScene: 'application_scene',
|
|
930
|
-
tinyAppId: 'tiny_app_id',
|
|
931
|
-
siteName: 'site_name',
|
|
932
|
-
sitUrl: 'sit_url',
|
|
933
|
-
merchantName: 'merchant_name',
|
|
934
|
-
merchantServiceName: 'merchant_service_name',
|
|
935
|
-
merchantServiceDesc: 'merchant_service_desc',
|
|
936
|
-
};
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
static types(): { [key: string]: any } {
|
|
940
|
-
return {
|
|
941
|
-
applicationScene: 'string',
|
|
942
|
-
tinyAppId: 'string',
|
|
943
|
-
siteName: 'string',
|
|
944
|
-
sitUrl: 'string',
|
|
945
|
-
merchantName: 'string',
|
|
946
|
-
merchantServiceName: 'string',
|
|
947
|
-
merchantServiceDesc: 'string',
|
|
948
|
-
};
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
constructor(map?: { [key: string]: any }) {
|
|
952
|
-
super(map);
|
|
953
|
-
}
|
|
954
|
-
}
|
|
955
|
-
|
|
956
640
|
// 审核信息
|
|
957
641
|
export class AuditInfo extends $tea.Model {
|
|
958
642
|
// 审核步骤
|
|
@@ -990,49 +674,6 @@ export class AuditInfo extends $tea.Model {
|
|
|
990
674
|
}
|
|
991
675
|
}
|
|
992
676
|
|
|
993
|
-
// 订单用户信息
|
|
994
|
-
export class OrderUserInfo extends $tea.Model {
|
|
995
|
-
// 承租人名称
|
|
996
|
-
userName?: string;
|
|
997
|
-
// 承租人手机号
|
|
998
|
-
userPhoneNumber?: string;
|
|
999
|
-
// 地址
|
|
1000
|
-
userAddress?: string;
|
|
1001
|
-
// 支付宝账号
|
|
1002
|
-
alipayUid?: string;
|
|
1003
|
-
// 租赁类别
|
|
1004
|
-
// 1:个人用户
|
|
1005
|
-
// 2:企业用户
|
|
1006
|
-
lesseeType?: number;
|
|
1007
|
-
// 承租人身份证
|
|
1008
|
-
userId?: string;
|
|
1009
|
-
static names(): { [key: string]: string } {
|
|
1010
|
-
return {
|
|
1011
|
-
userName: 'user_name',
|
|
1012
|
-
userPhoneNumber: 'user_phone_number',
|
|
1013
|
-
userAddress: 'user_address',
|
|
1014
|
-
alipayUid: 'alipay_uid',
|
|
1015
|
-
lesseeType: 'lessee_type',
|
|
1016
|
-
userId: 'user_id',
|
|
1017
|
-
};
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
|
-
static types(): { [key: string]: any } {
|
|
1021
|
-
return {
|
|
1022
|
-
userName: 'string',
|
|
1023
|
-
userPhoneNumber: 'string',
|
|
1024
|
-
userAddress: 'string',
|
|
1025
|
-
alipayUid: 'string',
|
|
1026
|
-
lesseeType: 'number',
|
|
1027
|
-
userId: 'string',
|
|
1028
|
-
};
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1031
|
-
constructor(map?: { [key: string]: any }) {
|
|
1032
|
-
super(map);
|
|
1033
|
-
}
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
677
|
// 商品信息
|
|
1037
678
|
export class ProductInfo extends $tea.Model {
|
|
1038
679
|
// 商家社会统一信用代码
|
|
@@ -1086,23 +727,6 @@ export class ProductInfo extends $tea.Model {
|
|
|
1086
727
|
}
|
|
1087
728
|
}
|
|
1088
729
|
|
|
1089
|
-
// 订单包含的单个商品模型
|
|
1090
|
-
export class OrderGoodsModel extends $tea.Model {
|
|
1091
|
-
static names(): { [key: string]: string } {
|
|
1092
|
-
return {
|
|
1093
|
-
};
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
static types(): { [key: string]: any } {
|
|
1097
|
-
return {
|
|
1098
|
-
};
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
constructor(map?: { [key: string]: any }) {
|
|
1102
|
-
super(map);
|
|
1103
|
-
}
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
730
|
// 法人信息修改
|
|
1107
731
|
export class LegalInfoUpdate extends $tea.Model {
|
|
1108
732
|
// 法人名称
|
|
@@ -1153,35 +777,6 @@ export class PromiseInfo extends $tea.Model {
|
|
|
1153
777
|
}
|
|
1154
778
|
}
|
|
1155
779
|
|
|
1156
|
-
// 智租风控-物流信息
|
|
1157
|
-
export class DeliveryDetail extends $tea.Model {
|
|
1158
|
-
// 收件人姓名
|
|
1159
|
-
receiverName?: string;
|
|
1160
|
-
// 收件人手机号
|
|
1161
|
-
receiverMobile?: string;
|
|
1162
|
-
// 收件人地址
|
|
1163
|
-
receiverAddress?: string;
|
|
1164
|
-
static names(): { [key: string]: string } {
|
|
1165
|
-
return {
|
|
1166
|
-
receiverName: 'receiver_name',
|
|
1167
|
-
receiverMobile: 'receiver_mobile',
|
|
1168
|
-
receiverAddress: 'receiver_address',
|
|
1169
|
-
};
|
|
1170
|
-
}
|
|
1171
|
-
|
|
1172
|
-
static types(): { [key: string]: any } {
|
|
1173
|
-
return {
|
|
1174
|
-
receiverName: 'string',
|
|
1175
|
-
receiverMobile: 'string',
|
|
1176
|
-
receiverAddress: 'string',
|
|
1177
|
-
};
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
constructor(map?: { [key: string]: any }) {
|
|
1181
|
-
super(map);
|
|
1182
|
-
}
|
|
1183
|
-
}
|
|
1184
|
-
|
|
1185
780
|
// 客服信息
|
|
1186
781
|
export class CustomerServiceInfo extends $tea.Model {
|
|
1187
782
|
// 公司社会统一信息代码
|
|
@@ -1243,39 +838,60 @@ export class OperationDivideTransInModel extends $tea.Model {
|
|
|
1243
838
|
}
|
|
1244
839
|
}
|
|
1245
840
|
|
|
1246
|
-
//
|
|
1247
|
-
export class
|
|
1248
|
-
//
|
|
1249
|
-
|
|
1250
|
-
//
|
|
1251
|
-
|
|
1252
|
-
//
|
|
1253
|
-
|
|
1254
|
-
//
|
|
1255
|
-
|
|
1256
|
-
//
|
|
1257
|
-
|
|
1258
|
-
// 租户签约状态 枚举
|
|
1259
|
-
signStatus: string;
|
|
841
|
+
// 营销抢购风险识别入参模型
|
|
842
|
+
export class PurchaseQueryModel extends $tea.Model {
|
|
843
|
+
// 支付宝外部交易号
|
|
844
|
+
outOrderNo?: string;
|
|
845
|
+
// 支付宝内部生成的交易号
|
|
846
|
+
orderNo?: string;
|
|
847
|
+
// 银行卡号
|
|
848
|
+
bankCardNo?: string;
|
|
849
|
+
// 公司名称
|
|
850
|
+
companyName?: string;
|
|
851
|
+
// 金额,用户购买或使用服务时产生的具体金额,单位:分
|
|
852
|
+
salesAmount?: number;
|
|
1260
853
|
static names(): { [key: string]: string } {
|
|
1261
854
|
return {
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
signStatus: 'sign_status',
|
|
855
|
+
outOrderNo: 'out_order_no',
|
|
856
|
+
orderNo: 'order_no',
|
|
857
|
+
bankCardNo: 'bank_card_no',
|
|
858
|
+
companyName: 'company_name',
|
|
859
|
+
salesAmount: 'sales_amount',
|
|
1268
860
|
};
|
|
1269
861
|
}
|
|
1270
862
|
|
|
1271
863
|
static types(): { [key: string]: any } {
|
|
1272
864
|
return {
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
865
|
+
outOrderNo: 'string',
|
|
866
|
+
orderNo: 'string',
|
|
867
|
+
bankCardNo: 'string',
|
|
868
|
+
companyName: 'string',
|
|
869
|
+
salesAmount: 'number',
|
|
870
|
+
};
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
constructor(map?: { [key: string]: any }) {
|
|
874
|
+
super(map);
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
// 经营分账信息
|
|
879
|
+
export class OperateDivideInfo extends $tea.Model {
|
|
880
|
+
// 当前用户履约的租期编号
|
|
881
|
+
periodNum?: number;
|
|
882
|
+
// 经营分账收入方结果信息
|
|
883
|
+
operationDivideTransInList?: OperationDivideTransInDetailInfo[];
|
|
884
|
+
static names(): { [key: string]: string } {
|
|
885
|
+
return {
|
|
886
|
+
periodNum: 'period_num',
|
|
887
|
+
operationDivideTransInList: 'operation_divide_trans_in_list',
|
|
888
|
+
};
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
static types(): { [key: string]: any } {
|
|
892
|
+
return {
|
|
893
|
+
periodNum: 'number',
|
|
894
|
+
operationDivideTransInList: { 'type': 'array', 'itemType': OperationDivideTransInDetailInfo },
|
|
1279
895
|
};
|
|
1280
896
|
}
|
|
1281
897
|
|
|
@@ -1387,6 +1003,47 @@ export class RelationPage extends $tea.Model {
|
|
|
1387
1003
|
}
|
|
1388
1004
|
}
|
|
1389
1005
|
|
|
1006
|
+
// 行业履约风险识别入参模型
|
|
1007
|
+
export class BaddebtQueryModel extends $tea.Model {
|
|
1008
|
+
// 服务分类,服务二级分类
|
|
1009
|
+
serviceCategory?: string;
|
|
1010
|
+
// 总金额,用户购买或使用服务时产生的具体金额
|
|
1011
|
+
totalAmount?: number;
|
|
1012
|
+
// 商品数量,用户购买或使用服务时产生的具体商品数量
|
|
1013
|
+
totalQuantity?: number;
|
|
1014
|
+
// 用户姓名
|
|
1015
|
+
userName?: string;
|
|
1016
|
+
// 服务商 pid
|
|
1017
|
+
isvPid?: string;
|
|
1018
|
+
// 终端唯一标识
|
|
1019
|
+
apdid?: string;
|
|
1020
|
+
static names(): { [key: string]: string } {
|
|
1021
|
+
return {
|
|
1022
|
+
serviceCategory: 'service_category',
|
|
1023
|
+
totalAmount: 'total_amount',
|
|
1024
|
+
totalQuantity: 'total_quantity',
|
|
1025
|
+
userName: 'user_name',
|
|
1026
|
+
isvPid: 'isv_pid',
|
|
1027
|
+
apdid: 'apdid',
|
|
1028
|
+
};
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
static types(): { [key: string]: any } {
|
|
1032
|
+
return {
|
|
1033
|
+
serviceCategory: 'string',
|
|
1034
|
+
totalAmount: 'number',
|
|
1035
|
+
totalQuantity: 'number',
|
|
1036
|
+
userName: 'string',
|
|
1037
|
+
isvPid: 'string',
|
|
1038
|
+
apdid: 'string',
|
|
1039
|
+
};
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
constructor(map?: { [key: string]: any }) {
|
|
1043
|
+
super(map);
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1390
1047
|
// 公司信息修改
|
|
1391
1048
|
export class CompanyInfoUpdate extends $tea.Model {
|
|
1392
1049
|
// 营业执照文件信息
|
|
@@ -1416,26 +1073,988 @@ export class CompanyInfoUpdate extends $tea.Model {
|
|
|
1416
1073
|
companyName: 'company_name',
|
|
1417
1074
|
companyAliasName: 'company_alias_name',
|
|
1418
1075
|
tenantId: 'tenant_id',
|
|
1419
|
-
companyMobile: 'company_mobile',
|
|
1420
|
-
companyAddress: 'company_address',
|
|
1421
|
-
contactName: 'contact_name',
|
|
1422
|
-
contactMobile: 'contact_mobile',
|
|
1423
|
-
merchantType: 'merchant_type',
|
|
1076
|
+
companyMobile: 'company_mobile',
|
|
1077
|
+
companyAddress: 'company_address',
|
|
1078
|
+
contactName: 'contact_name',
|
|
1079
|
+
contactMobile: 'contact_mobile',
|
|
1080
|
+
merchantType: 'merchant_type',
|
|
1081
|
+
};
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
static types(): { [key: string]: any } {
|
|
1085
|
+
return {
|
|
1086
|
+
businessLicenseFile: FileInfo,
|
|
1087
|
+
productMainClass: 'string',
|
|
1088
|
+
companyName: 'string',
|
|
1089
|
+
companyAliasName: 'string',
|
|
1090
|
+
tenantId: 'string',
|
|
1091
|
+
companyMobile: 'string',
|
|
1092
|
+
companyAddress: 'string',
|
|
1093
|
+
contactName: 'string',
|
|
1094
|
+
contactMobile: 'string',
|
|
1095
|
+
merchantType: 'string',
|
|
1096
|
+
};
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
constructor(map?: { [key: string]: any }) {
|
|
1100
|
+
super(map);
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
// 订单搜索信息
|
|
1105
|
+
export class OrderSearchInfo extends $tea.Model {
|
|
1106
|
+
// 订单id
|
|
1107
|
+
orderId?: string;
|
|
1108
|
+
// 支付宝代扣协议号
|
|
1109
|
+
agreementNo?: string;
|
|
1110
|
+
// 订单创建时间
|
|
1111
|
+
orderCreateTime?: string;
|
|
1112
|
+
// 租金总额(单位分)
|
|
1113
|
+
totalRentMoney?: number;
|
|
1114
|
+
// 租期
|
|
1115
|
+
rentTerm?: number;
|
|
1116
|
+
// 租期单位
|
|
1117
|
+
rentUnit?: string;
|
|
1118
|
+
// 订单状态
|
|
1119
|
+
orderStatus?: string;
|
|
1120
|
+
// 承租人名称
|
|
1121
|
+
userName?: string;
|
|
1122
|
+
// 承租人手机号
|
|
1123
|
+
userPhoneNumber?: string;
|
|
1124
|
+
static names(): { [key: string]: string } {
|
|
1125
|
+
return {
|
|
1126
|
+
orderId: 'order_id',
|
|
1127
|
+
agreementNo: 'agreement_no',
|
|
1128
|
+
orderCreateTime: 'order_create_time',
|
|
1129
|
+
totalRentMoney: 'total_rent_money',
|
|
1130
|
+
rentTerm: 'rent_term',
|
|
1131
|
+
rentUnit: 'rent_unit',
|
|
1132
|
+
orderStatus: 'order_status',
|
|
1133
|
+
userName: 'user_name',
|
|
1134
|
+
userPhoneNumber: 'user_phone_number',
|
|
1135
|
+
};
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
static types(): { [key: string]: any } {
|
|
1139
|
+
return {
|
|
1140
|
+
orderId: 'string',
|
|
1141
|
+
agreementNo: 'string',
|
|
1142
|
+
orderCreateTime: 'string',
|
|
1143
|
+
totalRentMoney: 'number',
|
|
1144
|
+
rentTerm: 'number',
|
|
1145
|
+
rentUnit: 'string',
|
|
1146
|
+
orderStatus: 'string',
|
|
1147
|
+
userName: 'string',
|
|
1148
|
+
userPhoneNumber: 'string',
|
|
1149
|
+
};
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
constructor(map?: { [key: string]: any }) {
|
|
1153
|
+
super(map);
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
// 应用信息
|
|
1158
|
+
export class ApplicationInfo extends $tea.Model {
|
|
1159
|
+
// 应用场景
|
|
1160
|
+
// MINI_APP 小程序
|
|
1161
|
+
// APP 自有app
|
|
1162
|
+
// ALL 两种都有
|
|
1163
|
+
applicationScene: string;
|
|
1164
|
+
// 小程序id
|
|
1165
|
+
tinyAppId: string;
|
|
1166
|
+
// 小程序名称
|
|
1167
|
+
siteName: string;
|
|
1168
|
+
// 网站地址
|
|
1169
|
+
sitUrl: string;
|
|
1170
|
+
// 商户名称。
|
|
1171
|
+
// 修改后的商户名称,将同步支付宝代扣签约页面字段展示
|
|
1172
|
+
merchantName: string;
|
|
1173
|
+
// 商户服务名称。
|
|
1174
|
+
// 修改后的商户服务名称,将同步支付宝代扣签约页面字段展示
|
|
1175
|
+
merchantServiceName: string;
|
|
1176
|
+
// 商户服务描述。
|
|
1177
|
+
// 修改后的商户服务描述,将同步支付宝代扣签约页面字段展示
|
|
1178
|
+
merchantServiceDesc: string;
|
|
1179
|
+
// 站点信息
|
|
1180
|
+
siteInfo?: SiteInfo[];
|
|
1181
|
+
static names(): { [key: string]: string } {
|
|
1182
|
+
return {
|
|
1183
|
+
applicationScene: 'application_scene',
|
|
1184
|
+
tinyAppId: 'tiny_app_id',
|
|
1185
|
+
siteName: 'site_name',
|
|
1186
|
+
sitUrl: 'sit_url',
|
|
1187
|
+
merchantName: 'merchant_name',
|
|
1188
|
+
merchantServiceName: 'merchant_service_name',
|
|
1189
|
+
merchantServiceDesc: 'merchant_service_desc',
|
|
1190
|
+
siteInfo: 'site_info',
|
|
1191
|
+
};
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
static types(): { [key: string]: any } {
|
|
1195
|
+
return {
|
|
1196
|
+
applicationScene: 'string',
|
|
1197
|
+
tinyAppId: 'string',
|
|
1198
|
+
siteName: 'string',
|
|
1199
|
+
sitUrl: 'string',
|
|
1200
|
+
merchantName: 'string',
|
|
1201
|
+
merchantServiceName: 'string',
|
|
1202
|
+
merchantServiceDesc: 'string',
|
|
1203
|
+
siteInfo: { 'type': 'array', 'itemType': SiteInfo },
|
|
1204
|
+
};
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
constructor(map?: { [key: string]: any }) {
|
|
1208
|
+
super(map);
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
// 智租风控-商品详情
|
|
1213
|
+
export class ItemDetail extends $tea.Model {
|
|
1214
|
+
// 租赁商品类目,可选类型:
|
|
1215
|
+
// RENT_PHONE - 手机租赁;RENT_COMPUTER - 电脑/平板租赁;RENT_CAMERA - 数码摄像租赁;RENT_DIGITAL - 数码其他租赁;RENT_STATIONERY - 电子词典/电纸书/文化用品租赁;RENT_CLOTHING - 服装租赁
|
|
1216
|
+
goodsCategory?: string;
|
|
1217
|
+
// 租赁商品名称
|
|
1218
|
+
itemName?: string;
|
|
1219
|
+
// 租赁商品数量
|
|
1220
|
+
quantity?: number;
|
|
1221
|
+
static names(): { [key: string]: string } {
|
|
1222
|
+
return {
|
|
1223
|
+
goodsCategory: 'goods_category',
|
|
1224
|
+
itemName: 'item_name',
|
|
1225
|
+
quantity: 'quantity',
|
|
1226
|
+
};
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
static types(): { [key: string]: any } {
|
|
1230
|
+
return {
|
|
1231
|
+
goodsCategory: 'string',
|
|
1232
|
+
itemName: 'string',
|
|
1233
|
+
quantity: 'number',
|
|
1234
|
+
};
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
constructor(map?: { [key: string]: any }) {
|
|
1238
|
+
super(map);
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
// 云 api 风控查询响应
|
|
1243
|
+
export class RiskGoModel extends $tea.Model {
|
|
1244
|
+
// 风险类型。
|
|
1245
|
+
// 枚举值:MARKETING_PURCHASE_COMMON 营销抢购风险识别;INDUSTRY_SCALPER_COMMON 行业黄牛风险识别;MARKETING_AWARDING_COMMON 营销发奖风险识别;INDUSTRY_FARMING_COMMON 行业刷单风险识别;INDUSTRY_BADDEBT_COMMON 履约坏账风险识别
|
|
1246
|
+
riskType: string;
|
|
1247
|
+
// 风险等级。
|
|
1248
|
+
// 枚举:rank0 无法判断;rank1 极低风险;rank2 较低风险;rank3 中风险;rank4 高风险;rank5 极高风险
|
|
1249
|
+
riskValue: string;
|
|
1250
|
+
// 风险描述
|
|
1251
|
+
riskDesc: string;
|
|
1252
|
+
// 风险标签
|
|
1253
|
+
infoCode?: string;
|
|
1254
|
+
static names(): { [key: string]: string } {
|
|
1255
|
+
return {
|
|
1256
|
+
riskType: 'risk_type',
|
|
1257
|
+
riskValue: 'risk_value',
|
|
1258
|
+
riskDesc: 'risk_desc',
|
|
1259
|
+
infoCode: 'info_code',
|
|
1260
|
+
};
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
static types(): { [key: string]: any } {
|
|
1264
|
+
return {
|
|
1265
|
+
riskType: 'string',
|
|
1266
|
+
riskValue: 'string',
|
|
1267
|
+
riskDesc: 'string',
|
|
1268
|
+
infoCode: 'string',
|
|
1269
|
+
};
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
constructor(map?: { [key: string]: any }) {
|
|
1273
|
+
super(map);
|
|
1274
|
+
}
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
// 单期取消模型
|
|
1278
|
+
export class SingleCancelModel extends $tea.Model {
|
|
1279
|
+
// 第几期
|
|
1280
|
+
periodNum: number;
|
|
1281
|
+
// 其他方式还款的时间
|
|
1282
|
+
gmtPay: string;
|
|
1283
|
+
// 取消订单某一期代扣计划中以其他方式还款金额,单位为分
|
|
1284
|
+
payOffAmount: number;
|
|
1285
|
+
// 变更其他方式还款WECHAT:微信; BANK:银行
|
|
1286
|
+
// ALIPAY:支付宝
|
|
1287
|
+
// CASH:现金
|
|
1288
|
+
payOffType?: string;
|
|
1289
|
+
// 通过其他方式还款单号;例如银行流水号或微信流水号
|
|
1290
|
+
payOffNo?: string;
|
|
1291
|
+
// 其他方式还款银行名称,还款方式为银行时必填
|
|
1292
|
+
payOffBankName?: string;
|
|
1293
|
+
static names(): { [key: string]: string } {
|
|
1294
|
+
return {
|
|
1295
|
+
periodNum: 'period_num',
|
|
1296
|
+
gmtPay: 'gmt_pay',
|
|
1297
|
+
payOffAmount: 'pay_off_amount',
|
|
1298
|
+
payOffType: 'pay_off_type',
|
|
1299
|
+
payOffNo: 'pay_off_no',
|
|
1300
|
+
payOffBankName: 'pay_off_bank_name',
|
|
1301
|
+
};
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
static types(): { [key: string]: any } {
|
|
1305
|
+
return {
|
|
1306
|
+
periodNum: 'number',
|
|
1307
|
+
gmtPay: 'string',
|
|
1308
|
+
payOffAmount: 'number',
|
|
1309
|
+
payOffType: 'string',
|
|
1310
|
+
payOffNo: 'string',
|
|
1311
|
+
payOffBankName: 'string',
|
|
1312
|
+
};
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
constructor(map?: { [key: string]: any }) {
|
|
1316
|
+
super(map);
|
|
1317
|
+
}
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
// 模型结果详情
|
|
1321
|
+
export class RiskModel extends $tea.Model {
|
|
1322
|
+
// 风险场景编码
|
|
1323
|
+
sceneCode: string;
|
|
1324
|
+
// 该风险场景的风险分值
|
|
1325
|
+
score: string;
|
|
1326
|
+
// 逾期率
|
|
1327
|
+
delinquencyRate?: string;
|
|
1328
|
+
// 风险建议
|
|
1329
|
+
riskAdvice?: string;
|
|
1330
|
+
// 风险等级
|
|
1331
|
+
riskRank?: string;
|
|
1332
|
+
// 流程id
|
|
1333
|
+
flowId: string;
|
|
1334
|
+
static names(): { [key: string]: string } {
|
|
1335
|
+
return {
|
|
1336
|
+
sceneCode: 'scene_code',
|
|
1337
|
+
score: 'score',
|
|
1338
|
+
delinquencyRate: 'delinquency_rate',
|
|
1339
|
+
riskAdvice: 'risk_advice',
|
|
1340
|
+
riskRank: 'risk_rank',
|
|
1341
|
+
flowId: 'flow_id',
|
|
1342
|
+
};
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
static types(): { [key: string]: any } {
|
|
1346
|
+
return {
|
|
1347
|
+
sceneCode: 'string',
|
|
1348
|
+
score: 'string',
|
|
1349
|
+
delinquencyRate: 'string',
|
|
1350
|
+
riskAdvice: 'string',
|
|
1351
|
+
riskRank: 'string',
|
|
1352
|
+
flowId: 'string',
|
|
1353
|
+
};
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
constructor(map?: { [key: string]: any }) {
|
|
1357
|
+
super(map);
|
|
1358
|
+
}
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
// 行业黄牛风险识别入参模型
|
|
1362
|
+
export class ScalperQueryModel extends $tea.Model {
|
|
1363
|
+
// 注册手机号,填写咨询对象所关联的注册手机号
|
|
1364
|
+
registrationPhone?: string;
|
|
1365
|
+
// 认证时间,填写风险咨询对象所关联的账号的真实身份认证时间
|
|
1366
|
+
certificateDate?: string;
|
|
1367
|
+
// 登录手机号,填写风险咨询对象关联账号的登录手机号
|
|
1368
|
+
loginPhone?: string;
|
|
1369
|
+
// 注册账号身份证,填写风险咨询对象所关联账号的注册身份证信息
|
|
1370
|
+
registrationCert?: string;
|
|
1371
|
+
// 登录账号身份证,登录账号的身份证号码
|
|
1372
|
+
loginCert?: string;
|
|
1373
|
+
// 注册时间,填写风险咨询对象所关联的账号的注册时间
|
|
1374
|
+
registrationDate?: string;
|
|
1375
|
+
// 证件类型;枚举值:1 - 身份证;2 - 护照
|
|
1376
|
+
certType?: number;
|
|
1377
|
+
// 银行卡号
|
|
1378
|
+
bankCardNo?: string;
|
|
1379
|
+
// 用户邮箱
|
|
1380
|
+
emailAddress?: string;
|
|
1381
|
+
// 手机序列号
|
|
1382
|
+
imei?: string;
|
|
1383
|
+
// 国际移动用户识别码
|
|
1384
|
+
imsi?: string;
|
|
1385
|
+
// mac 地址或设备唯一标识
|
|
1386
|
+
macAddress?: string;
|
|
1387
|
+
// 设备号,设备唯一号码
|
|
1388
|
+
apdid?: string;
|
|
1389
|
+
// 支付宝外部交易号
|
|
1390
|
+
outOrderNo?: string;
|
|
1391
|
+
// 所咨询的唯一支付宝交易号
|
|
1392
|
+
orderNo?: string;
|
|
1393
|
+
// 用户购买或使用服务时产生的具体金额总数,单位:分
|
|
1394
|
+
salesAmount?: number;
|
|
1395
|
+
// 用户姓名
|
|
1396
|
+
userName?: string;
|
|
1397
|
+
// 收货手机号,用于区分 mobile_no 所填的手机号
|
|
1398
|
+
mailingPhone?: string;
|
|
1399
|
+
// 收货地址
|
|
1400
|
+
mailingAddress?: string;
|
|
1401
|
+
// 是否为员工账号,枚举值:1 - 是
|
|
1402
|
+
isEmployee?: string;
|
|
1403
|
+
// 渠道,枚举值:alipay - 支付宝;app - 自有app;pc - 电脑端
|
|
1404
|
+
channel?: string;
|
|
1405
|
+
// 服务商 pid
|
|
1406
|
+
isvPid?: string;
|
|
1407
|
+
// 门店行业类目,枚举值:CATERING - 餐饮;LEISURE - 休闲;MEDICAL - 医疗
|
|
1408
|
+
storeMccDesc?: string;
|
|
1409
|
+
// 消费者 id,外部会员账号
|
|
1410
|
+
customerId?: string;
|
|
1411
|
+
// 订单所有商品信息列表
|
|
1412
|
+
orderItemsInfoList?: ScalperQueryOrderItem[];
|
|
1413
|
+
static names(): { [key: string]: string } {
|
|
1414
|
+
return {
|
|
1415
|
+
registrationPhone: 'registration_phone',
|
|
1416
|
+
certificateDate: 'certificate_date',
|
|
1417
|
+
loginPhone: 'login_phone',
|
|
1418
|
+
registrationCert: 'registration_cert',
|
|
1419
|
+
loginCert: 'login_cert',
|
|
1420
|
+
registrationDate: 'registration_date',
|
|
1421
|
+
certType: 'cert_type',
|
|
1422
|
+
bankCardNo: 'bank_card_no',
|
|
1423
|
+
emailAddress: 'email_address',
|
|
1424
|
+
imei: 'imei',
|
|
1425
|
+
imsi: 'imsi',
|
|
1426
|
+
macAddress: 'mac_address',
|
|
1427
|
+
apdid: 'apdid',
|
|
1428
|
+
outOrderNo: 'out_order_no',
|
|
1429
|
+
orderNo: 'order_no',
|
|
1430
|
+
salesAmount: 'sales_amount',
|
|
1431
|
+
userName: 'user_name',
|
|
1432
|
+
mailingPhone: 'mailing_phone',
|
|
1433
|
+
mailingAddress: 'mailing_address',
|
|
1434
|
+
isEmployee: 'is_employee',
|
|
1435
|
+
channel: 'channel',
|
|
1436
|
+
isvPid: 'isv_pid',
|
|
1437
|
+
storeMccDesc: 'store_mcc_desc',
|
|
1438
|
+
customerId: 'customer_id',
|
|
1439
|
+
orderItemsInfoList: 'order_items_info_list',
|
|
1440
|
+
};
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
static types(): { [key: string]: any } {
|
|
1444
|
+
return {
|
|
1445
|
+
registrationPhone: 'string',
|
|
1446
|
+
certificateDate: 'string',
|
|
1447
|
+
loginPhone: 'string',
|
|
1448
|
+
registrationCert: 'string',
|
|
1449
|
+
loginCert: 'string',
|
|
1450
|
+
registrationDate: 'string',
|
|
1451
|
+
certType: 'number',
|
|
1452
|
+
bankCardNo: 'string',
|
|
1453
|
+
emailAddress: 'string',
|
|
1454
|
+
imei: 'string',
|
|
1455
|
+
imsi: 'string',
|
|
1456
|
+
macAddress: 'string',
|
|
1457
|
+
apdid: 'string',
|
|
1458
|
+
outOrderNo: 'string',
|
|
1459
|
+
orderNo: 'string',
|
|
1460
|
+
salesAmount: 'number',
|
|
1461
|
+
userName: 'string',
|
|
1462
|
+
mailingPhone: 'string',
|
|
1463
|
+
mailingAddress: 'string',
|
|
1464
|
+
isEmployee: 'string',
|
|
1465
|
+
channel: 'string',
|
|
1466
|
+
isvPid: 'string',
|
|
1467
|
+
storeMccDesc: 'string',
|
|
1468
|
+
customerId: 'string',
|
|
1469
|
+
orderItemsInfoList: { 'type': 'array', 'itemType': ScalperQueryOrderItem },
|
|
1470
|
+
};
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
constructor(map?: { [key: string]: any }) {
|
|
1474
|
+
super(map);
|
|
1475
|
+
}
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
// 同步订单中的下单人信息
|
|
1479
|
+
export class UserSyncInfo extends $tea.Model {
|
|
1480
|
+
static names(): { [key: string]: string } {
|
|
1481
|
+
return {
|
|
1482
|
+
};
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
static types(): { [key: string]: any } {
|
|
1486
|
+
return {
|
|
1487
|
+
};
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
constructor(map?: { [key: string]: any }) {
|
|
1491
|
+
super(map);
|
|
1492
|
+
}
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
// 公司信息
|
|
1496
|
+
export class CompanyInfo extends $tea.Model {
|
|
1497
|
+
// 营业执照文件信息
|
|
1498
|
+
businessLicenseFile: FileInfo;
|
|
1499
|
+
// 业务类型 枚举
|
|
1500
|
+
productMainClass: string;
|
|
1501
|
+
// 公司名称
|
|
1502
|
+
companyName: string;
|
|
1503
|
+
// 公司别名
|
|
1504
|
+
companyAliasName: string;
|
|
1505
|
+
// 公司数科租户id
|
|
1506
|
+
tenantId?: string;
|
|
1507
|
+
// 统一社会信用代码
|
|
1508
|
+
merchantId: string;
|
|
1509
|
+
// 商户类型: 01:企业;07:个体工商户
|
|
1510
|
+
// 默认不填为01
|
|
1511
|
+
merchantType?: string;
|
|
1512
|
+
// 公司联系电话
|
|
1513
|
+
companyMobile: string;
|
|
1514
|
+
// 公司联系地址
|
|
1515
|
+
companyAddress: string;
|
|
1516
|
+
// 联系人姓名
|
|
1517
|
+
contactName: string;
|
|
1518
|
+
// 联系人手机号码
|
|
1519
|
+
contactMobile: string;
|
|
1520
|
+
// 绑定企业支付宝账号
|
|
1521
|
+
bindAlipayNo: string;
|
|
1522
|
+
// 结算企业支付宝账号
|
|
1523
|
+
settleAlipayNo: string;
|
|
1524
|
+
// 绑定支付宝uid
|
|
1525
|
+
bindAlipayUid: string;
|
|
1526
|
+
static names(): { [key: string]: string } {
|
|
1527
|
+
return {
|
|
1528
|
+
businessLicenseFile: 'business_license_file',
|
|
1529
|
+
productMainClass: 'product_main_class',
|
|
1530
|
+
companyName: 'company_name',
|
|
1531
|
+
companyAliasName: 'company_alias_name',
|
|
1532
|
+
tenantId: 'tenant_id',
|
|
1533
|
+
merchantId: 'merchant_id',
|
|
1534
|
+
merchantType: 'merchant_type',
|
|
1535
|
+
companyMobile: 'company_mobile',
|
|
1536
|
+
companyAddress: 'company_address',
|
|
1537
|
+
contactName: 'contact_name',
|
|
1538
|
+
contactMobile: 'contact_mobile',
|
|
1539
|
+
bindAlipayNo: 'bind_alipay_no',
|
|
1540
|
+
settleAlipayNo: 'settle_alipay_no',
|
|
1541
|
+
bindAlipayUid: 'bind_alipay_uid',
|
|
1542
|
+
};
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
static types(): { [key: string]: any } {
|
|
1546
|
+
return {
|
|
1547
|
+
businessLicenseFile: FileInfo,
|
|
1548
|
+
productMainClass: 'string',
|
|
1549
|
+
companyName: 'string',
|
|
1550
|
+
companyAliasName: 'string',
|
|
1551
|
+
tenantId: 'string',
|
|
1552
|
+
merchantId: 'string',
|
|
1553
|
+
merchantType: 'string',
|
|
1554
|
+
companyMobile: 'string',
|
|
1555
|
+
companyAddress: 'string',
|
|
1556
|
+
contactName: 'string',
|
|
1557
|
+
contactMobile: 'string',
|
|
1558
|
+
bindAlipayNo: 'string',
|
|
1559
|
+
settleAlipayNo: 'string',
|
|
1560
|
+
bindAlipayUid: 'string',
|
|
1561
|
+
};
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
constructor(map?: { [key: string]: any }) {
|
|
1565
|
+
super(map);
|
|
1566
|
+
}
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
// 用户履约信息
|
|
1570
|
+
export class UserPerformanceInfo extends $tea.Model {
|
|
1571
|
+
// 履约期数
|
|
1572
|
+
periodNum: number;
|
|
1573
|
+
// 履约时间,格式 yyyy-MM-dd
|
|
1574
|
+
// 针对签收日作为起租日模式,未签收时:以签收日开始计算
|
|
1575
|
+
payDate: string;
|
|
1576
|
+
// 履约金额,单位为分
|
|
1577
|
+
payMoney: number;
|
|
1578
|
+
static names(): { [key: string]: string } {
|
|
1579
|
+
return {
|
|
1580
|
+
periodNum: 'period_num',
|
|
1581
|
+
payDate: 'pay_date',
|
|
1582
|
+
payMoney: 'pay_money',
|
|
1583
|
+
};
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
static types(): { [key: string]: any } {
|
|
1587
|
+
return {
|
|
1588
|
+
periodNum: 'number',
|
|
1589
|
+
payDate: 'string',
|
|
1590
|
+
payMoney: 'number',
|
|
1591
|
+
};
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
constructor(map?: { [key: string]: any }) {
|
|
1595
|
+
super(map);
|
|
1596
|
+
}
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
// 营销分查询对象
|
|
1600
|
+
export class MarketingScoreQueryInfo extends $tea.Model {
|
|
1601
|
+
// 手机号码
|
|
1602
|
+
phoneNum?: string;
|
|
1603
|
+
static names(): { [key: string]: string } {
|
|
1604
|
+
return {
|
|
1605
|
+
phoneNum: 'phone_num',
|
|
1606
|
+
};
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
static types(): { [key: string]: any } {
|
|
1610
|
+
return {
|
|
1611
|
+
phoneNum: 'string',
|
|
1612
|
+
};
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
constructor(map?: { [key: string]: any }) {
|
|
1616
|
+
super(map);
|
|
1617
|
+
}
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
// 策略结果详情
|
|
1621
|
+
export class RiskStrategy extends $tea.Model {
|
|
1622
|
+
// 策略ID
|
|
1623
|
+
id: string;
|
|
1624
|
+
// 策略名称
|
|
1625
|
+
name: string;
|
|
1626
|
+
// 策略决策结果
|
|
1627
|
+
decision: string;
|
|
1628
|
+
// 风险场景编码
|
|
1629
|
+
sceneCode: string;
|
|
1630
|
+
static names(): { [key: string]: string } {
|
|
1631
|
+
return {
|
|
1632
|
+
id: 'id',
|
|
1633
|
+
name: 'name',
|
|
1634
|
+
decision: 'decision',
|
|
1635
|
+
sceneCode: 'scene_code',
|
|
1636
|
+
};
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
static types(): { [key: string]: any } {
|
|
1640
|
+
return {
|
|
1641
|
+
id: 'string',
|
|
1642
|
+
name: 'string',
|
|
1643
|
+
decision: 'string',
|
|
1644
|
+
sceneCode: 'string',
|
|
1645
|
+
};
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
constructor(map?: { [key: string]: any }) {
|
|
1649
|
+
super(map);
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
// 保单信息
|
|
1654
|
+
export class InsureOrderInfo extends $tea.Model {
|
|
1655
|
+
// 商家订单ID
|
|
1656
|
+
orderId?: string;
|
|
1657
|
+
// 投保编号(承保id)
|
|
1658
|
+
insureId?: string;
|
|
1659
|
+
// 商品名称
|
|
1660
|
+
productName?: string;
|
|
1661
|
+
// 保险开始时间
|
|
1662
|
+
insureStartTime?: string;
|
|
1663
|
+
// 保险终止时间
|
|
1664
|
+
insureEndTime?: string;
|
|
1665
|
+
// 投保金额(保额),单位分 100代表1元
|
|
1666
|
+
insureAmount?: number;
|
|
1667
|
+
// 投保费用(保费),单位分 100代表1元
|
|
1668
|
+
insurePremium?: number;
|
|
1669
|
+
// 投保状态枚举
|
|
1670
|
+
status?: string;
|
|
1671
|
+
// 电子保单下载链接
|
|
1672
|
+
policyUrl?: string;
|
|
1673
|
+
// 验真码
|
|
1674
|
+
validateCode?: string;
|
|
1675
|
+
static names(): { [key: string]: string } {
|
|
1676
|
+
return {
|
|
1677
|
+
orderId: 'order_id',
|
|
1678
|
+
insureId: 'insure_id',
|
|
1679
|
+
productName: 'product_name',
|
|
1680
|
+
insureStartTime: 'insure_start_time',
|
|
1681
|
+
insureEndTime: 'insure_end_time',
|
|
1682
|
+
insureAmount: 'insure_amount',
|
|
1683
|
+
insurePremium: 'insure_premium',
|
|
1684
|
+
status: 'status',
|
|
1685
|
+
policyUrl: 'policy_url',
|
|
1686
|
+
validateCode: 'validate_code',
|
|
1687
|
+
};
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
static types(): { [key: string]: any } {
|
|
1691
|
+
return {
|
|
1692
|
+
orderId: 'string',
|
|
1693
|
+
insureId: 'string',
|
|
1694
|
+
productName: 'string',
|
|
1695
|
+
insureStartTime: 'string',
|
|
1696
|
+
insureEndTime: 'string',
|
|
1697
|
+
insureAmount: 'number',
|
|
1698
|
+
insurePremium: 'number',
|
|
1699
|
+
status: 'string',
|
|
1700
|
+
policyUrl: 'string',
|
|
1701
|
+
validateCode: 'string',
|
|
1702
|
+
};
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
constructor(map?: { [key: string]: any }) {
|
|
1706
|
+
super(map);
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
// 营销分对象
|
|
1711
|
+
export class MarketingScoreInfo extends $tea.Model {
|
|
1712
|
+
// 手机号
|
|
1713
|
+
phoneNum?: string;
|
|
1714
|
+
// 营销分
|
|
1715
|
+
score?: string;
|
|
1716
|
+
static names(): { [key: string]: string } {
|
|
1717
|
+
return {
|
|
1718
|
+
phoneNum: 'phone_num',
|
|
1719
|
+
score: 'score',
|
|
1720
|
+
};
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
static types(): { [key: string]: any } {
|
|
1724
|
+
return {
|
|
1725
|
+
phoneNum: 'string',
|
|
1726
|
+
score: 'string',
|
|
1727
|
+
};
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
constructor(map?: { [key: string]: any }) {
|
|
1731
|
+
super(map);
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
// 智租风控-商品价格
|
|
1736
|
+
export class PriceDetail extends $tea.Model {
|
|
1737
|
+
// 商品租赁期数
|
|
1738
|
+
periodNum: number;
|
|
1739
|
+
// 押金,单位:分。
|
|
1740
|
+
depositPrice: number;
|
|
1741
|
+
// 买断价格,单位:分
|
|
1742
|
+
buyoutPrice: number;
|
|
1743
|
+
// 首期租金,单位:分
|
|
1744
|
+
initialRentPrice: number;
|
|
1745
|
+
static names(): { [key: string]: string } {
|
|
1746
|
+
return {
|
|
1747
|
+
periodNum: 'period_num',
|
|
1748
|
+
depositPrice: 'deposit_price',
|
|
1749
|
+
buyoutPrice: 'buyout_price',
|
|
1750
|
+
initialRentPrice: 'initial_rent_price',
|
|
1751
|
+
};
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
static types(): { [key: string]: any } {
|
|
1755
|
+
return {
|
|
1756
|
+
periodNum: 'number',
|
|
1757
|
+
depositPrice: 'number',
|
|
1758
|
+
buyoutPrice: 'number',
|
|
1759
|
+
initialRentPrice: 'number',
|
|
1760
|
+
};
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
constructor(map?: { [key: string]: any }) {
|
|
1764
|
+
super(map);
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
// 订单消息结构体
|
|
1769
|
+
export class OrderMsgInfo extends $tea.Model {
|
|
1770
|
+
// 订单id
|
|
1771
|
+
//
|
|
1772
|
+
orderId: string;
|
|
1773
|
+
// 消息ID
|
|
1774
|
+
//
|
|
1775
|
+
msgId: string;
|
|
1776
|
+
// 消息类型
|
|
1777
|
+
//
|
|
1778
|
+
msgPublishType: string;
|
|
1779
|
+
// 消息创建时间
|
|
1780
|
+
//
|
|
1781
|
+
msgCreateTime: string;
|
|
1782
|
+
// 消息投递状态 SUCCESS 成功 FAIL 失败 WAIT 等待投递重试
|
|
1783
|
+
msgStatus: string;
|
|
1784
|
+
// 消息重投次数
|
|
1785
|
+
//
|
|
1786
|
+
msgRetryTime: number;
|
|
1787
|
+
// 消息体内容
|
|
1788
|
+
msgContent: string;
|
|
1789
|
+
// 消息回调地址
|
|
1790
|
+
msgCallbackUrl: string;
|
|
1791
|
+
// 新回调地址
|
|
1792
|
+
newMsgCallbackUrl: string;
|
|
1793
|
+
static names(): { [key: string]: string } {
|
|
1794
|
+
return {
|
|
1795
|
+
orderId: 'order_id',
|
|
1796
|
+
msgId: 'msg_id',
|
|
1797
|
+
msgPublishType: 'msg_publish_type',
|
|
1798
|
+
msgCreateTime: 'msg_create_time',
|
|
1799
|
+
msgStatus: 'msg_status',
|
|
1800
|
+
msgRetryTime: 'msg_retry_time',
|
|
1801
|
+
msgContent: 'msg_content',
|
|
1802
|
+
msgCallbackUrl: 'msg_callback_url',
|
|
1803
|
+
newMsgCallbackUrl: 'new_msg_callback_url',
|
|
1804
|
+
};
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
static types(): { [key: string]: any } {
|
|
1808
|
+
return {
|
|
1809
|
+
orderId: 'string',
|
|
1810
|
+
msgId: 'string',
|
|
1811
|
+
msgPublishType: 'string',
|
|
1812
|
+
msgCreateTime: 'string',
|
|
1813
|
+
msgStatus: 'string',
|
|
1814
|
+
msgRetryTime: 'number',
|
|
1815
|
+
msgContent: 'string',
|
|
1816
|
+
msgCallbackUrl: 'string',
|
|
1817
|
+
newMsgCallbackUrl: 'string',
|
|
1818
|
+
};
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
constructor(map?: { [key: string]: any }) {
|
|
1822
|
+
super(map);
|
|
1823
|
+
}
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
// 营销发奖风险识别入参模型
|
|
1827
|
+
export class AwardingQueryModel extends $tea.Model {
|
|
1828
|
+
// 对方支付宝账户 uid,用于表示两个账户在业务交互中的对方账户,如人传人活动用户A会拉用户B来注册领奖,其中用户B为对方账户
|
|
1829
|
+
opposingUserid?: string;
|
|
1830
|
+
// 对方支付宝账户openid,营销发奖风险识别场景,userid 与 open_id 至少传入一个
|
|
1831
|
+
opposingOpenId?: string;
|
|
1832
|
+
// 服务二级分类
|
|
1833
|
+
serviceCategory?: string;
|
|
1834
|
+
// 服务商 pid
|
|
1835
|
+
isvPid?: string;
|
|
1836
|
+
// 银行卡号
|
|
1837
|
+
bankCardNo?: string;
|
|
1838
|
+
// 手机序列号
|
|
1839
|
+
imei?: string;
|
|
1840
|
+
// 国际移动用户识别码
|
|
1841
|
+
imsi?: string;
|
|
1842
|
+
// 金额,用户购买或使用服务时产生的具体金额,单位:分
|
|
1843
|
+
salesAmount?: number;
|
|
1844
|
+
// 用户姓名
|
|
1845
|
+
userName?: string;
|
|
1846
|
+
// 门店行业类目,枚举值:CATERING - 餐饮;LEISURE - 休闲;MEDICAL - 医疗
|
|
1847
|
+
storeMccDesc?: string;
|
|
1848
|
+
// 消费者 id,外部会员账号
|
|
1849
|
+
customerId: string;
|
|
1850
|
+
// 填入想要咨询风控的二维码值,需为唯一值
|
|
1851
|
+
qrCode?: string;
|
|
1852
|
+
static names(): { [key: string]: string } {
|
|
1853
|
+
return {
|
|
1854
|
+
opposingUserid: 'opposing_userid',
|
|
1855
|
+
opposingOpenId: 'opposing_open_id',
|
|
1856
|
+
serviceCategory: 'service_category',
|
|
1857
|
+
isvPid: 'isv_pid',
|
|
1858
|
+
bankCardNo: 'bank_card_no',
|
|
1859
|
+
imei: 'imei',
|
|
1860
|
+
imsi: 'imsi',
|
|
1861
|
+
salesAmount: 'sales_amount',
|
|
1862
|
+
userName: 'user_name',
|
|
1863
|
+
storeMccDesc: 'store_mcc_desc',
|
|
1864
|
+
customerId: 'customer_id',
|
|
1865
|
+
qrCode: 'qr_code',
|
|
1866
|
+
};
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
static types(): { [key: string]: any } {
|
|
1870
|
+
return {
|
|
1871
|
+
opposingUserid: 'string',
|
|
1872
|
+
opposingOpenId: 'string',
|
|
1873
|
+
serviceCategory: 'string',
|
|
1874
|
+
isvPid: 'string',
|
|
1875
|
+
bankCardNo: 'string',
|
|
1876
|
+
imei: 'string',
|
|
1877
|
+
imsi: 'string',
|
|
1878
|
+
salesAmount: 'number',
|
|
1879
|
+
userName: 'string',
|
|
1880
|
+
storeMccDesc: 'string',
|
|
1881
|
+
customerId: 'string',
|
|
1882
|
+
qrCode: 'string',
|
|
1883
|
+
};
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
constructor(map?: { [key: string]: any }) {
|
|
1887
|
+
super(map);
|
|
1888
|
+
}
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
// 应用信息修改
|
|
1892
|
+
export class ApplicationInfoUpdate extends $tea.Model {
|
|
1893
|
+
// 应用场景 MINI_APP 小程序 APP 自有app ALL 两种都有
|
|
1894
|
+
applicationScene?: string;
|
|
1895
|
+
// 小程序id
|
|
1896
|
+
tinyAppId?: string;
|
|
1897
|
+
// 小程序名称
|
|
1898
|
+
siteName?: string;
|
|
1899
|
+
// http://asdasas.com
|
|
1900
|
+
sitUrl?: string;
|
|
1901
|
+
// 商户名称。 修改后的商户名称,将同步支付宝代扣签约页面字段展示
|
|
1902
|
+
merchantName?: string;
|
|
1903
|
+
// 商户服务名称。 修改后的商户服务名称,将同步支付宝代扣签约页面字段展示
|
|
1904
|
+
merchantServiceName?: string;
|
|
1905
|
+
// 商户服务描述。 修改后的商户服务描述,将同步支付宝代扣签约页面字段展示
|
|
1906
|
+
merchantServiceDesc?: string;
|
|
1907
|
+
static names(): { [key: string]: string } {
|
|
1908
|
+
return {
|
|
1909
|
+
applicationScene: 'application_scene',
|
|
1910
|
+
tinyAppId: 'tiny_app_id',
|
|
1911
|
+
siteName: 'site_name',
|
|
1912
|
+
sitUrl: 'sit_url',
|
|
1913
|
+
merchantName: 'merchant_name',
|
|
1914
|
+
merchantServiceName: 'merchant_service_name',
|
|
1915
|
+
merchantServiceDesc: 'merchant_service_desc',
|
|
1916
|
+
};
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
static types(): { [key: string]: any } {
|
|
1920
|
+
return {
|
|
1921
|
+
applicationScene: 'string',
|
|
1922
|
+
tinyAppId: 'string',
|
|
1923
|
+
siteName: 'string',
|
|
1924
|
+
sitUrl: 'string',
|
|
1925
|
+
merchantName: 'string',
|
|
1926
|
+
merchantServiceName: 'string',
|
|
1927
|
+
merchantServiceDesc: 'string',
|
|
1928
|
+
};
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
constructor(map?: { [key: string]: any }) {
|
|
1932
|
+
super(map);
|
|
1933
|
+
}
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
// 订单用户信息
|
|
1937
|
+
export class OrderUserInfo extends $tea.Model {
|
|
1938
|
+
// 承租人名称
|
|
1939
|
+
userName?: string;
|
|
1940
|
+
// 承租人手机号
|
|
1941
|
+
userPhoneNumber?: string;
|
|
1942
|
+
// 地址
|
|
1943
|
+
userAddress?: string;
|
|
1944
|
+
// 支付宝账号
|
|
1945
|
+
alipayUid?: string;
|
|
1946
|
+
// 租赁类别
|
|
1947
|
+
// 1:个人用户
|
|
1948
|
+
// 2:企业用户
|
|
1949
|
+
lesseeType?: number;
|
|
1950
|
+
// 承租人身份证
|
|
1951
|
+
userId?: string;
|
|
1952
|
+
static names(): { [key: string]: string } {
|
|
1953
|
+
return {
|
|
1954
|
+
userName: 'user_name',
|
|
1955
|
+
userPhoneNumber: 'user_phone_number',
|
|
1956
|
+
userAddress: 'user_address',
|
|
1957
|
+
alipayUid: 'alipay_uid',
|
|
1958
|
+
lesseeType: 'lessee_type',
|
|
1959
|
+
userId: 'user_id',
|
|
1960
|
+
};
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
static types(): { [key: string]: any } {
|
|
1964
|
+
return {
|
|
1965
|
+
userName: 'string',
|
|
1966
|
+
userPhoneNumber: 'string',
|
|
1967
|
+
userAddress: 'string',
|
|
1968
|
+
alipayUid: 'string',
|
|
1969
|
+
lesseeType: 'number',
|
|
1970
|
+
userId: 'string',
|
|
1971
|
+
};
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
constructor(map?: { [key: string]: any }) {
|
|
1975
|
+
super(map);
|
|
1976
|
+
}
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
// 订单包含的单个商品模型
|
|
1980
|
+
export class OrderGoodsModel extends $tea.Model {
|
|
1981
|
+
static names(): { [key: string]: string } {
|
|
1982
|
+
return {
|
|
1983
|
+
};
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
static types(): { [key: string]: any } {
|
|
1987
|
+
return {
|
|
1988
|
+
};
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
constructor(map?: { [key: string]: any }) {
|
|
1992
|
+
super(map);
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
// 智租风控-物流信息
|
|
1997
|
+
export class DeliveryDetail extends $tea.Model {
|
|
1998
|
+
// 收件人姓名
|
|
1999
|
+
receiverName?: string;
|
|
2000
|
+
// 收件人手机号
|
|
2001
|
+
receiverMobile?: string;
|
|
2002
|
+
// 收件人地址
|
|
2003
|
+
receiverAddress?: string;
|
|
2004
|
+
static names(): { [key: string]: string } {
|
|
2005
|
+
return {
|
|
2006
|
+
receiverName: 'receiver_name',
|
|
2007
|
+
receiverMobile: 'receiver_mobile',
|
|
2008
|
+
receiverAddress: 'receiver_address',
|
|
2009
|
+
};
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
static types(): { [key: string]: any } {
|
|
2013
|
+
return {
|
|
2014
|
+
receiverName: 'string',
|
|
2015
|
+
receiverMobile: 'string',
|
|
2016
|
+
receiverAddress: 'string',
|
|
2017
|
+
};
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
constructor(map?: { [key: string]: any }) {
|
|
2021
|
+
super(map);
|
|
2022
|
+
}
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
// 租户协议分页对象
|
|
2026
|
+
export class AgreementPage extends $tea.Model {
|
|
2027
|
+
// 协议id
|
|
2028
|
+
agreementId: string;
|
|
2029
|
+
// 代理企业名称
|
|
2030
|
+
merchantName: string;
|
|
2031
|
+
// 租户8位id
|
|
2032
|
+
tenantId: string;
|
|
2033
|
+
// 业务类型 枚举
|
|
2034
|
+
productMainClass: string;
|
|
2035
|
+
// 协议类型 枚举
|
|
2036
|
+
agreementType: string;
|
|
2037
|
+
// 租户签约状态 枚举
|
|
2038
|
+
signStatus: string;
|
|
2039
|
+
static names(): { [key: string]: string } {
|
|
2040
|
+
return {
|
|
2041
|
+
agreementId: 'agreement_id',
|
|
2042
|
+
merchantName: 'merchant_name',
|
|
2043
|
+
tenantId: 'tenant_id',
|
|
2044
|
+
productMainClass: 'product_main_class',
|
|
2045
|
+
agreementType: 'agreement_type',
|
|
2046
|
+
signStatus: 'sign_status',
|
|
1424
2047
|
};
|
|
1425
2048
|
}
|
|
1426
2049
|
|
|
1427
2050
|
static types(): { [key: string]: any } {
|
|
1428
2051
|
return {
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
companyName: 'string',
|
|
1432
|
-
companyAliasName: 'string',
|
|
2052
|
+
agreementId: 'string',
|
|
2053
|
+
merchantName: 'string',
|
|
1433
2054
|
tenantId: 'string',
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
contactMobile: 'string',
|
|
1438
|
-
merchantType: 'string',
|
|
2055
|
+
productMainClass: 'string',
|
|
2056
|
+
agreementType: 'string',
|
|
2057
|
+
signStatus: 'string',
|
|
1439
2058
|
};
|
|
1440
2059
|
}
|
|
1441
2060
|
|
|
@@ -1444,51 +2063,51 @@ export class CompanyInfoUpdate extends $tea.Model {
|
|
|
1444
2063
|
}
|
|
1445
2064
|
}
|
|
1446
2065
|
|
|
1447
|
-
//
|
|
1448
|
-
export class
|
|
1449
|
-
//
|
|
1450
|
-
|
|
1451
|
-
//
|
|
1452
|
-
|
|
1453
|
-
//
|
|
1454
|
-
|
|
1455
|
-
//
|
|
1456
|
-
|
|
1457
|
-
//
|
|
1458
|
-
|
|
1459
|
-
//
|
|
1460
|
-
|
|
1461
|
-
//
|
|
1462
|
-
|
|
1463
|
-
//
|
|
1464
|
-
|
|
1465
|
-
//
|
|
1466
|
-
|
|
2066
|
+
// 行业刷单风险识别入参模型
|
|
2067
|
+
export class FarmingQueryModel extends $tea.Model {
|
|
2068
|
+
// 支付宝外部交易号
|
|
2069
|
+
outOrderNo?: string;
|
|
2070
|
+
// 支付宝内部交易号
|
|
2071
|
+
orderNo?: string;
|
|
2072
|
+
// 金额,用户购买或使用服务时产生的具体金额,单位:分
|
|
2073
|
+
salesAmount?: number;
|
|
2074
|
+
// 银行卡号
|
|
2075
|
+
bankCardNo?: string;
|
|
2076
|
+
// 服务商 pid
|
|
2077
|
+
isvPid?: string;
|
|
2078
|
+
// 门店行业类目,枚举值:CATERING - 餐饮;LEISURE - 休闲;MEDICAL - 医疗
|
|
2079
|
+
storeMccDesc?: string;
|
|
2080
|
+
// 门店地址;不需要传城市和行政区
|
|
2081
|
+
outletAddress?: string;
|
|
2082
|
+
// 公司名称
|
|
2083
|
+
companyName?: string;
|
|
2084
|
+
// 店铺名称
|
|
2085
|
+
storeName?: string;
|
|
1467
2086
|
static names(): { [key: string]: string } {
|
|
1468
2087
|
return {
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
2088
|
+
outOrderNo: 'out_order_no',
|
|
2089
|
+
orderNo: 'order_no',
|
|
2090
|
+
salesAmount: 'sales_amount',
|
|
2091
|
+
bankCardNo: 'bank_card_no',
|
|
2092
|
+
isvPid: 'isv_pid',
|
|
2093
|
+
storeMccDesc: 'store_mcc_desc',
|
|
2094
|
+
outletAddress: 'outlet_address',
|
|
2095
|
+
companyName: 'company_name',
|
|
2096
|
+
storeName: 'store_name',
|
|
1478
2097
|
};
|
|
1479
2098
|
}
|
|
1480
2099
|
|
|
1481
2100
|
static types(): { [key: string]: any } {
|
|
1482
2101
|
return {
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
2102
|
+
outOrderNo: 'string',
|
|
2103
|
+
orderNo: 'string',
|
|
2104
|
+
salesAmount: 'number',
|
|
2105
|
+
bankCardNo: 'string',
|
|
2106
|
+
isvPid: 'string',
|
|
2107
|
+
storeMccDesc: 'string',
|
|
2108
|
+
outletAddress: 'string',
|
|
2109
|
+
companyName: 'string',
|
|
2110
|
+
storeName: 'string',
|
|
1492
2111
|
};
|
|
1493
2112
|
}
|
|
1494
2113
|
|
|
@@ -1582,61 +2201,6 @@ export class ActivePayOrder extends $tea.Model {
|
|
|
1582
2201
|
}
|
|
1583
2202
|
}
|
|
1584
2203
|
|
|
1585
|
-
// 应用信息
|
|
1586
|
-
export class ApplicationInfo extends $tea.Model {
|
|
1587
|
-
// 应用场景
|
|
1588
|
-
// MINI_APP 小程序
|
|
1589
|
-
// APP 自有app
|
|
1590
|
-
// ALL 两种都有
|
|
1591
|
-
applicationScene: string;
|
|
1592
|
-
// 小程序id
|
|
1593
|
-
tinyAppId: string;
|
|
1594
|
-
// 小程序名称
|
|
1595
|
-
siteName: string;
|
|
1596
|
-
// 网站地址
|
|
1597
|
-
sitUrl: string;
|
|
1598
|
-
// 商户名称。
|
|
1599
|
-
// 修改后的商户名称,将同步支付宝代扣签约页面字段展示
|
|
1600
|
-
merchantName: string;
|
|
1601
|
-
// 商户服务名称。
|
|
1602
|
-
// 修改后的商户服务名称,将同步支付宝代扣签约页面字段展示
|
|
1603
|
-
merchantServiceName: string;
|
|
1604
|
-
// 商户服务描述。
|
|
1605
|
-
// 修改后的商户服务描述,将同步支付宝代扣签约页面字段展示
|
|
1606
|
-
merchantServiceDesc: string;
|
|
1607
|
-
// 站点信息
|
|
1608
|
-
siteInfo?: SiteInfo[];
|
|
1609
|
-
static names(): { [key: string]: string } {
|
|
1610
|
-
return {
|
|
1611
|
-
applicationScene: 'application_scene',
|
|
1612
|
-
tinyAppId: 'tiny_app_id',
|
|
1613
|
-
siteName: 'site_name',
|
|
1614
|
-
sitUrl: 'sit_url',
|
|
1615
|
-
merchantName: 'merchant_name',
|
|
1616
|
-
merchantServiceName: 'merchant_service_name',
|
|
1617
|
-
merchantServiceDesc: 'merchant_service_desc',
|
|
1618
|
-
siteInfo: 'site_info',
|
|
1619
|
-
};
|
|
1620
|
-
}
|
|
1621
|
-
|
|
1622
|
-
static types(): { [key: string]: any } {
|
|
1623
|
-
return {
|
|
1624
|
-
applicationScene: 'string',
|
|
1625
|
-
tinyAppId: 'string',
|
|
1626
|
-
siteName: 'string',
|
|
1627
|
-
sitUrl: 'string',
|
|
1628
|
-
merchantName: 'string',
|
|
1629
|
-
merchantServiceName: 'string',
|
|
1630
|
-
merchantServiceDesc: 'string',
|
|
1631
|
-
siteInfo: { 'type': 'array', 'itemType': SiteInfo },
|
|
1632
|
-
};
|
|
1633
|
-
}
|
|
1634
|
-
|
|
1635
|
-
constructor(map?: { [key: string]: any }) {
|
|
1636
|
-
super(map);
|
|
1637
|
-
}
|
|
1638
|
-
}
|
|
1639
|
-
|
|
1640
2204
|
// 订单商品信息
|
|
1641
2205
|
export class GoodsInfo extends $tea.Model {
|
|
1642
2206
|
static names(): { [key: string]: string } {
|
|
@@ -1679,36 +2243,6 @@ export class PageQuery extends $tea.Model {
|
|
|
1679
2243
|
}
|
|
1680
2244
|
}
|
|
1681
2245
|
|
|
1682
|
-
// 智租风控-商品详情
|
|
1683
|
-
export class ItemDetail extends $tea.Model {
|
|
1684
|
-
// 租赁商品类目,可选类型:
|
|
1685
|
-
// RENT_PHONE - 手机租赁;RENT_COMPUTER - 电脑/平板租赁;RENT_CAMERA - 数码摄像租赁;RENT_DIGITAL - 数码其他租赁;RENT_STATIONERY - 电子词典/电纸书/文化用品租赁;RENT_CLOTHING - 服装租赁
|
|
1686
|
-
goodsCategory?: string;
|
|
1687
|
-
// 租赁商品名称
|
|
1688
|
-
itemName?: string;
|
|
1689
|
-
// 租赁商品数量
|
|
1690
|
-
quantity?: number;
|
|
1691
|
-
static names(): { [key: string]: string } {
|
|
1692
|
-
return {
|
|
1693
|
-
goodsCategory: 'goods_category',
|
|
1694
|
-
itemName: 'item_name',
|
|
1695
|
-
quantity: 'quantity',
|
|
1696
|
-
};
|
|
1697
|
-
}
|
|
1698
|
-
|
|
1699
|
-
static types(): { [key: string]: any } {
|
|
1700
|
-
return {
|
|
1701
|
-
goodsCategory: 'string',
|
|
1702
|
-
itemName: 'string',
|
|
1703
|
-
quantity: 'number',
|
|
1704
|
-
};
|
|
1705
|
-
}
|
|
1706
|
-
|
|
1707
|
-
constructor(map?: { [key: string]: any }) {
|
|
1708
|
-
super(map);
|
|
1709
|
-
}
|
|
1710
|
-
}
|
|
1711
|
-
|
|
1712
2246
|
// 法人信息
|
|
1713
2247
|
export class LegalInfo extends $tea.Model {
|
|
1714
2248
|
// 法人名称
|
|
@@ -1742,47 +2276,6 @@ export class LegalInfo extends $tea.Model {
|
|
|
1742
2276
|
}
|
|
1743
2277
|
}
|
|
1744
2278
|
|
|
1745
|
-
// 模型结果详情
|
|
1746
|
-
export class RiskModel extends $tea.Model {
|
|
1747
|
-
// 风险场景编码
|
|
1748
|
-
sceneCode: string;
|
|
1749
|
-
// 该风险场景的风险分值
|
|
1750
|
-
score: string;
|
|
1751
|
-
// 逾期率
|
|
1752
|
-
delinquencyRate?: string;
|
|
1753
|
-
// 风险建议
|
|
1754
|
-
riskAdvice?: string;
|
|
1755
|
-
// 风险等级
|
|
1756
|
-
riskRank?: string;
|
|
1757
|
-
// 流程id
|
|
1758
|
-
flowId: string;
|
|
1759
|
-
static names(): { [key: string]: string } {
|
|
1760
|
-
return {
|
|
1761
|
-
sceneCode: 'scene_code',
|
|
1762
|
-
score: 'score',
|
|
1763
|
-
delinquencyRate: 'delinquency_rate',
|
|
1764
|
-
riskAdvice: 'risk_advice',
|
|
1765
|
-
riskRank: 'risk_rank',
|
|
1766
|
-
flowId: 'flow_id',
|
|
1767
|
-
};
|
|
1768
|
-
}
|
|
1769
|
-
|
|
1770
|
-
static types(): { [key: string]: any } {
|
|
1771
|
-
return {
|
|
1772
|
-
sceneCode: 'string',
|
|
1773
|
-
score: 'string',
|
|
1774
|
-
delinquencyRate: 'string',
|
|
1775
|
-
riskAdvice: 'string',
|
|
1776
|
-
riskRank: 'string',
|
|
1777
|
-
flowId: 'string',
|
|
1778
|
-
};
|
|
1779
|
-
}
|
|
1780
|
-
|
|
1781
|
-
constructor(map?: { [key: string]: any }) {
|
|
1782
|
-
super(map);
|
|
1783
|
-
}
|
|
1784
|
-
}
|
|
1785
|
-
|
|
1786
2279
|
// 键值对
|
|
1787
2280
|
export class XNameValuePair extends $tea.Model {
|
|
1788
2281
|
// 键名
|
|
@@ -3472,6 +3965,73 @@ export class QueryFundCompensateaccountResponse extends $tea.Model {
|
|
|
3472
3965
|
}
|
|
3473
3966
|
}
|
|
3474
3967
|
|
|
3968
|
+
export class GetFundOrderfinanceinfoRequest extends $tea.Model {
|
|
3969
|
+
// OAuth模式下的授权token
|
|
3970
|
+
authToken?: string;
|
|
3971
|
+
productInstanceId?: string;
|
|
3972
|
+
// order_id
|
|
3973
|
+
orderId: string;
|
|
3974
|
+
// merchant_id
|
|
3975
|
+
merchantId: string;
|
|
3976
|
+
// fund_id
|
|
3977
|
+
fundId: string;
|
|
3978
|
+
static names(): { [key: string]: string } {
|
|
3979
|
+
return {
|
|
3980
|
+
authToken: 'auth_token',
|
|
3981
|
+
productInstanceId: 'product_instance_id',
|
|
3982
|
+
orderId: 'order_id',
|
|
3983
|
+
merchantId: 'merchant_id',
|
|
3984
|
+
fundId: 'fund_id',
|
|
3985
|
+
};
|
|
3986
|
+
}
|
|
3987
|
+
|
|
3988
|
+
static types(): { [key: string]: any } {
|
|
3989
|
+
return {
|
|
3990
|
+
authToken: 'string',
|
|
3991
|
+
productInstanceId: 'string',
|
|
3992
|
+
orderId: 'string',
|
|
3993
|
+
merchantId: 'string',
|
|
3994
|
+
fundId: 'string',
|
|
3995
|
+
};
|
|
3996
|
+
}
|
|
3997
|
+
|
|
3998
|
+
constructor(map?: { [key: string]: any }) {
|
|
3999
|
+
super(map);
|
|
4000
|
+
}
|
|
4001
|
+
}
|
|
4002
|
+
|
|
4003
|
+
export class GetFundOrderfinanceinfoResponse extends $tea.Model {
|
|
4004
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
4005
|
+
reqMsgId?: string;
|
|
4006
|
+
// 结果码,一般OK表示调用成功
|
|
4007
|
+
resultCode?: string;
|
|
4008
|
+
// 异常信息的文本描述
|
|
4009
|
+
resultMsg?: string;
|
|
4010
|
+
// {}
|
|
4011
|
+
responseData?: string;
|
|
4012
|
+
static names(): { [key: string]: string } {
|
|
4013
|
+
return {
|
|
4014
|
+
reqMsgId: 'req_msg_id',
|
|
4015
|
+
resultCode: 'result_code',
|
|
4016
|
+
resultMsg: 'result_msg',
|
|
4017
|
+
responseData: 'response_data',
|
|
4018
|
+
};
|
|
4019
|
+
}
|
|
4020
|
+
|
|
4021
|
+
static types(): { [key: string]: any } {
|
|
4022
|
+
return {
|
|
4023
|
+
reqMsgId: 'string',
|
|
4024
|
+
resultCode: 'string',
|
|
4025
|
+
resultMsg: 'string',
|
|
4026
|
+
responseData: 'string',
|
|
4027
|
+
};
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
constructor(map?: { [key: string]: any }) {
|
|
4031
|
+
super(map);
|
|
4032
|
+
}
|
|
4033
|
+
}
|
|
4034
|
+
|
|
3475
4035
|
export class GetInnerProductRequest extends $tea.Model {
|
|
3476
4036
|
// OAuth模式下的授权token
|
|
3477
4037
|
authToken?: string;
|
|
@@ -5964,12 +6524,18 @@ export class SyncInnerTemplateResponse extends $tea.Model {
|
|
|
5964
6524
|
resultMsg?: string;
|
|
5965
6525
|
// 同步后的新模板code
|
|
5966
6526
|
targetTemplateCode?: string;
|
|
6527
|
+
// 模板同步上线时(强管控字段)校验结果
|
|
6528
|
+
validResult?: boolean;
|
|
6529
|
+
// 校验结果明细JSONStr
|
|
6530
|
+
validFieldDetail?: string;
|
|
5967
6531
|
static names(): { [key: string]: string } {
|
|
5968
6532
|
return {
|
|
5969
6533
|
reqMsgId: 'req_msg_id',
|
|
5970
6534
|
resultCode: 'result_code',
|
|
5971
6535
|
resultMsg: 'result_msg',
|
|
5972
6536
|
targetTemplateCode: 'target_template_code',
|
|
6537
|
+
validResult: 'valid_result',
|
|
6538
|
+
validFieldDetail: 'valid_field_detail',
|
|
5973
6539
|
};
|
|
5974
6540
|
}
|
|
5975
6541
|
|
|
@@ -5979,6 +6545,8 @@ export class SyncInnerTemplateResponse extends $tea.Model {
|
|
|
5979
6545
|
resultCode: 'string',
|
|
5980
6546
|
resultMsg: 'string',
|
|
5981
6547
|
targetTemplateCode: 'string',
|
|
6548
|
+
validResult: 'boolean',
|
|
6549
|
+
validFieldDetail: 'string',
|
|
5982
6550
|
};
|
|
5983
6551
|
}
|
|
5984
6552
|
|
|
@@ -7664,6 +8232,8 @@ export class DetailInnerOrderResponse extends $tea.Model {
|
|
|
7664
8232
|
orderPromiseInfo?: OrderPromiseInfo;
|
|
7665
8233
|
// 订单商品信息
|
|
7666
8234
|
orderProductInfoList?: OrderProductInfo[];
|
|
8235
|
+
// 经营分账信息
|
|
8236
|
+
operateDivideInfoList?: OperateDivideInfo[];
|
|
7667
8237
|
static names(): { [key: string]: string } {
|
|
7668
8238
|
return {
|
|
7669
8239
|
reqMsgId: 'req_msg_id',
|
|
@@ -7677,6 +8247,7 @@ export class DetailInnerOrderResponse extends $tea.Model {
|
|
|
7677
8247
|
orderFulfillmentInfoList: 'order_fulfillment_info_list',
|
|
7678
8248
|
orderPromiseInfo: 'order_promise_info',
|
|
7679
8249
|
orderProductInfoList: 'order_product_info_list',
|
|
8250
|
+
operateDivideInfoList: 'operate_divide_info_list',
|
|
7680
8251
|
};
|
|
7681
8252
|
}
|
|
7682
8253
|
|
|
@@ -7693,6 +8264,7 @@ export class DetailInnerOrderResponse extends $tea.Model {
|
|
|
7693
8264
|
orderFulfillmentInfoList: { 'type': 'array', 'itemType': OrderFulfillmentInfo },
|
|
7694
8265
|
orderPromiseInfo: OrderPromiseInfo,
|
|
7695
8266
|
orderProductInfoList: { 'type': 'array', 'itemType': OrderProductInfo },
|
|
8267
|
+
operateDivideInfoList: { 'type': 'array', 'itemType': OperateDivideInfo },
|
|
7696
8268
|
};
|
|
7697
8269
|
}
|
|
7698
8270
|
|
|
@@ -8394,6 +8966,220 @@ export class QueryInnerTemplateinstanceResponse extends $tea.Model {
|
|
|
8394
8966
|
}
|
|
8395
8967
|
}
|
|
8396
8968
|
|
|
8969
|
+
export class QueryInnerTenantindirectmainclassRequest extends $tea.Model {
|
|
8970
|
+
// OAuth模式下的授权token
|
|
8971
|
+
authToken?: string;
|
|
8972
|
+
productInstanceId?: string;
|
|
8973
|
+
// 租户id
|
|
8974
|
+
tenantId: string;
|
|
8975
|
+
static names(): { [key: string]: string } {
|
|
8976
|
+
return {
|
|
8977
|
+
authToken: 'auth_token',
|
|
8978
|
+
productInstanceId: 'product_instance_id',
|
|
8979
|
+
tenantId: 'tenant_id',
|
|
8980
|
+
};
|
|
8981
|
+
}
|
|
8982
|
+
|
|
8983
|
+
static types(): { [key: string]: any } {
|
|
8984
|
+
return {
|
|
8985
|
+
authToken: 'string',
|
|
8986
|
+
productInstanceId: 'string',
|
|
8987
|
+
tenantId: 'string',
|
|
8988
|
+
};
|
|
8989
|
+
}
|
|
8990
|
+
|
|
8991
|
+
constructor(map?: { [key: string]: any }) {
|
|
8992
|
+
super(map);
|
|
8993
|
+
}
|
|
8994
|
+
}
|
|
8995
|
+
|
|
8996
|
+
export class QueryInnerTenantindirectmainclassResponse extends $tea.Model {
|
|
8997
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8998
|
+
reqMsgId?: string;
|
|
8999
|
+
// 结果码,一般OK表示调用成功
|
|
9000
|
+
resultCode?: string;
|
|
9001
|
+
// 异常信息的文本描述
|
|
9002
|
+
resultMsg?: string;
|
|
9003
|
+
// 当前开通类目
|
|
9004
|
+
currentIndirectMainClassList?: string[];
|
|
9005
|
+
// 开通说明
|
|
9006
|
+
desc?: string;
|
|
9007
|
+
// 状态
|
|
9008
|
+
// INIT:初始化
|
|
9009
|
+
// AUDIT:审批中
|
|
9010
|
+
// AUDIT_PASSED:审批通过
|
|
9011
|
+
// AUDIT_NOT_PASSED:审批不通过
|
|
9012
|
+
status?: string;
|
|
9013
|
+
// 审核拒绝原因
|
|
9014
|
+
failReason?: string;
|
|
9015
|
+
// 申请开通的类目
|
|
9016
|
+
changingIndirectMainClassList?: string[];
|
|
9017
|
+
static names(): { [key: string]: string } {
|
|
9018
|
+
return {
|
|
9019
|
+
reqMsgId: 'req_msg_id',
|
|
9020
|
+
resultCode: 'result_code',
|
|
9021
|
+
resultMsg: 'result_msg',
|
|
9022
|
+
currentIndirectMainClassList: 'current_indirect_main_class_list',
|
|
9023
|
+
desc: 'desc',
|
|
9024
|
+
status: 'status',
|
|
9025
|
+
failReason: 'fail_reason',
|
|
9026
|
+
changingIndirectMainClassList: 'changing_indirect_main_class_list',
|
|
9027
|
+
};
|
|
9028
|
+
}
|
|
9029
|
+
|
|
9030
|
+
static types(): { [key: string]: any } {
|
|
9031
|
+
return {
|
|
9032
|
+
reqMsgId: 'string',
|
|
9033
|
+
resultCode: 'string',
|
|
9034
|
+
resultMsg: 'string',
|
|
9035
|
+
currentIndirectMainClassList: { 'type': 'array', 'itemType': 'string' },
|
|
9036
|
+
desc: 'string',
|
|
9037
|
+
status: 'string',
|
|
9038
|
+
failReason: 'string',
|
|
9039
|
+
changingIndirectMainClassList: { 'type': 'array', 'itemType': 'string' },
|
|
9040
|
+
};
|
|
9041
|
+
}
|
|
9042
|
+
|
|
9043
|
+
constructor(map?: { [key: string]: any }) {
|
|
9044
|
+
super(map);
|
|
9045
|
+
}
|
|
9046
|
+
}
|
|
9047
|
+
|
|
9048
|
+
export class UpdateInnerTenantindirectmainclassRequest extends $tea.Model {
|
|
9049
|
+
// OAuth模式下的授权token
|
|
9050
|
+
authToken?: string;
|
|
9051
|
+
productInstanceId?: string;
|
|
9052
|
+
// 租户id
|
|
9053
|
+
tenantId: string;
|
|
9054
|
+
// 开通类目
|
|
9055
|
+
indirectMainClassList: string[];
|
|
9056
|
+
// 开通说明
|
|
9057
|
+
//
|
|
9058
|
+
desc?: string;
|
|
9059
|
+
static names(): { [key: string]: string } {
|
|
9060
|
+
return {
|
|
9061
|
+
authToken: 'auth_token',
|
|
9062
|
+
productInstanceId: 'product_instance_id',
|
|
9063
|
+
tenantId: 'tenant_id',
|
|
9064
|
+
indirectMainClassList: 'indirect_main_class_list',
|
|
9065
|
+
desc: 'desc',
|
|
9066
|
+
};
|
|
9067
|
+
}
|
|
9068
|
+
|
|
9069
|
+
static types(): { [key: string]: any } {
|
|
9070
|
+
return {
|
|
9071
|
+
authToken: 'string',
|
|
9072
|
+
productInstanceId: 'string',
|
|
9073
|
+
tenantId: 'string',
|
|
9074
|
+
indirectMainClassList: { 'type': 'array', 'itemType': 'string' },
|
|
9075
|
+
desc: 'string',
|
|
9076
|
+
};
|
|
9077
|
+
}
|
|
9078
|
+
|
|
9079
|
+
constructor(map?: { [key: string]: any }) {
|
|
9080
|
+
super(map);
|
|
9081
|
+
}
|
|
9082
|
+
}
|
|
9083
|
+
|
|
9084
|
+
export class UpdateInnerTenantindirectmainclassResponse extends $tea.Model {
|
|
9085
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
9086
|
+
reqMsgId?: string;
|
|
9087
|
+
// 结果码,一般OK表示调用成功
|
|
9088
|
+
resultCode?: string;
|
|
9089
|
+
// 异常信息的文本描述
|
|
9090
|
+
resultMsg?: string;
|
|
9091
|
+
static names(): { [key: string]: string } {
|
|
9092
|
+
return {
|
|
9093
|
+
reqMsgId: 'req_msg_id',
|
|
9094
|
+
resultCode: 'result_code',
|
|
9095
|
+
resultMsg: 'result_msg',
|
|
9096
|
+
};
|
|
9097
|
+
}
|
|
9098
|
+
|
|
9099
|
+
static types(): { [key: string]: any } {
|
|
9100
|
+
return {
|
|
9101
|
+
reqMsgId: 'string',
|
|
9102
|
+
resultCode: 'string',
|
|
9103
|
+
resultMsg: 'string',
|
|
9104
|
+
};
|
|
9105
|
+
}
|
|
9106
|
+
|
|
9107
|
+
constructor(map?: { [key: string]: any }) {
|
|
9108
|
+
super(map);
|
|
9109
|
+
}
|
|
9110
|
+
}
|
|
9111
|
+
|
|
9112
|
+
export class SubmitInnerTemplatesyncreviewRequest extends $tea.Model {
|
|
9113
|
+
// OAuth模式下的授权token
|
|
9114
|
+
authToken?: string;
|
|
9115
|
+
productInstanceId?: string;
|
|
9116
|
+
// 商户对应租户ID
|
|
9117
|
+
tenantId: string;
|
|
9118
|
+
// 来源魔法库模板code
|
|
9119
|
+
sourceTemplateCode: string;
|
|
9120
|
+
// 目标魔法库模板名称
|
|
9121
|
+
targetTemplateName: string;
|
|
9122
|
+
// 魔法库来源模板版本
|
|
9123
|
+
sourceTemplateVersion: string;
|
|
9124
|
+
static names(): { [key: string]: string } {
|
|
9125
|
+
return {
|
|
9126
|
+
authToken: 'auth_token',
|
|
9127
|
+
productInstanceId: 'product_instance_id',
|
|
9128
|
+
tenantId: 'tenant_id',
|
|
9129
|
+
sourceTemplateCode: 'source_template_code',
|
|
9130
|
+
targetTemplateName: 'target_template_name',
|
|
9131
|
+
sourceTemplateVersion: 'source_template_version',
|
|
9132
|
+
};
|
|
9133
|
+
}
|
|
9134
|
+
|
|
9135
|
+
static types(): { [key: string]: any } {
|
|
9136
|
+
return {
|
|
9137
|
+
authToken: 'string',
|
|
9138
|
+
productInstanceId: 'string',
|
|
9139
|
+
tenantId: 'string',
|
|
9140
|
+
sourceTemplateCode: 'string',
|
|
9141
|
+
targetTemplateName: 'string',
|
|
9142
|
+
sourceTemplateVersion: 'string',
|
|
9143
|
+
};
|
|
9144
|
+
}
|
|
9145
|
+
|
|
9146
|
+
constructor(map?: { [key: string]: any }) {
|
|
9147
|
+
super(map);
|
|
9148
|
+
}
|
|
9149
|
+
}
|
|
9150
|
+
|
|
9151
|
+
export class SubmitInnerTemplatesyncreviewResponse extends $tea.Model {
|
|
9152
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
9153
|
+
reqMsgId?: string;
|
|
9154
|
+
// 结果码,一般OK表示调用成功
|
|
9155
|
+
resultCode?: string;
|
|
9156
|
+
// 异常信息的文本描述
|
|
9157
|
+
resultMsg?: string;
|
|
9158
|
+
// 提交同步上线审核的模板code
|
|
9159
|
+
sourceTemplateCode?: string;
|
|
9160
|
+
static names(): { [key: string]: string } {
|
|
9161
|
+
return {
|
|
9162
|
+
reqMsgId: 'req_msg_id',
|
|
9163
|
+
resultCode: 'result_code',
|
|
9164
|
+
resultMsg: 'result_msg',
|
|
9165
|
+
sourceTemplateCode: 'source_template_code',
|
|
9166
|
+
};
|
|
9167
|
+
}
|
|
9168
|
+
|
|
9169
|
+
static types(): { [key: string]: any } {
|
|
9170
|
+
return {
|
|
9171
|
+
reqMsgId: 'string',
|
|
9172
|
+
resultCode: 'string',
|
|
9173
|
+
resultMsg: 'string',
|
|
9174
|
+
sourceTemplateCode: 'string',
|
|
9175
|
+
};
|
|
9176
|
+
}
|
|
9177
|
+
|
|
9178
|
+
constructor(map?: { [key: string]: any }) {
|
|
9179
|
+
super(map);
|
|
9180
|
+
}
|
|
9181
|
+
}
|
|
9182
|
+
|
|
8397
9183
|
export class CreateInsureRequest extends $tea.Model {
|
|
8398
9184
|
// OAuth模式下的授权token
|
|
8399
9185
|
authToken?: string;
|
|
@@ -9124,8 +9910,11 @@ export class QueryRiskRequest extends $tea.Model {
|
|
|
9124
9910
|
mobile: string;
|
|
9125
9911
|
// 支付宝账户 UserId,智租版可选
|
|
9126
9912
|
alipayUserId?: string;
|
|
9127
|
-
//
|
|
9913
|
+
// 下单渠道,智租版必选。枚举值:支付宝-ALIPAY;微信-WECHAT;独立APP-APP;抖音-DOUYIN;美团-MEITUAN;其他:-OTHER
|
|
9128
9914
|
source?: string;
|
|
9915
|
+
// 风险业务场景,智租版选填。默认值:PRE_RENT。
|
|
9916
|
+
// PRE_RENT - 3c租赁;PRE_RENT_3C - 3c租赁定制;PRE_RENT_PET - 宠物;PRE_RENT_EDU - 教培;PRE_RENT_BEAUTY - 美业;
|
|
9917
|
+
riskBizScene?: string;
|
|
9129
9918
|
// 商品详情,智租版可选
|
|
9130
9919
|
itemDetail?: ItemDetail;
|
|
9131
9920
|
// 价格详情,智租版可选
|
|
@@ -9139,12 +9928,135 @@ export class QueryRiskRequest extends $tea.Model {
|
|
|
9139
9928
|
productName: 'product_name',
|
|
9140
9929
|
userName: 'user_name',
|
|
9141
9930
|
certNo: 'cert_no',
|
|
9142
|
-
mobile: 'mobile',
|
|
9143
|
-
alipayUserId: 'alipay_user_id',
|
|
9144
|
-
source: 'source',
|
|
9145
|
-
|
|
9146
|
-
|
|
9147
|
-
|
|
9931
|
+
mobile: 'mobile',
|
|
9932
|
+
alipayUserId: 'alipay_user_id',
|
|
9933
|
+
source: 'source',
|
|
9934
|
+
riskBizScene: 'risk_biz_scene',
|
|
9935
|
+
itemDetail: 'item_detail',
|
|
9936
|
+
priceDetail: 'price_detail',
|
|
9937
|
+
deliveryDetail: 'delivery_detail',
|
|
9938
|
+
};
|
|
9939
|
+
}
|
|
9940
|
+
|
|
9941
|
+
static types(): { [key: string]: any } {
|
|
9942
|
+
return {
|
|
9943
|
+
authToken: 'string',
|
|
9944
|
+
productInstanceId: 'string',
|
|
9945
|
+
productName: 'string',
|
|
9946
|
+
userName: 'string',
|
|
9947
|
+
certNo: 'string',
|
|
9948
|
+
mobile: 'string',
|
|
9949
|
+
alipayUserId: 'string',
|
|
9950
|
+
source: 'string',
|
|
9951
|
+
riskBizScene: 'string',
|
|
9952
|
+
itemDetail: ItemDetail,
|
|
9953
|
+
priceDetail: PriceDetail,
|
|
9954
|
+
deliveryDetail: DeliveryDetail,
|
|
9955
|
+
};
|
|
9956
|
+
}
|
|
9957
|
+
|
|
9958
|
+
constructor(map?: { [key: string]: any }) {
|
|
9959
|
+
super(map);
|
|
9960
|
+
}
|
|
9961
|
+
}
|
|
9962
|
+
|
|
9963
|
+
export class QueryRiskResponse extends $tea.Model {
|
|
9964
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
9965
|
+
reqMsgId?: string;
|
|
9966
|
+
// 结果码,一般OK表示调用成功
|
|
9967
|
+
resultCode?: string;
|
|
9968
|
+
// 异常信息的文本描述
|
|
9969
|
+
resultMsg?: string;
|
|
9970
|
+
// 模型结果详情
|
|
9971
|
+
models?: RiskModel[];
|
|
9972
|
+
// 智租风控-风控模型结果
|
|
9973
|
+
appletModel?: AppletRiskModel;
|
|
9974
|
+
static names(): { [key: string]: string } {
|
|
9975
|
+
return {
|
|
9976
|
+
reqMsgId: 'req_msg_id',
|
|
9977
|
+
resultCode: 'result_code',
|
|
9978
|
+
resultMsg: 'result_msg',
|
|
9979
|
+
models: 'models',
|
|
9980
|
+
appletModel: 'applet_model',
|
|
9981
|
+
};
|
|
9982
|
+
}
|
|
9983
|
+
|
|
9984
|
+
static types(): { [key: string]: any } {
|
|
9985
|
+
return {
|
|
9986
|
+
reqMsgId: 'string',
|
|
9987
|
+
resultCode: 'string',
|
|
9988
|
+
resultMsg: 'string',
|
|
9989
|
+
models: { 'type': 'array', 'itemType': RiskModel },
|
|
9990
|
+
appletModel: AppletRiskModel,
|
|
9991
|
+
};
|
|
9992
|
+
}
|
|
9993
|
+
|
|
9994
|
+
constructor(map?: { [key: string]: any }) {
|
|
9995
|
+
super(map);
|
|
9996
|
+
}
|
|
9997
|
+
}
|
|
9998
|
+
|
|
9999
|
+
export class QueryRiskGoRequest extends $tea.Model {
|
|
10000
|
+
// OAuth模式下的授权token
|
|
10001
|
+
authToken?: string;
|
|
10002
|
+
productInstanceId?: string;
|
|
10003
|
+
// 风险类型。枚举值:MARKETING_PURCHASE_COMMON 营销抢购风险识别;INDUSTRY_SCALPER_COMMON 行业黄牛风险识别;MARKETING_AWARDING_COMMON 营销发奖风险识别;INDUSTRY_FARMING_COMMON 行业刷单风险识别;INDUSTRY_BADDEBT_COMMON 履约坏账风险识别
|
|
10004
|
+
riskType: string;
|
|
10005
|
+
// 调用行业,枚举值:
|
|
10006
|
+
// insurance 保险;retail 零售;finance 金融行业;logistics 物流行业;city_services 城市服务;medical 医疗服务;digital_media 数媒行业;recycle 回收行业;payment 缴费行业;vehicle 汽车;travel 旅游;air_travel 航旅行业;FMCG 快消零售;education 教育行业;fashion_retail 时尚零售;game_industry 文体行业;rental 租赁;advertisement 广告行业;restaurants 餐饮行业;ticket 票务行业;complexes 综合体行业
|
|
10007
|
+
businessCode: string;
|
|
10008
|
+
// 风险咨询对应的自身业务场景/环节,枚举值:
|
|
10009
|
+
// register 注册;order 下单;payment 支付;login 登录;offline_query 离线查询;inquery 查询;reserve 预约;invitation 邀请;other 其他
|
|
10010
|
+
scene: string;
|
|
10011
|
+
// 支付宝用户 2088 账号
|
|
10012
|
+
userId?: string;
|
|
10013
|
+
// 支付宝用户 open_id 账号。需要注意,user_id 和 open_id 不可同时为空,同时传入时,以 user_id 为准
|
|
10014
|
+
openId?: string;
|
|
10015
|
+
// 支付宝商家 pid,如果风险咨询对象是支付宝商家,则填写pid
|
|
10016
|
+
merPid?: string;
|
|
10017
|
+
// 手机号码,用于直接输入风险咨询对象的手机号码
|
|
10018
|
+
mobileNo?: string;
|
|
10019
|
+
// 身份证号码
|
|
10020
|
+
certNo?: string;
|
|
10021
|
+
// 账户登录 ip
|
|
10022
|
+
ip?: string;
|
|
10023
|
+
// 地理位置,用于输入用户产生交易时的地理位置信息
|
|
10024
|
+
lbs?: string;
|
|
10025
|
+
// 咨询方类型,填写风险咨询中对应的商户或服务商对于蚂蚁的类型。枚举值:direct_isv 直连服务商;indirect_isv 间连服务商;unconn_isv 无关服务商;direct_mer 直连商户;indirect_mer 间连商户;unconn_mer 无关联商户;unknown 其他
|
|
10026
|
+
role?: string;
|
|
10027
|
+
// 可填入活动id唯一值,或其他活动信息
|
|
10028
|
+
activityInfo?: string;
|
|
10029
|
+
// 营销抢购风险识别入参模型
|
|
10030
|
+
purchaseQueryModel?: PurchaseQueryModel;
|
|
10031
|
+
// 行业黄牛风险识别入参模型
|
|
10032
|
+
scalperQueryModel?: ScalperQueryModel;
|
|
10033
|
+
// 营销发奖风险识别入参模型
|
|
10034
|
+
awardingQueryModel?: AwardingQueryModel;
|
|
10035
|
+
// 行业刷单风险识别入参模型
|
|
10036
|
+
farmingQueryModel?: FarmingQueryModel;
|
|
10037
|
+
// 行业履约风险识别入参模型
|
|
10038
|
+
baddebtQueryModel?: BaddebtQueryModel;
|
|
10039
|
+
static names(): { [key: string]: string } {
|
|
10040
|
+
return {
|
|
10041
|
+
authToken: 'auth_token',
|
|
10042
|
+
productInstanceId: 'product_instance_id',
|
|
10043
|
+
riskType: 'risk_type',
|
|
10044
|
+
businessCode: 'business_code',
|
|
10045
|
+
scene: 'scene',
|
|
10046
|
+
userId: 'user_id',
|
|
10047
|
+
openId: 'open_id',
|
|
10048
|
+
merPid: 'mer_pid',
|
|
10049
|
+
mobileNo: 'mobile_no',
|
|
10050
|
+
certNo: 'cert_no',
|
|
10051
|
+
ip: 'ip',
|
|
10052
|
+
lbs: 'lbs',
|
|
10053
|
+
role: 'role',
|
|
10054
|
+
activityInfo: 'activity_info',
|
|
10055
|
+
purchaseQueryModel: 'purchase_query_model',
|
|
10056
|
+
scalperQueryModel: 'scalper_query_model',
|
|
10057
|
+
awardingQueryModel: 'awarding_query_model',
|
|
10058
|
+
farmingQueryModel: 'farming_query_model',
|
|
10059
|
+
baddebtQueryModel: 'baddebt_query_model',
|
|
9148
10060
|
};
|
|
9149
10061
|
}
|
|
9150
10062
|
|
|
@@ -9152,15 +10064,23 @@ export class QueryRiskRequest extends $tea.Model {
|
|
|
9152
10064
|
return {
|
|
9153
10065
|
authToken: 'string',
|
|
9154
10066
|
productInstanceId: 'string',
|
|
9155
|
-
|
|
9156
|
-
|
|
10067
|
+
riskType: 'string',
|
|
10068
|
+
businessCode: 'string',
|
|
10069
|
+
scene: 'string',
|
|
10070
|
+
userId: 'string',
|
|
10071
|
+
openId: 'string',
|
|
10072
|
+
merPid: 'string',
|
|
10073
|
+
mobileNo: 'string',
|
|
9157
10074
|
certNo: 'string',
|
|
9158
|
-
|
|
9159
|
-
|
|
9160
|
-
|
|
9161
|
-
|
|
9162
|
-
|
|
9163
|
-
|
|
10075
|
+
ip: 'string',
|
|
10076
|
+
lbs: 'string',
|
|
10077
|
+
role: 'string',
|
|
10078
|
+
activityInfo: 'string',
|
|
10079
|
+
purchaseQueryModel: PurchaseQueryModel,
|
|
10080
|
+
scalperQueryModel: ScalperQueryModel,
|
|
10081
|
+
awardingQueryModel: AwardingQueryModel,
|
|
10082
|
+
farmingQueryModel: FarmingQueryModel,
|
|
10083
|
+
baddebtQueryModel: BaddebtQueryModel,
|
|
9164
10084
|
};
|
|
9165
10085
|
}
|
|
9166
10086
|
|
|
@@ -9169,24 +10089,21 @@ export class QueryRiskRequest extends $tea.Model {
|
|
|
9169
10089
|
}
|
|
9170
10090
|
}
|
|
9171
10091
|
|
|
9172
|
-
export class
|
|
10092
|
+
export class QueryRiskGoResponse extends $tea.Model {
|
|
9173
10093
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
9174
10094
|
reqMsgId?: string;
|
|
9175
10095
|
// 结果码,一般OK表示调用成功
|
|
9176
10096
|
resultCode?: string;
|
|
9177
10097
|
// 异常信息的文本描述
|
|
9178
10098
|
resultMsg?: string;
|
|
9179
|
-
//
|
|
9180
|
-
|
|
9181
|
-
// 智租风控-风控模型结果
|
|
9182
|
-
appletModel?: AppletRiskModel;
|
|
10099
|
+
// 风险查询结果
|
|
10100
|
+
model?: RiskGoModel;
|
|
9183
10101
|
static names(): { [key: string]: string } {
|
|
9184
10102
|
return {
|
|
9185
10103
|
reqMsgId: 'req_msg_id',
|
|
9186
10104
|
resultCode: 'result_code',
|
|
9187
10105
|
resultMsg: 'result_msg',
|
|
9188
|
-
|
|
9189
|
-
appletModel: 'applet_model',
|
|
10106
|
+
model: 'model',
|
|
9190
10107
|
};
|
|
9191
10108
|
}
|
|
9192
10109
|
|
|
@@ -9195,8 +10112,7 @@ export class QueryRiskResponse extends $tea.Model {
|
|
|
9195
10112
|
reqMsgId: 'string',
|
|
9196
10113
|
resultCode: 'string',
|
|
9197
10114
|
resultMsg: 'string',
|
|
9198
|
-
|
|
9199
|
-
appletModel: AppletRiskModel,
|
|
10115
|
+
model: RiskGoModel,
|
|
9200
10116
|
};
|
|
9201
10117
|
}
|
|
9202
10118
|
|
|
@@ -9213,19 +10129,15 @@ export class AllSignTemplateRequest extends $tea.Model {
|
|
|
9213
10129
|
contractType?: string;
|
|
9214
10130
|
// 商户统一社会信用代码,SIT环境,非融必填
|
|
9215
10131
|
merchantId?: string;
|
|
9216
|
-
//
|
|
9217
|
-
|
|
9218
|
-
fundType?: string;
|
|
9219
|
-
// 查询融资类型时,需要传入资方统一社会信用代码
|
|
9220
|
-
fundId?: string;
|
|
10132
|
+
// 模板id
|
|
10133
|
+
templateId?: string;
|
|
9221
10134
|
static names(): { [key: string]: string } {
|
|
9222
10135
|
return {
|
|
9223
10136
|
authToken: 'auth_token',
|
|
9224
10137
|
productInstanceId: 'product_instance_id',
|
|
9225
10138
|
contractType: 'contract_type',
|
|
9226
10139
|
merchantId: 'merchant_id',
|
|
9227
|
-
|
|
9228
|
-
fundId: 'fund_id',
|
|
10140
|
+
templateId: 'template_id',
|
|
9229
10141
|
};
|
|
9230
10142
|
}
|
|
9231
10143
|
|
|
@@ -9235,8 +10147,7 @@ export class AllSignTemplateRequest extends $tea.Model {
|
|
|
9235
10147
|
productInstanceId: 'string',
|
|
9236
10148
|
contractType: 'string',
|
|
9237
10149
|
merchantId: 'string',
|
|
9238
|
-
|
|
9239
|
-
fundId: 'string',
|
|
10150
|
+
templateId: 'string',
|
|
9240
10151
|
};
|
|
9241
10152
|
}
|
|
9242
10153
|
|
|
@@ -9252,19 +10163,7 @@ export class AllSignTemplateResponse extends $tea.Model {
|
|
|
9252
10163
|
resultCode?: string;
|
|
9253
10164
|
// 异常信息的文本描述
|
|
9254
10165
|
resultMsg?: string;
|
|
9255
|
-
// List<
|
|
9256
|
-
// [
|
|
9257
|
-
// {
|
|
9258
|
-
// "templateCode": "TEST_001",
|
|
9259
|
-
// "tenantId": "BIPCCOQY",
|
|
9260
|
-
// "agreementType": "SERVICE_LEASE",
|
|
9261
|
-
// "fileName": "测试模板之协议签署证明",
|
|
9262
|
-
// "templateId": "f28038577d664015bfc1034c4a125121",
|
|
9263
|
-
// "fieldArgs": "{\"sceneName\":\"测试协议合同签署\",\"title\":\"这是一份证明协议\"}",
|
|
9264
|
-
// "userPos": "[{\"required\":true,\"posPage\":\"1\",\"posX\":\"162.44\",\"posY\":\"425\"}]",
|
|
9265
|
-
// "orgPos": "[{\"required\":true,\"posPage\":\"1\",\"posX\":\"449.99\",\"posY\":\"420.03\"}]"
|
|
9266
|
-
// }
|
|
9267
|
-
// ]
|
|
10166
|
+
// List<JSONObject>格式内容
|
|
9268
10167
|
templateList?: string;
|
|
9269
10168
|
static names(): { [key: string]: string } {
|
|
9270
10169
|
return {
|
|
@@ -9351,6 +10250,8 @@ export class SubmitSignFlowRequest extends $tea.Model {
|
|
|
9351
10250
|
userOrgIdType?: string;
|
|
9352
10251
|
// (企业作为消费者时)公司证件号,无需加密
|
|
9353
10252
|
userOrgIdNumber?: string;
|
|
10253
|
+
// 合并签署是否开启人脸识别(默认true-开启),非合并签署无需设值
|
|
10254
|
+
needFace?: boolean;
|
|
9354
10255
|
static names(): { [key: string]: string } {
|
|
9355
10256
|
return {
|
|
9356
10257
|
authToken: 'auth_token',
|
|
@@ -9382,6 +10283,7 @@ export class SubmitSignFlowRequest extends $tea.Model {
|
|
|
9382
10283
|
userOrgName: 'user_org_name',
|
|
9383
10284
|
userOrgIdType: 'user_org_id_type',
|
|
9384
10285
|
userOrgIdNumber: 'user_org_id_number',
|
|
10286
|
+
needFace: 'need_face',
|
|
9385
10287
|
};
|
|
9386
10288
|
}
|
|
9387
10289
|
|
|
@@ -9416,6 +10318,7 @@ export class SubmitSignFlowRequest extends $tea.Model {
|
|
|
9416
10318
|
userOrgName: 'string',
|
|
9417
10319
|
userOrgIdType: 'string',
|
|
9418
10320
|
userOrgIdNumber: 'string',
|
|
10321
|
+
needFace: 'boolean',
|
|
9419
10322
|
};
|
|
9420
10323
|
}
|
|
9421
10324
|
|
|
@@ -9707,6 +10610,8 @@ export class SubmitFrontSignRequest extends $tea.Model {
|
|
|
9707
10610
|
userOrgIdType?: string;
|
|
9708
10611
|
// (企业作为消费者时)公司名称
|
|
9709
10612
|
userOrgName?: string;
|
|
10613
|
+
// 合并签署是否开启人脸识别(默认true-开启),非合并签署无需设值
|
|
10614
|
+
needFace?: boolean;
|
|
9710
10615
|
static names(): { [key: string]: string } {
|
|
9711
10616
|
return {
|
|
9712
10617
|
authToken: 'auth_token',
|
|
@@ -9738,6 +10643,7 @@ export class SubmitFrontSignRequest extends $tea.Model {
|
|
|
9738
10643
|
userOrgIdNumber: 'user_org_id_number',
|
|
9739
10644
|
userOrgIdType: 'user_org_id_type',
|
|
9740
10645
|
userOrgName: 'user_org_name',
|
|
10646
|
+
needFace: 'need_face',
|
|
9741
10647
|
};
|
|
9742
10648
|
}
|
|
9743
10649
|
|
|
@@ -9772,6 +10678,7 @@ export class SubmitFrontSignRequest extends $tea.Model {
|
|
|
9772
10678
|
userOrgIdNumber: 'string',
|
|
9773
10679
|
userOrgIdType: 'string',
|
|
9774
10680
|
userOrgName: 'string',
|
|
10681
|
+
needFace: 'boolean',
|
|
9775
10682
|
};
|
|
9776
10683
|
}
|
|
9777
10684
|
|
|
@@ -11255,6 +12162,145 @@ export class UpdateTradeOrderResponse extends $tea.Model {
|
|
|
11255
12162
|
}
|
|
11256
12163
|
}
|
|
11257
12164
|
|
|
12165
|
+
export class AddTradeFinanceprecheckRequest extends $tea.Model {
|
|
12166
|
+
// OAuth模式下的授权token
|
|
12167
|
+
authToken?: string;
|
|
12168
|
+
productInstanceId?: string;
|
|
12169
|
+
// order_id
|
|
12170
|
+
orderId: string;
|
|
12171
|
+
// merchant_id
|
|
12172
|
+
merchantId: string;
|
|
12173
|
+
// ["1","2"]
|
|
12174
|
+
fundIdList: string[];
|
|
12175
|
+
static names(): { [key: string]: string } {
|
|
12176
|
+
return {
|
|
12177
|
+
authToken: 'auth_token',
|
|
12178
|
+
productInstanceId: 'product_instance_id',
|
|
12179
|
+
orderId: 'order_id',
|
|
12180
|
+
merchantId: 'merchant_id',
|
|
12181
|
+
fundIdList: 'fund_id_list',
|
|
12182
|
+
};
|
|
12183
|
+
}
|
|
12184
|
+
|
|
12185
|
+
static types(): { [key: string]: any } {
|
|
12186
|
+
return {
|
|
12187
|
+
authToken: 'string',
|
|
12188
|
+
productInstanceId: 'string',
|
|
12189
|
+
orderId: 'string',
|
|
12190
|
+
merchantId: 'string',
|
|
12191
|
+
fundIdList: { 'type': 'array', 'itemType': 'string' },
|
|
12192
|
+
};
|
|
12193
|
+
}
|
|
12194
|
+
|
|
12195
|
+
constructor(map?: { [key: string]: any }) {
|
|
12196
|
+
super(map);
|
|
12197
|
+
}
|
|
12198
|
+
}
|
|
12199
|
+
|
|
12200
|
+
export class AddTradeFinanceprecheckResponse extends $tea.Model {
|
|
12201
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
12202
|
+
reqMsgId?: string;
|
|
12203
|
+
// 结果码,一般OK表示调用成功
|
|
12204
|
+
resultCode?: string;
|
|
12205
|
+
// 异常信息的文本描述
|
|
12206
|
+
resultMsg?: string;
|
|
12207
|
+
// merchant_id
|
|
12208
|
+
merchantId?: string;
|
|
12209
|
+
// order_id
|
|
12210
|
+
orderId?: string;
|
|
12211
|
+
// fund_candidates
|
|
12212
|
+
// List<FundCompanyInfo> 的jsonArray.toString
|
|
12213
|
+
fundCandidates?: string;
|
|
12214
|
+
static names(): { [key: string]: string } {
|
|
12215
|
+
return {
|
|
12216
|
+
reqMsgId: 'req_msg_id',
|
|
12217
|
+
resultCode: 'result_code',
|
|
12218
|
+
resultMsg: 'result_msg',
|
|
12219
|
+
merchantId: 'merchant_id',
|
|
12220
|
+
orderId: 'order_id',
|
|
12221
|
+
fundCandidates: 'fund_candidates',
|
|
12222
|
+
};
|
|
12223
|
+
}
|
|
12224
|
+
|
|
12225
|
+
static types(): { [key: string]: any } {
|
|
12226
|
+
return {
|
|
12227
|
+
reqMsgId: 'string',
|
|
12228
|
+
resultCode: 'string',
|
|
12229
|
+
resultMsg: 'string',
|
|
12230
|
+
merchantId: 'string',
|
|
12231
|
+
orderId: 'string',
|
|
12232
|
+
fundCandidates: 'string',
|
|
12233
|
+
};
|
|
12234
|
+
}
|
|
12235
|
+
|
|
12236
|
+
constructor(map?: { [key: string]: any }) {
|
|
12237
|
+
super(map);
|
|
12238
|
+
}
|
|
12239
|
+
}
|
|
12240
|
+
|
|
12241
|
+
export class GetTradeOrderfinanceinfoRequest extends $tea.Model {
|
|
12242
|
+
// OAuth模式下的授权token
|
|
12243
|
+
authToken?: string;
|
|
12244
|
+
productInstanceId?: string;
|
|
12245
|
+
// 订单Id
|
|
12246
|
+
orderId: string;
|
|
12247
|
+
// 商户社会信用代码
|
|
12248
|
+
merchantId: string;
|
|
12249
|
+
static names(): { [key: string]: string } {
|
|
12250
|
+
return {
|
|
12251
|
+
authToken: 'auth_token',
|
|
12252
|
+
productInstanceId: 'product_instance_id',
|
|
12253
|
+
orderId: 'order_id',
|
|
12254
|
+
merchantId: 'merchant_id',
|
|
12255
|
+
};
|
|
12256
|
+
}
|
|
12257
|
+
|
|
12258
|
+
static types(): { [key: string]: any } {
|
|
12259
|
+
return {
|
|
12260
|
+
authToken: 'string',
|
|
12261
|
+
productInstanceId: 'string',
|
|
12262
|
+
orderId: 'string',
|
|
12263
|
+
merchantId: 'string',
|
|
12264
|
+
};
|
|
12265
|
+
}
|
|
12266
|
+
|
|
12267
|
+
constructor(map?: { [key: string]: any }) {
|
|
12268
|
+
super(map);
|
|
12269
|
+
}
|
|
12270
|
+
}
|
|
12271
|
+
|
|
12272
|
+
export class GetTradeOrderfinanceinfoResponse extends $tea.Model {
|
|
12273
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
12274
|
+
reqMsgId?: string;
|
|
12275
|
+
// 结果码,一般OK表示调用成功
|
|
12276
|
+
resultCode?: string;
|
|
12277
|
+
// 异常信息的文本描述
|
|
12278
|
+
resultMsg?: string;
|
|
12279
|
+
// 订单融资信息
|
|
12280
|
+
responseData?: string;
|
|
12281
|
+
static names(): { [key: string]: string } {
|
|
12282
|
+
return {
|
|
12283
|
+
reqMsgId: 'req_msg_id',
|
|
12284
|
+
resultCode: 'result_code',
|
|
12285
|
+
resultMsg: 'result_msg',
|
|
12286
|
+
responseData: 'response_data',
|
|
12287
|
+
};
|
|
12288
|
+
}
|
|
12289
|
+
|
|
12290
|
+
static types(): { [key: string]: any } {
|
|
12291
|
+
return {
|
|
12292
|
+
reqMsgId: 'string',
|
|
12293
|
+
resultCode: 'string',
|
|
12294
|
+
resultMsg: 'string',
|
|
12295
|
+
responseData: 'string',
|
|
12296
|
+
};
|
|
12297
|
+
}
|
|
12298
|
+
|
|
12299
|
+
constructor(map?: { [key: string]: any }) {
|
|
12300
|
+
super(map);
|
|
12301
|
+
}
|
|
12302
|
+
}
|
|
12303
|
+
|
|
11258
12304
|
export class CreateWithholdSignRequest extends $tea.Model {
|
|
11259
12305
|
// OAuth模式下的授权token
|
|
11260
12306
|
authToken?: string;
|
|
@@ -11552,12 +12598,12 @@ export class RepayWithholdPlanRequest extends $tea.Model {
|
|
|
11552
12598
|
productInstanceId?: string;
|
|
11553
12599
|
// 订单id 长度不可超过50
|
|
11554
12600
|
orderId: string;
|
|
11555
|
-
//
|
|
11556
|
-
periodNum
|
|
11557
|
-
//
|
|
11558
|
-
gmtPay
|
|
12601
|
+
// 第几期,单期取消必填
|
|
12602
|
+
periodNum?: number;
|
|
12603
|
+
// 取消订单某一期代扣计划中以其他方式还款金额,单位为分,单期取消必填
|
|
12604
|
+
gmtPay?: string;
|
|
11559
12605
|
// 取消订单某一期代扣计划中以其他方式还款金额,单位为分
|
|
11560
|
-
payOffAmount
|
|
12606
|
+
payOffAmount?: number;
|
|
11561
12607
|
// 变更其他方式还款
|
|
11562
12608
|
// WECHAT:微信;
|
|
11563
12609
|
// BANK:银行
|
|
@@ -11567,6 +12613,12 @@ export class RepayWithholdPlanRequest extends $tea.Model {
|
|
|
11567
12613
|
payOffNo?: string;
|
|
11568
12614
|
// 其他方式还款银行名称,还款方式为银行时必填
|
|
11569
12615
|
payOffBankName?: string;
|
|
12616
|
+
// 操作,默认为单期取消;
|
|
12617
|
+
// 多期取消:MULTI_CANCEL
|
|
12618
|
+
// 单期取消:SINGLE_CANCEL
|
|
12619
|
+
operation?: string;
|
|
12620
|
+
// 取消列表,多期取消必填
|
|
12621
|
+
cancelList?: SingleCancelModel[];
|
|
11570
12622
|
static names(): { [key: string]: string } {
|
|
11571
12623
|
return {
|
|
11572
12624
|
authToken: 'auth_token',
|
|
@@ -11578,6 +12630,8 @@ export class RepayWithholdPlanRequest extends $tea.Model {
|
|
|
11578
12630
|
payOffType: 'pay_off_type',
|
|
11579
12631
|
payOffNo: 'pay_off_no',
|
|
11580
12632
|
payOffBankName: 'pay_off_bank_name',
|
|
12633
|
+
operation: 'operation',
|
|
12634
|
+
cancelList: 'cancel_list',
|
|
11581
12635
|
};
|
|
11582
12636
|
}
|
|
11583
12637
|
|
|
@@ -11592,6 +12646,8 @@ export class RepayWithholdPlanRequest extends $tea.Model {
|
|
|
11592
12646
|
payOffType: 'string',
|
|
11593
12647
|
payOffNo: 'string',
|
|
11594
12648
|
payOffBankName: 'string',
|
|
12649
|
+
operation: 'string',
|
|
12650
|
+
cancelList: { 'type': 'array', 'itemType': SingleCancelModel },
|
|
11595
12651
|
};
|
|
11596
12652
|
}
|
|
11597
12653
|
|
|
@@ -12468,7 +13524,7 @@ export default class Client {
|
|
|
12468
13524
|
req_msg_id: AntchainUtil.getNonce(),
|
|
12469
13525
|
access_key: this._accessKeyId,
|
|
12470
13526
|
base_sdk_version: "TeaSDK-2.0",
|
|
12471
|
-
sdk_version: "1.11
|
|
13527
|
+
sdk_version: "1.12.11",
|
|
12472
13528
|
_prod_code: "ATO",
|
|
12473
13529
|
_prod_channel: "undefined",
|
|
12474
13530
|
};
|
|
@@ -12956,6 +14012,25 @@ export default class Client {
|
|
|
12956
14012
|
return $tea.cast<QueryFundCompensateaccountResponse>(await this.doRequest("1.0", "antchain.ato.fund.compensateaccount.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryFundCompensateaccountResponse({}));
|
|
12957
14013
|
}
|
|
12958
14014
|
|
|
14015
|
+
/**
|
|
14016
|
+
* Description: 资方查询订单融资信息
|
|
14017
|
+
* Summary: 资方查询订单融资信息
|
|
14018
|
+
*/
|
|
14019
|
+
async getFundOrderfinanceinfo(request: GetFundOrderfinanceinfoRequest): Promise<GetFundOrderfinanceinfoResponse> {
|
|
14020
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
14021
|
+
let headers : {[key: string ]: string} = { };
|
|
14022
|
+
return await this.getFundOrderfinanceinfoEx(request, headers, runtime);
|
|
14023
|
+
}
|
|
14024
|
+
|
|
14025
|
+
/**
|
|
14026
|
+
* Description: 资方查询订单融资信息
|
|
14027
|
+
* Summary: 资方查询订单融资信息
|
|
14028
|
+
*/
|
|
14029
|
+
async getFundOrderfinanceinfoEx(request: GetFundOrderfinanceinfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetFundOrderfinanceinfoResponse> {
|
|
14030
|
+
Util.validateModel(request);
|
|
14031
|
+
return $tea.cast<GetFundOrderfinanceinfoResponse>(await this.doRequest("1.0", "antchain.ato.fund.orderfinanceinfo.get", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new GetFundOrderfinanceinfoResponse({}));
|
|
14032
|
+
}
|
|
14033
|
+
|
|
12959
14034
|
/**
|
|
12960
14035
|
* Description: 内部调用,商品信息获取
|
|
12961
14036
|
* Summary: 商品信息获取
|
|
@@ -14212,6 +15287,63 @@ export default class Client {
|
|
|
14212
15287
|
return $tea.cast<QueryInnerTemplateinstanceResponse>(await this.doRequest("1.0", "antchain.ato.inner.templateinstance.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerTemplateinstanceResponse({}));
|
|
14213
15288
|
}
|
|
14214
15289
|
|
|
15290
|
+
/**
|
|
15291
|
+
* Description: 查询租户类目信息详情
|
|
15292
|
+
* Summary: 查询租户类目信息详情
|
|
15293
|
+
*/
|
|
15294
|
+
async queryInnerTenantindirectmainclass(request: QueryInnerTenantindirectmainclassRequest): Promise<QueryInnerTenantindirectmainclassResponse> {
|
|
15295
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
15296
|
+
let headers : {[key: string ]: string} = { };
|
|
15297
|
+
return await this.queryInnerTenantindirectmainclassEx(request, headers, runtime);
|
|
15298
|
+
}
|
|
15299
|
+
|
|
15300
|
+
/**
|
|
15301
|
+
* Description: 查询租户类目信息详情
|
|
15302
|
+
* Summary: 查询租户类目信息详情
|
|
15303
|
+
*/
|
|
15304
|
+
async queryInnerTenantindirectmainclassEx(request: QueryInnerTenantindirectmainclassRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerTenantindirectmainclassResponse> {
|
|
15305
|
+
Util.validateModel(request);
|
|
15306
|
+
return $tea.cast<QueryInnerTenantindirectmainclassResponse>(await this.doRequest("1.0", "antchain.ato.inner.tenantindirectmainclass.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerTenantindirectmainclassResponse({}));
|
|
15307
|
+
}
|
|
15308
|
+
|
|
15309
|
+
/**
|
|
15310
|
+
* Description: 修改租户间联类目类目信息
|
|
15311
|
+
* Summary: 修改租户间联类目类目信息
|
|
15312
|
+
*/
|
|
15313
|
+
async updateInnerTenantindirectmainclass(request: UpdateInnerTenantindirectmainclassRequest): Promise<UpdateInnerTenantindirectmainclassResponse> {
|
|
15314
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
15315
|
+
let headers : {[key: string ]: string} = { };
|
|
15316
|
+
return await this.updateInnerTenantindirectmainclassEx(request, headers, runtime);
|
|
15317
|
+
}
|
|
15318
|
+
|
|
15319
|
+
/**
|
|
15320
|
+
* Description: 修改租户间联类目类目信息
|
|
15321
|
+
* Summary: 修改租户间联类目类目信息
|
|
15322
|
+
*/
|
|
15323
|
+
async updateInnerTenantindirectmainclassEx(request: UpdateInnerTenantindirectmainclassRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateInnerTenantindirectmainclassResponse> {
|
|
15324
|
+
Util.validateModel(request);
|
|
15325
|
+
return $tea.cast<UpdateInnerTenantindirectmainclassResponse>(await this.doRequest("1.0", "antchain.ato.inner.tenantindirectmainclass.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateInnerTenantindirectmainclassResponse({}));
|
|
15326
|
+
}
|
|
15327
|
+
|
|
15328
|
+
/**
|
|
15329
|
+
* Description: 模板同步上线时强管控字段校验未通过提交后台审核
|
|
15330
|
+
* Summary: 模板同步上线审核提交
|
|
15331
|
+
*/
|
|
15332
|
+
async submitInnerTemplatesyncreview(request: SubmitInnerTemplatesyncreviewRequest): Promise<SubmitInnerTemplatesyncreviewResponse> {
|
|
15333
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
15334
|
+
let headers : {[key: string ]: string} = { };
|
|
15335
|
+
return await this.submitInnerTemplatesyncreviewEx(request, headers, runtime);
|
|
15336
|
+
}
|
|
15337
|
+
|
|
15338
|
+
/**
|
|
15339
|
+
* Description: 模板同步上线时强管控字段校验未通过提交后台审核
|
|
15340
|
+
* Summary: 模板同步上线审核提交
|
|
15341
|
+
*/
|
|
15342
|
+
async submitInnerTemplatesyncreviewEx(request: SubmitInnerTemplatesyncreviewRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerTemplatesyncreviewResponse> {
|
|
15343
|
+
Util.validateModel(request);
|
|
15344
|
+
return $tea.cast<SubmitInnerTemplatesyncreviewResponse>(await this.doRequest("1.0", "antchain.ato.inner.templatesyncreview.submit", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SubmitInnerTemplatesyncreviewResponse({}));
|
|
15345
|
+
}
|
|
15346
|
+
|
|
14215
15347
|
/**
|
|
14216
15348
|
* Description: 一键投保
|
|
14217
15349
|
* Summary: 投保
|
|
@@ -14402,6 +15534,25 @@ export default class Client {
|
|
|
14402
15534
|
return $tea.cast<QueryRiskResponse>(await this.doRequest("1.0", "antchain.ato.risk.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryRiskResponse({}));
|
|
14403
15535
|
}
|
|
14404
15536
|
|
|
15537
|
+
/**
|
|
15538
|
+
* Description: 云 api 发起风控分析,获取风险评估
|
|
15539
|
+
* Summary: 云 api 发起风控分析,获取风险评估
|
|
15540
|
+
*/
|
|
15541
|
+
async queryRiskGo(request: QueryRiskGoRequest): Promise<QueryRiskGoResponse> {
|
|
15542
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
15543
|
+
let headers : {[key: string ]: string} = { };
|
|
15544
|
+
return await this.queryRiskGoEx(request, headers, runtime);
|
|
15545
|
+
}
|
|
15546
|
+
|
|
15547
|
+
/**
|
|
15548
|
+
* Description: 云 api 发起风控分析,获取风险评估
|
|
15549
|
+
* Summary: 云 api 发起风控分析,获取风险评估
|
|
15550
|
+
*/
|
|
15551
|
+
async queryRiskGoEx(request: QueryRiskGoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryRiskGoResponse> {
|
|
15552
|
+
Util.validateModel(request);
|
|
15553
|
+
return $tea.cast<QueryRiskGoResponse>(await this.doRequest("1.0", "antchain.ato.risk.go.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryRiskGoResponse({}));
|
|
15554
|
+
}
|
|
15555
|
+
|
|
14405
15556
|
/**
|
|
14406
15557
|
* Description: 电子合同签署的合同模板查询服务
|
|
14407
15558
|
* Summary: 电子合同签署的合同模板查询服务
|
|
@@ -14921,6 +16072,44 @@ export default class Client {
|
|
|
14921
16072
|
return $tea.cast<UpdateTradeOrderResponse>(await this.doRequest("1.0", "antchain.ato.trade.order.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateTradeOrderResponse({}));
|
|
14922
16073
|
}
|
|
14923
16074
|
|
|
16075
|
+
/**
|
|
16076
|
+
* Description: 融资订单追加预审资金方
|
|
16077
|
+
* Summary: 融资订单追加预审资金方
|
|
16078
|
+
*/
|
|
16079
|
+
async addTradeFinanceprecheck(request: AddTradeFinanceprecheckRequest): Promise<AddTradeFinanceprecheckResponse> {
|
|
16080
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16081
|
+
let headers : {[key: string ]: string} = { };
|
|
16082
|
+
return await this.addTradeFinanceprecheckEx(request, headers, runtime);
|
|
16083
|
+
}
|
|
16084
|
+
|
|
16085
|
+
/**
|
|
16086
|
+
* Description: 融资订单追加预审资金方
|
|
16087
|
+
* Summary: 融资订单追加预审资金方
|
|
16088
|
+
*/
|
|
16089
|
+
async addTradeFinanceprecheckEx(request: AddTradeFinanceprecheckRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<AddTradeFinanceprecheckResponse> {
|
|
16090
|
+
Util.validateModel(request);
|
|
16091
|
+
return $tea.cast<AddTradeFinanceprecheckResponse>(await this.doRequest("1.0", "antchain.ato.trade.financeprecheck.add", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new AddTradeFinanceprecheckResponse({}));
|
|
16092
|
+
}
|
|
16093
|
+
|
|
16094
|
+
/**
|
|
16095
|
+
* Description: 订单融资信息查询接口
|
|
16096
|
+
* Summary: 订单融资信息查询接口
|
|
16097
|
+
*/
|
|
16098
|
+
async getTradeOrderfinanceinfo(request: GetTradeOrderfinanceinfoRequest): Promise<GetTradeOrderfinanceinfoResponse> {
|
|
16099
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16100
|
+
let headers : {[key: string ]: string} = { };
|
|
16101
|
+
return await this.getTradeOrderfinanceinfoEx(request, headers, runtime);
|
|
16102
|
+
}
|
|
16103
|
+
|
|
16104
|
+
/**
|
|
16105
|
+
* Description: 订单融资信息查询接口
|
|
16106
|
+
* Summary: 订单融资信息查询接口
|
|
16107
|
+
*/
|
|
16108
|
+
async getTradeOrderfinanceinfoEx(request: GetTradeOrderfinanceinfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetTradeOrderfinanceinfoResponse> {
|
|
16109
|
+
Util.validateModel(request);
|
|
16110
|
+
return $tea.cast<GetTradeOrderfinanceinfoResponse>(await this.doRequest("1.0", "antchain.ato.trade.orderfinanceinfo.get", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new GetTradeOrderfinanceinfoResponse({}));
|
|
16111
|
+
}
|
|
16112
|
+
|
|
14924
16113
|
/**
|
|
14925
16114
|
* Description: 代扣签约创建
|
|
14926
16115
|
* Summary: 代扣签约
|
|
@@ -14999,9 +16188,9 @@ export default class Client {
|
|
|
14999
16188
|
|
|
15000
16189
|
/**
|
|
15001
16190
|
* Description: 重要说明:
|
|
15002
|
-
1.
|
|
16191
|
+
1. 这个接口是取消订单某一、多期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
15003
16192
|
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
15004
|
-
* Summary:
|
|
16193
|
+
* Summary: 单期多期代扣取消
|
|
15005
16194
|
*/
|
|
15006
16195
|
async repayWithholdPlan(request: RepayWithholdPlanRequest): Promise<RepayWithholdPlanResponse> {
|
|
15007
16196
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -15011,9 +16200,9 @@ export default class Client {
|
|
|
15011
16200
|
|
|
15012
16201
|
/**
|
|
15013
16202
|
* Description: 重要说明:
|
|
15014
|
-
1.
|
|
16203
|
+
1. 这个接口是取消订单某一、多期代扣计划中以其他方式还款的金额,取消之后代扣不再执行该期计划。
|
|
15015
16204
|
2. 对通过其他方式还款的第三方单号留存;例如:银行流水号或微信流水号。
|
|
15016
|
-
* Summary:
|
|
16205
|
+
* Summary: 单期多期代扣取消
|
|
15017
16206
|
*/
|
|
15018
16207
|
async repayWithholdPlanEx(request: RepayWithholdPlanRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RepayWithholdPlanResponse> {
|
|
15019
16208
|
Util.validateModel(request);
|