@antchain/ato 1.13.11 → 1.13.15
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 +259 -0
- package/dist/client.js +389 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +558 -1
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -1753,6 +1753,50 @@ export class MarketingScoreInfo extends $tea.Model {
|
|
|
1753
1753
|
}
|
|
1754
1754
|
}
|
|
1755
1755
|
|
|
1756
|
+
// 待办信息
|
|
1757
|
+
export class PendingEventInfo extends $tea.Model {
|
|
1758
|
+
// 事件id
|
|
1759
|
+
eventId?: string;
|
|
1760
|
+
// 通知:NOTIFICATION
|
|
1761
|
+
// 确认函:CONFIRMATION
|
|
1762
|
+
type?: string;
|
|
1763
|
+
// ("PENDING","待办中"), ("CONFIRMED","确认"),
|
|
1764
|
+
// ("REJECTED","已拒绝")
|
|
1765
|
+
// ("FAILED","失败"),("EXPIRED","已过期");
|
|
1766
|
+
status?: string;
|
|
1767
|
+
// 待办内容主题
|
|
1768
|
+
contentSubject?: string;
|
|
1769
|
+
// 事件有效期开始
|
|
1770
|
+
effectiveStartTime?: string;
|
|
1771
|
+
// 事件有效期结束
|
|
1772
|
+
effectiveEndTime?: string;
|
|
1773
|
+
static names(): { [key: string]: string } {
|
|
1774
|
+
return {
|
|
1775
|
+
eventId: 'event_id',
|
|
1776
|
+
type: 'type',
|
|
1777
|
+
status: 'status',
|
|
1778
|
+
contentSubject: 'content_subject',
|
|
1779
|
+
effectiveStartTime: 'effective_start_time',
|
|
1780
|
+
effectiveEndTime: 'effective_end_time',
|
|
1781
|
+
};
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
static types(): { [key: string]: any } {
|
|
1785
|
+
return {
|
|
1786
|
+
eventId: 'string',
|
|
1787
|
+
type: 'string',
|
|
1788
|
+
status: 'string',
|
|
1789
|
+
contentSubject: 'string',
|
|
1790
|
+
effectiveStartTime: 'string',
|
|
1791
|
+
effectiveEndTime: 'string',
|
|
1792
|
+
};
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
constructor(map?: { [key: string]: any }) {
|
|
1796
|
+
super(map);
|
|
1797
|
+
}
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1756
1800
|
// 智租风控-商品价格
|
|
1757
1801
|
export class PriceDetail extends $tea.Model {
|
|
1758
1802
|
// 商品租赁期数
|
|
@@ -2166,6 +2210,35 @@ export class OrderProductInfo extends $tea.Model {
|
|
|
2166
2210
|
}
|
|
2167
2211
|
}
|
|
2168
2212
|
|
|
2213
|
+
// 用信订单信息
|
|
2214
|
+
export class CreditUtilizationOrder extends $tea.Model {
|
|
2215
|
+
// 123
|
|
2216
|
+
orderId: string;
|
|
2217
|
+
// 订单用信额度,单位为分
|
|
2218
|
+
orderCreditLine: number;
|
|
2219
|
+
// 订单商户应还金额,单位为分
|
|
2220
|
+
orderMerchantRepaymentMoney: number;
|
|
2221
|
+
static names(): { [key: string]: string } {
|
|
2222
|
+
return {
|
|
2223
|
+
orderId: 'order_id',
|
|
2224
|
+
orderCreditLine: 'order_credit_line',
|
|
2225
|
+
orderMerchantRepaymentMoney: 'order_merchant_repayment_money',
|
|
2226
|
+
};
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2229
|
+
static types(): { [key: string]: any } {
|
|
2230
|
+
return {
|
|
2231
|
+
orderId: 'string',
|
|
2232
|
+
orderCreditLine: 'number',
|
|
2233
|
+
orderMerchantRepaymentMoney: 'number',
|
|
2234
|
+
};
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
constructor(map?: { [key: string]: any }) {
|
|
2238
|
+
super(map);
|
|
2239
|
+
}
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2169
2242
|
// 主动支付单据
|
|
2170
2243
|
export class ActivePayOrder extends $tea.Model {
|
|
2171
2244
|
// 支付宝支付订单号,用于拉起主动支付页面
|
|
@@ -4179,6 +4252,93 @@ export class QueryFundDividerelationResponse extends $tea.Model {
|
|
|
4179
4252
|
}
|
|
4180
4253
|
}
|
|
4181
4254
|
|
|
4255
|
+
export class ApplyFundCreditutilizationRequest extends $tea.Model {
|
|
4256
|
+
// OAuth模式下的授权token
|
|
4257
|
+
authToken?: string;
|
|
4258
|
+
productInstanceId?: string;
|
|
4259
|
+
// 订单列表
|
|
4260
|
+
orderList: CreditUtilizationOrder[];
|
|
4261
|
+
// 商户租户id
|
|
4262
|
+
tenantId: string;
|
|
4263
|
+
// 商户统一社会信用代码
|
|
4264
|
+
merchantId: string;
|
|
4265
|
+
// 资方统一社会信用代码
|
|
4266
|
+
fundId: string;
|
|
4267
|
+
// 授信Id
|
|
4268
|
+
grantingId: string;
|
|
4269
|
+
// 用信授权id
|
|
4270
|
+
utilizationAuthId: string;
|
|
4271
|
+
// 用信id, 需保证唯一性
|
|
4272
|
+
utilizationId: string;
|
|
4273
|
+
static names(): { [key: string]: string } {
|
|
4274
|
+
return {
|
|
4275
|
+
authToken: 'auth_token',
|
|
4276
|
+
productInstanceId: 'product_instance_id',
|
|
4277
|
+
orderList: 'order_list',
|
|
4278
|
+
tenantId: 'tenant_id',
|
|
4279
|
+
merchantId: 'merchant_id',
|
|
4280
|
+
fundId: 'fund_id',
|
|
4281
|
+
grantingId: 'granting_id',
|
|
4282
|
+
utilizationAuthId: 'utilization_auth_id',
|
|
4283
|
+
utilizationId: 'utilization_id',
|
|
4284
|
+
};
|
|
4285
|
+
}
|
|
4286
|
+
|
|
4287
|
+
static types(): { [key: string]: any } {
|
|
4288
|
+
return {
|
|
4289
|
+
authToken: 'string',
|
|
4290
|
+
productInstanceId: 'string',
|
|
4291
|
+
orderList: { 'type': 'array', 'itemType': CreditUtilizationOrder },
|
|
4292
|
+
tenantId: 'string',
|
|
4293
|
+
merchantId: 'string',
|
|
4294
|
+
fundId: 'string',
|
|
4295
|
+
grantingId: 'string',
|
|
4296
|
+
utilizationAuthId: 'string',
|
|
4297
|
+
utilizationId: 'string',
|
|
4298
|
+
};
|
|
4299
|
+
}
|
|
4300
|
+
|
|
4301
|
+
constructor(map?: { [key: string]: any }) {
|
|
4302
|
+
super(map);
|
|
4303
|
+
}
|
|
4304
|
+
}
|
|
4305
|
+
|
|
4306
|
+
export class ApplyFundCreditutilizationResponse extends $tea.Model {
|
|
4307
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
4308
|
+
reqMsgId?: string;
|
|
4309
|
+
// 结果码,一般OK表示调用成功
|
|
4310
|
+
resultCode?: string;
|
|
4311
|
+
// 异常信息的文本描述
|
|
4312
|
+
resultMsg?: string;
|
|
4313
|
+
// 用信Id
|
|
4314
|
+
utilizationId?: string;
|
|
4315
|
+
// 用信授权id
|
|
4316
|
+
utilizationAuthId?: string;
|
|
4317
|
+
static names(): { [key: string]: string } {
|
|
4318
|
+
return {
|
|
4319
|
+
reqMsgId: 'req_msg_id',
|
|
4320
|
+
resultCode: 'result_code',
|
|
4321
|
+
resultMsg: 'result_msg',
|
|
4322
|
+
utilizationId: 'utilization_id',
|
|
4323
|
+
utilizationAuthId: 'utilization_auth_id',
|
|
4324
|
+
};
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
static types(): { [key: string]: any } {
|
|
4328
|
+
return {
|
|
4329
|
+
reqMsgId: 'string',
|
|
4330
|
+
resultCode: 'string',
|
|
4331
|
+
resultMsg: 'string',
|
|
4332
|
+
utilizationId: 'string',
|
|
4333
|
+
utilizationAuthId: 'string',
|
|
4334
|
+
};
|
|
4335
|
+
}
|
|
4336
|
+
|
|
4337
|
+
constructor(map?: { [key: string]: any }) {
|
|
4338
|
+
super(map);
|
|
4339
|
+
}
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4182
4342
|
export class GetInnerProductRequest extends $tea.Model {
|
|
4183
4343
|
// OAuth模式下的授权token
|
|
4184
4344
|
authToken?: string;
|
|
@@ -9335,6 +9495,306 @@ export class SubmitInnerTemplatesyncreviewResponse extends $tea.Model {
|
|
|
9335
9495
|
}
|
|
9336
9496
|
}
|
|
9337
9497
|
|
|
9498
|
+
export class SubmitInnerPendingeventRequest extends $tea.Model {
|
|
9499
|
+
// OAuth模式下的授权token
|
|
9500
|
+
authToken?: string;
|
|
9501
|
+
productInstanceId?: string;
|
|
9502
|
+
// 租户id
|
|
9503
|
+
tenantId: string;
|
|
9504
|
+
// 待办事件id
|
|
9505
|
+
eventId: string;
|
|
9506
|
+
// 商家处理动作
|
|
9507
|
+
// REJECT拒绝,APPROVE 同意
|
|
9508
|
+
action: string;
|
|
9509
|
+
// 操作人
|
|
9510
|
+
operator: string;
|
|
9511
|
+
static names(): { [key: string]: string } {
|
|
9512
|
+
return {
|
|
9513
|
+
authToken: 'auth_token',
|
|
9514
|
+
productInstanceId: 'product_instance_id',
|
|
9515
|
+
tenantId: 'tenant_id',
|
|
9516
|
+
eventId: 'event_id',
|
|
9517
|
+
action: 'action',
|
|
9518
|
+
operator: 'operator',
|
|
9519
|
+
};
|
|
9520
|
+
}
|
|
9521
|
+
|
|
9522
|
+
static types(): { [key: string]: any } {
|
|
9523
|
+
return {
|
|
9524
|
+
authToken: 'string',
|
|
9525
|
+
productInstanceId: 'string',
|
|
9526
|
+
tenantId: 'string',
|
|
9527
|
+
eventId: 'string',
|
|
9528
|
+
action: 'string',
|
|
9529
|
+
operator: 'string',
|
|
9530
|
+
};
|
|
9531
|
+
}
|
|
9532
|
+
|
|
9533
|
+
constructor(map?: { [key: string]: any }) {
|
|
9534
|
+
super(map);
|
|
9535
|
+
}
|
|
9536
|
+
}
|
|
9537
|
+
|
|
9538
|
+
export class SubmitInnerPendingeventResponse extends $tea.Model {
|
|
9539
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
9540
|
+
reqMsgId?: string;
|
|
9541
|
+
// 结果码,一般OK表示调用成功
|
|
9542
|
+
resultCode?: string;
|
|
9543
|
+
// 异常信息的文本描述
|
|
9544
|
+
resultMsg?: string;
|
|
9545
|
+
static names(): { [key: string]: string } {
|
|
9546
|
+
return {
|
|
9547
|
+
reqMsgId: 'req_msg_id',
|
|
9548
|
+
resultCode: 'result_code',
|
|
9549
|
+
resultMsg: 'result_msg',
|
|
9550
|
+
};
|
|
9551
|
+
}
|
|
9552
|
+
|
|
9553
|
+
static types(): { [key: string]: any } {
|
|
9554
|
+
return {
|
|
9555
|
+
reqMsgId: 'string',
|
|
9556
|
+
resultCode: 'string',
|
|
9557
|
+
resultMsg: 'string',
|
|
9558
|
+
};
|
|
9559
|
+
}
|
|
9560
|
+
|
|
9561
|
+
constructor(map?: { [key: string]: any }) {
|
|
9562
|
+
super(map);
|
|
9563
|
+
}
|
|
9564
|
+
}
|
|
9565
|
+
|
|
9566
|
+
export class DetailInnerPendingeventRequest extends $tea.Model {
|
|
9567
|
+
// OAuth模式下的授权token
|
|
9568
|
+
authToken?: string;
|
|
9569
|
+
productInstanceId?: string;
|
|
9570
|
+
// 租户id
|
|
9571
|
+
tenantId: string;
|
|
9572
|
+
// 事件id
|
|
9573
|
+
eventId: string;
|
|
9574
|
+
static names(): { [key: string]: string } {
|
|
9575
|
+
return {
|
|
9576
|
+
authToken: 'auth_token',
|
|
9577
|
+
productInstanceId: 'product_instance_id',
|
|
9578
|
+
tenantId: 'tenant_id',
|
|
9579
|
+
eventId: 'event_id',
|
|
9580
|
+
};
|
|
9581
|
+
}
|
|
9582
|
+
|
|
9583
|
+
static types(): { [key: string]: any } {
|
|
9584
|
+
return {
|
|
9585
|
+
authToken: 'string',
|
|
9586
|
+
productInstanceId: 'string',
|
|
9587
|
+
tenantId: 'string',
|
|
9588
|
+
eventId: 'string',
|
|
9589
|
+
};
|
|
9590
|
+
}
|
|
9591
|
+
|
|
9592
|
+
constructor(map?: { [key: string]: any }) {
|
|
9593
|
+
super(map);
|
|
9594
|
+
}
|
|
9595
|
+
}
|
|
9596
|
+
|
|
9597
|
+
export class DetailInnerPendingeventResponse extends $tea.Model {
|
|
9598
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
9599
|
+
reqMsgId?: string;
|
|
9600
|
+
// 结果码,一般OK表示调用成功
|
|
9601
|
+
resultCode?: string;
|
|
9602
|
+
// 异常信息的文本描述
|
|
9603
|
+
resultMsg?: string;
|
|
9604
|
+
// 事件id
|
|
9605
|
+
eventId?: string;
|
|
9606
|
+
// 通知:NOTIFICATION
|
|
9607
|
+
// 确认函:CONFIRMATION
|
|
9608
|
+
type?: string;
|
|
9609
|
+
// ("PENDING","待办中"), ("CONFIRMED","确认"), ("REJECTED","已拒绝") ("FAILED","失败"),("EXPIRED","已过期");
|
|
9610
|
+
status?: string;
|
|
9611
|
+
// 待办内容主题
|
|
9612
|
+
contentSubject?: string;
|
|
9613
|
+
// 待办内容详情
|
|
9614
|
+
contentDetails?: string;
|
|
9615
|
+
// 待办处理页面操作按钮
|
|
9616
|
+
// ACKNOWLEDGE 我已知晓
|
|
9617
|
+
// CONFIRM 确认
|
|
9618
|
+
// RETURN 返回
|
|
9619
|
+
// REJECT 拒绝
|
|
9620
|
+
actionOptionsConfig?: string;
|
|
9621
|
+
// 事件有效期开始
|
|
9622
|
+
effectiveStartTime?: string;
|
|
9623
|
+
// 事件有效期结束
|
|
9624
|
+
effectiveEndTime?: string;
|
|
9625
|
+
static names(): { [key: string]: string } {
|
|
9626
|
+
return {
|
|
9627
|
+
reqMsgId: 'req_msg_id',
|
|
9628
|
+
resultCode: 'result_code',
|
|
9629
|
+
resultMsg: 'result_msg',
|
|
9630
|
+
eventId: 'event_id',
|
|
9631
|
+
type: 'type',
|
|
9632
|
+
status: 'status',
|
|
9633
|
+
contentSubject: 'content_subject',
|
|
9634
|
+
contentDetails: 'content_details',
|
|
9635
|
+
actionOptionsConfig: 'action_options_config',
|
|
9636
|
+
effectiveStartTime: 'effective_start_time',
|
|
9637
|
+
effectiveEndTime: 'effective_end_time',
|
|
9638
|
+
};
|
|
9639
|
+
}
|
|
9640
|
+
|
|
9641
|
+
static types(): { [key: string]: any } {
|
|
9642
|
+
return {
|
|
9643
|
+
reqMsgId: 'string',
|
|
9644
|
+
resultCode: 'string',
|
|
9645
|
+
resultMsg: 'string',
|
|
9646
|
+
eventId: 'string',
|
|
9647
|
+
type: 'string',
|
|
9648
|
+
status: 'string',
|
|
9649
|
+
contentSubject: 'string',
|
|
9650
|
+
contentDetails: 'string',
|
|
9651
|
+
actionOptionsConfig: 'string',
|
|
9652
|
+
effectiveStartTime: 'string',
|
|
9653
|
+
effectiveEndTime: 'string',
|
|
9654
|
+
};
|
|
9655
|
+
}
|
|
9656
|
+
|
|
9657
|
+
constructor(map?: { [key: string]: any }) {
|
|
9658
|
+
super(map);
|
|
9659
|
+
}
|
|
9660
|
+
}
|
|
9661
|
+
|
|
9662
|
+
export class AddInnerTemplateRequest extends $tea.Model {
|
|
9663
|
+
// OAuth模式下的授权token
|
|
9664
|
+
authToken?: string;
|
|
9665
|
+
productInstanceId?: string;
|
|
9666
|
+
// 租户id
|
|
9667
|
+
tenantId: string;
|
|
9668
|
+
// 合同模板code
|
|
9669
|
+
templateCode: string;
|
|
9670
|
+
static names(): { [key: string]: string } {
|
|
9671
|
+
return {
|
|
9672
|
+
authToken: 'auth_token',
|
|
9673
|
+
productInstanceId: 'product_instance_id',
|
|
9674
|
+
tenantId: 'tenant_id',
|
|
9675
|
+
templateCode: 'template_code',
|
|
9676
|
+
};
|
|
9677
|
+
}
|
|
9678
|
+
|
|
9679
|
+
static types(): { [key: string]: any } {
|
|
9680
|
+
return {
|
|
9681
|
+
authToken: 'string',
|
|
9682
|
+
productInstanceId: 'string',
|
|
9683
|
+
tenantId: 'string',
|
|
9684
|
+
templateCode: 'string',
|
|
9685
|
+
};
|
|
9686
|
+
}
|
|
9687
|
+
|
|
9688
|
+
constructor(map?: { [key: string]: any }) {
|
|
9689
|
+
super(map);
|
|
9690
|
+
}
|
|
9691
|
+
}
|
|
9692
|
+
|
|
9693
|
+
export class AddInnerTemplateResponse extends $tea.Model {
|
|
9694
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
9695
|
+
reqMsgId?: string;
|
|
9696
|
+
// 结果码,一般OK表示调用成功
|
|
9697
|
+
resultCode?: string;
|
|
9698
|
+
// 异常信息的文本描述
|
|
9699
|
+
resultMsg?: string;
|
|
9700
|
+
static names(): { [key: string]: string } {
|
|
9701
|
+
return {
|
|
9702
|
+
reqMsgId: 'req_msg_id',
|
|
9703
|
+
resultCode: 'result_code',
|
|
9704
|
+
resultMsg: 'result_msg',
|
|
9705
|
+
};
|
|
9706
|
+
}
|
|
9707
|
+
|
|
9708
|
+
static types(): { [key: string]: any } {
|
|
9709
|
+
return {
|
|
9710
|
+
reqMsgId: 'string',
|
|
9711
|
+
resultCode: 'string',
|
|
9712
|
+
resultMsg: 'string',
|
|
9713
|
+
};
|
|
9714
|
+
}
|
|
9715
|
+
|
|
9716
|
+
constructor(map?: { [key: string]: any }) {
|
|
9717
|
+
super(map);
|
|
9718
|
+
}
|
|
9719
|
+
}
|
|
9720
|
+
|
|
9721
|
+
export class PagequeryInnerPendingeventRequest extends $tea.Model {
|
|
9722
|
+
// OAuth模式下的授权token
|
|
9723
|
+
authToken?: string;
|
|
9724
|
+
productInstanceId?: string;
|
|
9725
|
+
// 租户id
|
|
9726
|
+
tenantId: string;
|
|
9727
|
+
// 待办状态
|
|
9728
|
+
statusList?: string[];
|
|
9729
|
+
// 事件类型
|
|
9730
|
+
// 通知:NOTIFICATION
|
|
9731
|
+
// 确认函:CONFIRMATION
|
|
9732
|
+
type?: string;
|
|
9733
|
+
// 分页
|
|
9734
|
+
pageInfo: PageQuery;
|
|
9735
|
+
static names(): { [key: string]: string } {
|
|
9736
|
+
return {
|
|
9737
|
+
authToken: 'auth_token',
|
|
9738
|
+
productInstanceId: 'product_instance_id',
|
|
9739
|
+
tenantId: 'tenant_id',
|
|
9740
|
+
statusList: 'status_list',
|
|
9741
|
+
type: 'type',
|
|
9742
|
+
pageInfo: 'page_info',
|
|
9743
|
+
};
|
|
9744
|
+
}
|
|
9745
|
+
|
|
9746
|
+
static types(): { [key: string]: any } {
|
|
9747
|
+
return {
|
|
9748
|
+
authToken: 'string',
|
|
9749
|
+
productInstanceId: 'string',
|
|
9750
|
+
tenantId: 'string',
|
|
9751
|
+
statusList: { 'type': 'array', 'itemType': 'string' },
|
|
9752
|
+
type: 'string',
|
|
9753
|
+
pageInfo: PageQuery,
|
|
9754
|
+
};
|
|
9755
|
+
}
|
|
9756
|
+
|
|
9757
|
+
constructor(map?: { [key: string]: any }) {
|
|
9758
|
+
super(map);
|
|
9759
|
+
}
|
|
9760
|
+
}
|
|
9761
|
+
|
|
9762
|
+
export class PagequeryInnerPendingeventResponse extends $tea.Model {
|
|
9763
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
9764
|
+
reqMsgId?: string;
|
|
9765
|
+
// 结果码,一般OK表示调用成功
|
|
9766
|
+
resultCode?: string;
|
|
9767
|
+
// 异常信息的文本描述
|
|
9768
|
+
resultMsg?: string;
|
|
9769
|
+
// 总量
|
|
9770
|
+
total?: number;
|
|
9771
|
+
// 待办列表信息
|
|
9772
|
+
pendingEventInfoList?: PendingEventInfo[];
|
|
9773
|
+
static names(): { [key: string]: string } {
|
|
9774
|
+
return {
|
|
9775
|
+
reqMsgId: 'req_msg_id',
|
|
9776
|
+
resultCode: 'result_code',
|
|
9777
|
+
resultMsg: 'result_msg',
|
|
9778
|
+
total: 'total',
|
|
9779
|
+
pendingEventInfoList: 'pending_event_info_list',
|
|
9780
|
+
};
|
|
9781
|
+
}
|
|
9782
|
+
|
|
9783
|
+
static types(): { [key: string]: any } {
|
|
9784
|
+
return {
|
|
9785
|
+
reqMsgId: 'string',
|
|
9786
|
+
resultCode: 'string',
|
|
9787
|
+
resultMsg: 'string',
|
|
9788
|
+
total: 'number',
|
|
9789
|
+
pendingEventInfoList: { 'type': 'array', 'itemType': PendingEventInfo },
|
|
9790
|
+
};
|
|
9791
|
+
}
|
|
9792
|
+
|
|
9793
|
+
constructor(map?: { [key: string]: any }) {
|
|
9794
|
+
super(map);
|
|
9795
|
+
}
|
|
9796
|
+
}
|
|
9797
|
+
|
|
9338
9798
|
export class CreateInsureRequest extends $tea.Model {
|
|
9339
9799
|
// OAuth模式下的授权token
|
|
9340
9800
|
authToken?: string;
|
|
@@ -14119,7 +14579,7 @@ export default class Client {
|
|
|
14119
14579
|
req_msg_id: AntchainUtil.getNonce(),
|
|
14120
14580
|
access_key: this._accessKeyId,
|
|
14121
14581
|
base_sdk_version: "TeaSDK-2.0",
|
|
14122
|
-
sdk_version: "1.13.
|
|
14582
|
+
sdk_version: "1.13.15",
|
|
14123
14583
|
_prod_code: "ATO",
|
|
14124
14584
|
_prod_channel: "undefined",
|
|
14125
14585
|
};
|
|
@@ -14664,6 +15124,27 @@ export default class Client {
|
|
|
14664
15124
|
return $tea.cast<QueryFundDividerelationResponse>(await this.doRequest("1.0", "antchain.ato.fund.dividerelation.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryFundDividerelationResponse({}));
|
|
14665
15125
|
}
|
|
14666
15126
|
|
|
15127
|
+
/**
|
|
15128
|
+
* Description: ● 本接口获取用信授权
|
|
15129
|
+
● 本接口返回成功后,仅代表用信申请成功;不代表订单融资发起申请成功,融资申请结果通过异步消息通知
|
|
15130
|
+
* Summary: 用信申请接口
|
|
15131
|
+
*/
|
|
15132
|
+
async applyFundCreditutilization(request: ApplyFundCreditutilizationRequest): Promise<ApplyFundCreditutilizationResponse> {
|
|
15133
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
15134
|
+
let headers : {[key: string ]: string} = { };
|
|
15135
|
+
return await this.applyFundCreditutilizationEx(request, headers, runtime);
|
|
15136
|
+
}
|
|
15137
|
+
|
|
15138
|
+
/**
|
|
15139
|
+
* Description: ● 本接口获取用信授权
|
|
15140
|
+
● 本接口返回成功后,仅代表用信申请成功;不代表订单融资发起申请成功,融资申请结果通过异步消息通知
|
|
15141
|
+
* Summary: 用信申请接口
|
|
15142
|
+
*/
|
|
15143
|
+
async applyFundCreditutilizationEx(request: ApplyFundCreditutilizationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ApplyFundCreditutilizationResponse> {
|
|
15144
|
+
Util.validateModel(request);
|
|
15145
|
+
return $tea.cast<ApplyFundCreditutilizationResponse>(await this.doRequest("1.0", "antchain.ato.fund.creditutilization.apply", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ApplyFundCreditutilizationResponse({}));
|
|
15146
|
+
}
|
|
15147
|
+
|
|
14667
15148
|
/**
|
|
14668
15149
|
* Description: 内部调用,商品信息获取
|
|
14669
15150
|
* Summary: 商品信息获取
|
|
@@ -15977,6 +16458,82 @@ export default class Client {
|
|
|
15977
16458
|
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({}));
|
|
15978
16459
|
}
|
|
15979
16460
|
|
|
16461
|
+
/**
|
|
16462
|
+
* Description: 待办事件处理
|
|
16463
|
+
* Summary: 待办事件处理
|
|
16464
|
+
*/
|
|
16465
|
+
async submitInnerPendingevent(request: SubmitInnerPendingeventRequest): Promise<SubmitInnerPendingeventResponse> {
|
|
16466
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16467
|
+
let headers : {[key: string ]: string} = { };
|
|
16468
|
+
return await this.submitInnerPendingeventEx(request, headers, runtime);
|
|
16469
|
+
}
|
|
16470
|
+
|
|
16471
|
+
/**
|
|
16472
|
+
* Description: 待办事件处理
|
|
16473
|
+
* Summary: 待办事件处理
|
|
16474
|
+
*/
|
|
16475
|
+
async submitInnerPendingeventEx(request: SubmitInnerPendingeventRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerPendingeventResponse> {
|
|
16476
|
+
Util.validateModel(request);
|
|
16477
|
+
return $tea.cast<SubmitInnerPendingeventResponse>(await this.doRequest("1.0", "antchain.ato.inner.pendingevent.submit", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SubmitInnerPendingeventResponse({}));
|
|
16478
|
+
}
|
|
16479
|
+
|
|
16480
|
+
/**
|
|
16481
|
+
* Description: 待办事件详情查询
|
|
16482
|
+
* Summary: 待办事件详情查询
|
|
16483
|
+
*/
|
|
16484
|
+
async detailInnerPendingevent(request: DetailInnerPendingeventRequest): Promise<DetailInnerPendingeventResponse> {
|
|
16485
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16486
|
+
let headers : {[key: string ]: string} = { };
|
|
16487
|
+
return await this.detailInnerPendingeventEx(request, headers, runtime);
|
|
16488
|
+
}
|
|
16489
|
+
|
|
16490
|
+
/**
|
|
16491
|
+
* Description: 待办事件详情查询
|
|
16492
|
+
* Summary: 待办事件详情查询
|
|
16493
|
+
*/
|
|
16494
|
+
async detailInnerPendingeventEx(request: DetailInnerPendingeventRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DetailInnerPendingeventResponse> {
|
|
16495
|
+
Util.validateModel(request);
|
|
16496
|
+
return $tea.cast<DetailInnerPendingeventResponse>(await this.doRequest("1.0", "antchain.ato.inner.pendingevent.detail", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new DetailInnerPendingeventResponse({}));
|
|
16497
|
+
}
|
|
16498
|
+
|
|
16499
|
+
/**
|
|
16500
|
+
* Description: 合同模板制作根据已有模板新增合同模板文件
|
|
16501
|
+
* Summary: 根据已有模板新增合同模板文件
|
|
16502
|
+
*/
|
|
16503
|
+
async addInnerTemplate(request: AddInnerTemplateRequest): Promise<AddInnerTemplateResponse> {
|
|
16504
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16505
|
+
let headers : {[key: string ]: string} = { };
|
|
16506
|
+
return await this.addInnerTemplateEx(request, headers, runtime);
|
|
16507
|
+
}
|
|
16508
|
+
|
|
16509
|
+
/**
|
|
16510
|
+
* Description: 合同模板制作根据已有模板新增合同模板文件
|
|
16511
|
+
* Summary: 根据已有模板新增合同模板文件
|
|
16512
|
+
*/
|
|
16513
|
+
async addInnerTemplateEx(request: AddInnerTemplateRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<AddInnerTemplateResponse> {
|
|
16514
|
+
Util.validateModel(request);
|
|
16515
|
+
return $tea.cast<AddInnerTemplateResponse>(await this.doRequest("1.0", "antchain.ato.inner.template.add", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new AddInnerTemplateResponse({}));
|
|
16516
|
+
}
|
|
16517
|
+
|
|
16518
|
+
/**
|
|
16519
|
+
* Description: 查询待办列表
|
|
16520
|
+
* Summary: 查询待办列表
|
|
16521
|
+
*/
|
|
16522
|
+
async pagequeryInnerPendingevent(request: PagequeryInnerPendingeventRequest): Promise<PagequeryInnerPendingeventResponse> {
|
|
16523
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16524
|
+
let headers : {[key: string ]: string} = { };
|
|
16525
|
+
return await this.pagequeryInnerPendingeventEx(request, headers, runtime);
|
|
16526
|
+
}
|
|
16527
|
+
|
|
16528
|
+
/**
|
|
16529
|
+
* Description: 查询待办列表
|
|
16530
|
+
* Summary: 查询待办列表
|
|
16531
|
+
*/
|
|
16532
|
+
async pagequeryInnerPendingeventEx(request: PagequeryInnerPendingeventRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerPendingeventResponse> {
|
|
16533
|
+
Util.validateModel(request);
|
|
16534
|
+
return $tea.cast<PagequeryInnerPendingeventResponse>(await this.doRequest("1.0", "antchain.ato.inner.pendingevent.pagequery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PagequeryInnerPendingeventResponse({}));
|
|
16535
|
+
}
|
|
16536
|
+
|
|
15980
16537
|
/**
|
|
15981
16538
|
* Description: 一键投保
|
|
15982
16539
|
* Summary: 投保
|