@antchain/ato 1.12.11 → 1.13.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 +365 -0
- package/dist/client.js +541 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +766 -19
package/dist/client.d.ts
CHANGED
|
@@ -157,6 +157,18 @@ export declare class AppletRiskModel extends $tea.Model {
|
|
|
157
157
|
[key: string]: any;
|
|
158
158
|
});
|
|
159
159
|
}
|
|
160
|
+
export declare class DivideBindingTransInInfo extends $tea.Model {
|
|
161
|
+
alipayPid: string;
|
|
162
|
+
static names(): {
|
|
163
|
+
[key: string]: string;
|
|
164
|
+
};
|
|
165
|
+
static types(): {
|
|
166
|
+
[key: string]: any;
|
|
167
|
+
};
|
|
168
|
+
constructor(map?: {
|
|
169
|
+
[key: string]: any;
|
|
170
|
+
});
|
|
171
|
+
}
|
|
160
172
|
export declare class InsureProductInfo extends $tea.Model {
|
|
161
173
|
productId: string;
|
|
162
174
|
productImeiId: string;
|
|
@@ -1719,6 +1731,66 @@ export declare class GetFundOrderfinanceinfoResponse extends $tea.Model {
|
|
|
1719
1731
|
[key: string]: any;
|
|
1720
1732
|
});
|
|
1721
1733
|
}
|
|
1734
|
+
export declare class AddFundDividerelationRequest extends $tea.Model {
|
|
1735
|
+
authToken?: string;
|
|
1736
|
+
productInstanceId?: string;
|
|
1737
|
+
merchantId: string;
|
|
1738
|
+
divideBindingTransInInfoList: DivideBindingTransInInfo[];
|
|
1739
|
+
divideRadio?: string;
|
|
1740
|
+
static names(): {
|
|
1741
|
+
[key: string]: string;
|
|
1742
|
+
};
|
|
1743
|
+
static types(): {
|
|
1744
|
+
[key: string]: any;
|
|
1745
|
+
};
|
|
1746
|
+
constructor(map?: {
|
|
1747
|
+
[key: string]: any;
|
|
1748
|
+
});
|
|
1749
|
+
}
|
|
1750
|
+
export declare class AddFundDividerelationResponse extends $tea.Model {
|
|
1751
|
+
reqMsgId?: string;
|
|
1752
|
+
resultCode?: string;
|
|
1753
|
+
resultMsg?: string;
|
|
1754
|
+
static names(): {
|
|
1755
|
+
[key: string]: string;
|
|
1756
|
+
};
|
|
1757
|
+
static types(): {
|
|
1758
|
+
[key: string]: any;
|
|
1759
|
+
};
|
|
1760
|
+
constructor(map?: {
|
|
1761
|
+
[key: string]: any;
|
|
1762
|
+
});
|
|
1763
|
+
}
|
|
1764
|
+
export declare class QueryFundDividerelationRequest extends $tea.Model {
|
|
1765
|
+
authToken?: string;
|
|
1766
|
+
productInstanceId?: string;
|
|
1767
|
+
merchantId: string;
|
|
1768
|
+
static names(): {
|
|
1769
|
+
[key: string]: string;
|
|
1770
|
+
};
|
|
1771
|
+
static types(): {
|
|
1772
|
+
[key: string]: any;
|
|
1773
|
+
};
|
|
1774
|
+
constructor(map?: {
|
|
1775
|
+
[key: string]: any;
|
|
1776
|
+
});
|
|
1777
|
+
}
|
|
1778
|
+
export declare class QueryFundDividerelationResponse extends $tea.Model {
|
|
1779
|
+
reqMsgId?: string;
|
|
1780
|
+
resultCode?: string;
|
|
1781
|
+
resultMsg?: string;
|
|
1782
|
+
alipayPidList?: string[];
|
|
1783
|
+
divideRadio?: string;
|
|
1784
|
+
static names(): {
|
|
1785
|
+
[key: string]: string;
|
|
1786
|
+
};
|
|
1787
|
+
static types(): {
|
|
1788
|
+
[key: string]: any;
|
|
1789
|
+
};
|
|
1790
|
+
constructor(map?: {
|
|
1791
|
+
[key: string]: any;
|
|
1792
|
+
});
|
|
1793
|
+
}
|
|
1722
1794
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
1723
1795
|
authToken?: string;
|
|
1724
1796
|
productInstanceId?: string;
|
|
@@ -2534,6 +2606,7 @@ export declare class QueryInnerMerchantagreementRequest extends $tea.Model {
|
|
|
2534
2606
|
productInstanceId?: string;
|
|
2535
2607
|
tenantId: string;
|
|
2536
2608
|
agreementId: string;
|
|
2609
|
+
userName?: string;
|
|
2537
2610
|
static names(): {
|
|
2538
2611
|
[key: string]: string;
|
|
2539
2612
|
};
|
|
@@ -2566,6 +2639,7 @@ export declare class PagequeryInnerMerchantagreementRequest extends $tea.Model {
|
|
|
2566
2639
|
productInstanceId?: string;
|
|
2567
2640
|
tenantId: string;
|
|
2568
2641
|
pageInfo: PageQuery;
|
|
2642
|
+
userName?: string;
|
|
2569
2643
|
static names(): {
|
|
2570
2644
|
[key: string]: string;
|
|
2571
2645
|
};
|
|
@@ -4210,6 +4284,66 @@ export declare class UpdateMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
4210
4284
|
[key: string]: any;
|
|
4211
4285
|
});
|
|
4212
4286
|
}
|
|
4287
|
+
export declare class AddMerchantexpandDividerelationRequest extends $tea.Model {
|
|
4288
|
+
authToken?: string;
|
|
4289
|
+
productInstanceId?: string;
|
|
4290
|
+
merchantId: string;
|
|
4291
|
+
divideBindingTransInInfoList: DivideBindingTransInInfo[];
|
|
4292
|
+
divideRadio?: string;
|
|
4293
|
+
static names(): {
|
|
4294
|
+
[key: string]: string;
|
|
4295
|
+
};
|
|
4296
|
+
static types(): {
|
|
4297
|
+
[key: string]: any;
|
|
4298
|
+
};
|
|
4299
|
+
constructor(map?: {
|
|
4300
|
+
[key: string]: any;
|
|
4301
|
+
});
|
|
4302
|
+
}
|
|
4303
|
+
export declare class AddMerchantexpandDividerelationResponse extends $tea.Model {
|
|
4304
|
+
reqMsgId?: string;
|
|
4305
|
+
resultCode?: string;
|
|
4306
|
+
resultMsg?: string;
|
|
4307
|
+
static names(): {
|
|
4308
|
+
[key: string]: string;
|
|
4309
|
+
};
|
|
4310
|
+
static types(): {
|
|
4311
|
+
[key: string]: any;
|
|
4312
|
+
};
|
|
4313
|
+
constructor(map?: {
|
|
4314
|
+
[key: string]: any;
|
|
4315
|
+
});
|
|
4316
|
+
}
|
|
4317
|
+
export declare class QueryMerchantexpandDividerelationRequest extends $tea.Model {
|
|
4318
|
+
authToken?: string;
|
|
4319
|
+
productInstanceId?: string;
|
|
4320
|
+
merchantId: string;
|
|
4321
|
+
static names(): {
|
|
4322
|
+
[key: string]: string;
|
|
4323
|
+
};
|
|
4324
|
+
static types(): {
|
|
4325
|
+
[key: string]: any;
|
|
4326
|
+
};
|
|
4327
|
+
constructor(map?: {
|
|
4328
|
+
[key: string]: any;
|
|
4329
|
+
});
|
|
4330
|
+
}
|
|
4331
|
+
export declare class QueryMerchantexpandDividerelationResponse extends $tea.Model {
|
|
4332
|
+
reqMsgId?: string;
|
|
4333
|
+
resultCode?: string;
|
|
4334
|
+
resultMsg?: string;
|
|
4335
|
+
alipayPidList?: string[];
|
|
4336
|
+
divideRadio?: string;
|
|
4337
|
+
static names(): {
|
|
4338
|
+
[key: string]: string;
|
|
4339
|
+
};
|
|
4340
|
+
static types(): {
|
|
4341
|
+
[key: string]: any;
|
|
4342
|
+
};
|
|
4343
|
+
constructor(map?: {
|
|
4344
|
+
[key: string]: any;
|
|
4345
|
+
});
|
|
4346
|
+
}
|
|
4213
4347
|
export declare class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
4214
4348
|
authToken?: string;
|
|
4215
4349
|
productInstanceId?: string;
|
|
@@ -4319,6 +4453,7 @@ export declare class QueryRiskGoRequest extends $tea.Model {
|
|
|
4319
4453
|
authToken?: string;
|
|
4320
4454
|
productInstanceId?: string;
|
|
4321
4455
|
riskType: string;
|
|
4456
|
+
flowId: string;
|
|
4322
4457
|
businessCode: string;
|
|
4323
4458
|
scene: string;
|
|
4324
4459
|
userId?: string;
|
|
@@ -4335,6 +4470,7 @@ export declare class QueryRiskGoRequest extends $tea.Model {
|
|
|
4335
4470
|
awardingQueryModel?: AwardingQueryModel;
|
|
4336
4471
|
farmingQueryModel?: FarmingQueryModel;
|
|
4337
4472
|
baddebtQueryModel?: BaddebtQueryModel;
|
|
4473
|
+
merchantAppId?: string;
|
|
4338
4474
|
static names(): {
|
|
4339
4475
|
[key: string]: string;
|
|
4340
4476
|
};
|
|
@@ -4360,11 +4496,48 @@ export declare class QueryRiskGoResponse extends $tea.Model {
|
|
|
4360
4496
|
[key: string]: any;
|
|
4361
4497
|
});
|
|
4362
4498
|
}
|
|
4499
|
+
export declare class UploadInnerRiskcallRequest extends $tea.Model {
|
|
4500
|
+
authToken?: string;
|
|
4501
|
+
productInstanceId?: string;
|
|
4502
|
+
idempotentId: string;
|
|
4503
|
+
pid: string;
|
|
4504
|
+
serviceAmount: number;
|
|
4505
|
+
startTime: string;
|
|
4506
|
+
endTime: string;
|
|
4507
|
+
alipayInstanceId: string;
|
|
4508
|
+
extInfo?: string;
|
|
4509
|
+
static names(): {
|
|
4510
|
+
[key: string]: string;
|
|
4511
|
+
};
|
|
4512
|
+
static types(): {
|
|
4513
|
+
[key: string]: any;
|
|
4514
|
+
};
|
|
4515
|
+
constructor(map?: {
|
|
4516
|
+
[key: string]: any;
|
|
4517
|
+
});
|
|
4518
|
+
}
|
|
4519
|
+
export declare class UploadInnerRiskcallResponse extends $tea.Model {
|
|
4520
|
+
reqMsgId?: string;
|
|
4521
|
+
resultCode?: string;
|
|
4522
|
+
resultMsg?: string;
|
|
4523
|
+
result?: boolean;
|
|
4524
|
+
static names(): {
|
|
4525
|
+
[key: string]: string;
|
|
4526
|
+
};
|
|
4527
|
+
static types(): {
|
|
4528
|
+
[key: string]: any;
|
|
4529
|
+
};
|
|
4530
|
+
constructor(map?: {
|
|
4531
|
+
[key: string]: any;
|
|
4532
|
+
});
|
|
4533
|
+
}
|
|
4363
4534
|
export declare class AllSignTemplateRequest extends $tea.Model {
|
|
4364
4535
|
authToken?: string;
|
|
4365
4536
|
productInstanceId?: string;
|
|
4366
4537
|
contractType?: string;
|
|
4367
4538
|
merchantId?: string;
|
|
4539
|
+
fundId?: string;
|
|
4540
|
+
fundType?: string;
|
|
4368
4541
|
templateId?: string;
|
|
4369
4542
|
static names(): {
|
|
4370
4543
|
[key: string]: string;
|
|
@@ -5281,6 +5454,102 @@ export declare class GetTradeOrderfinanceinfoResponse extends $tea.Model {
|
|
|
5281
5454
|
[key: string]: any;
|
|
5282
5455
|
});
|
|
5283
5456
|
}
|
|
5457
|
+
export declare class SyncTradeUserpromisedelayRequest extends $tea.Model {
|
|
5458
|
+
authToken?: string;
|
|
5459
|
+
productInstanceId?: string;
|
|
5460
|
+
orderId: string;
|
|
5461
|
+
merchantId: string;
|
|
5462
|
+
delayStartPeriod: number;
|
|
5463
|
+
delayTimeUnit: string;
|
|
5464
|
+
delayTimeValue: number;
|
|
5465
|
+
reason: string;
|
|
5466
|
+
static names(): {
|
|
5467
|
+
[key: string]: string;
|
|
5468
|
+
};
|
|
5469
|
+
static types(): {
|
|
5470
|
+
[key: string]: any;
|
|
5471
|
+
};
|
|
5472
|
+
constructor(map?: {
|
|
5473
|
+
[key: string]: any;
|
|
5474
|
+
});
|
|
5475
|
+
}
|
|
5476
|
+
export declare class SyncTradeUserpromisedelayResponse extends $tea.Model {
|
|
5477
|
+
reqMsgId?: string;
|
|
5478
|
+
resultCode?: string;
|
|
5479
|
+
resultMsg?: string;
|
|
5480
|
+
static names(): {
|
|
5481
|
+
[key: string]: string;
|
|
5482
|
+
};
|
|
5483
|
+
static types(): {
|
|
5484
|
+
[key: string]: any;
|
|
5485
|
+
};
|
|
5486
|
+
constructor(map?: {
|
|
5487
|
+
[key: string]: any;
|
|
5488
|
+
});
|
|
5489
|
+
}
|
|
5490
|
+
export declare class PauseTradeUserpromiseRequest extends $tea.Model {
|
|
5491
|
+
authToken?: string;
|
|
5492
|
+
productInstanceId?: string;
|
|
5493
|
+
orderId: string;
|
|
5494
|
+
merchantId: string;
|
|
5495
|
+
reason: string;
|
|
5496
|
+
static names(): {
|
|
5497
|
+
[key: string]: string;
|
|
5498
|
+
};
|
|
5499
|
+
static types(): {
|
|
5500
|
+
[key: string]: any;
|
|
5501
|
+
};
|
|
5502
|
+
constructor(map?: {
|
|
5503
|
+
[key: string]: any;
|
|
5504
|
+
});
|
|
5505
|
+
}
|
|
5506
|
+
export declare class PauseTradeUserpromiseResponse extends $tea.Model {
|
|
5507
|
+
reqMsgId?: string;
|
|
5508
|
+
resultCode?: string;
|
|
5509
|
+
resultMsg?: string;
|
|
5510
|
+
autoResumeDay?: string;
|
|
5511
|
+
autoWithholdRestartDay?: string;
|
|
5512
|
+
static names(): {
|
|
5513
|
+
[key: string]: string;
|
|
5514
|
+
};
|
|
5515
|
+
static types(): {
|
|
5516
|
+
[key: string]: any;
|
|
5517
|
+
};
|
|
5518
|
+
constructor(map?: {
|
|
5519
|
+
[key: string]: any;
|
|
5520
|
+
});
|
|
5521
|
+
}
|
|
5522
|
+
export declare class ResumeTradeUserpromiseRequest extends $tea.Model {
|
|
5523
|
+
authToken?: string;
|
|
5524
|
+
productInstanceId?: string;
|
|
5525
|
+
orderId: string;
|
|
5526
|
+
merchantId: string;
|
|
5527
|
+
static names(): {
|
|
5528
|
+
[key: string]: string;
|
|
5529
|
+
};
|
|
5530
|
+
static types(): {
|
|
5531
|
+
[key: string]: any;
|
|
5532
|
+
};
|
|
5533
|
+
constructor(map?: {
|
|
5534
|
+
[key: string]: any;
|
|
5535
|
+
});
|
|
5536
|
+
}
|
|
5537
|
+
export declare class ResumeTradeUserpromiseResponse extends $tea.Model {
|
|
5538
|
+
reqMsgId?: string;
|
|
5539
|
+
resultCode?: string;
|
|
5540
|
+
resultMsg?: string;
|
|
5541
|
+
resumeDay?: string;
|
|
5542
|
+
withholdRestartDay?: string;
|
|
5543
|
+
static names(): {
|
|
5544
|
+
[key: string]: string;
|
|
5545
|
+
};
|
|
5546
|
+
static types(): {
|
|
5547
|
+
[key: string]: any;
|
|
5548
|
+
};
|
|
5549
|
+
constructor(map?: {
|
|
5550
|
+
[key: string]: any;
|
|
5551
|
+
});
|
|
5552
|
+
}
|
|
5284
5553
|
export declare class CreateWithholdSignRequest extends $tea.Model {
|
|
5285
5554
|
authToken?: string;
|
|
5286
5555
|
productInstanceId?: string;
|
|
@@ -6067,6 +6336,30 @@ export default class Client {
|
|
|
6067
6336
|
getFundOrderfinanceinfoEx(request: GetFundOrderfinanceinfoRequest, headers: {
|
|
6068
6337
|
[key: string]: string;
|
|
6069
6338
|
}, runtime: $Util.RuntimeOptions): Promise<GetFundOrderfinanceinfoResponse>;
|
|
6339
|
+
/**
|
|
6340
|
+
* Description: 添加分账绑定关系
|
|
6341
|
+
* Summary: 添加分账绑定关系
|
|
6342
|
+
*/
|
|
6343
|
+
addFundDividerelation(request: AddFundDividerelationRequest): Promise<AddFundDividerelationResponse>;
|
|
6344
|
+
/**
|
|
6345
|
+
* Description: 添加分账绑定关系
|
|
6346
|
+
* Summary: 添加分账绑定关系
|
|
6347
|
+
*/
|
|
6348
|
+
addFundDividerelationEx(request: AddFundDividerelationRequest, headers: {
|
|
6349
|
+
[key: string]: string;
|
|
6350
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddFundDividerelationResponse>;
|
|
6351
|
+
/**
|
|
6352
|
+
* Description: 分账绑定关系查询
|
|
6353
|
+
* Summary: 分账绑定关系查询
|
|
6354
|
+
*/
|
|
6355
|
+
queryFundDividerelation(request: QueryFundDividerelationRequest): Promise<QueryFundDividerelationResponse>;
|
|
6356
|
+
/**
|
|
6357
|
+
* Description: 分账绑定关系查询
|
|
6358
|
+
* Summary: 分账绑定关系查询
|
|
6359
|
+
*/
|
|
6360
|
+
queryFundDividerelationEx(request: QueryFundDividerelationRequest, headers: {
|
|
6361
|
+
[key: string]: string;
|
|
6362
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryFundDividerelationResponse>;
|
|
6070
6363
|
/**
|
|
6071
6364
|
* Description: 内部调用,商品信息获取
|
|
6072
6365
|
* Summary: 商品信息获取
|
|
@@ -6981,6 +7274,30 @@ export default class Client {
|
|
|
6981
7274
|
updateMerchantexpandMerchantEx(request: UpdateMerchantexpandMerchantRequest, headers: {
|
|
6982
7275
|
[key: string]: string;
|
|
6983
7276
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateMerchantexpandMerchantResponse>;
|
|
7277
|
+
/**
|
|
7278
|
+
* Description: 添加分账绑定关系
|
|
7279
|
+
* Summary: 添加分账绑定关系
|
|
7280
|
+
*/
|
|
7281
|
+
addMerchantexpandDividerelation(request: AddMerchantexpandDividerelationRequest): Promise<AddMerchantexpandDividerelationResponse>;
|
|
7282
|
+
/**
|
|
7283
|
+
* Description: 添加分账绑定关系
|
|
7284
|
+
* Summary: 添加分账绑定关系
|
|
7285
|
+
*/
|
|
7286
|
+
addMerchantexpandDividerelationEx(request: AddMerchantexpandDividerelationRequest, headers: {
|
|
7287
|
+
[key: string]: string;
|
|
7288
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddMerchantexpandDividerelationResponse>;
|
|
7289
|
+
/**
|
|
7290
|
+
* Description: 分账绑定关系查询
|
|
7291
|
+
* Summary: 分账绑定关系查询
|
|
7292
|
+
*/
|
|
7293
|
+
queryMerchantexpandDividerelation(request: QueryMerchantexpandDividerelationRequest): Promise<QueryMerchantexpandDividerelationResponse>;
|
|
7294
|
+
/**
|
|
7295
|
+
* Description: 分账绑定关系查询
|
|
7296
|
+
* Summary: 分账绑定关系查询
|
|
7297
|
+
*/
|
|
7298
|
+
queryMerchantexpandDividerelationEx(request: QueryMerchantexpandDividerelationRequest, headers: {
|
|
7299
|
+
[key: string]: string;
|
|
7300
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryMerchantexpandDividerelationResponse>;
|
|
6984
7301
|
/**
|
|
6985
7302
|
* Description: 可信身份认证,创建认证
|
|
6986
7303
|
* Summary: 创建认证
|
|
@@ -7029,6 +7346,18 @@ export default class Client {
|
|
|
7029
7346
|
queryRiskGoEx(request: QueryRiskGoRequest, headers: {
|
|
7030
7347
|
[key: string]: string;
|
|
7031
7348
|
}, runtime: $Util.RuntimeOptions): Promise<QueryRiskGoResponse>;
|
|
7349
|
+
/**
|
|
7350
|
+
* Description: 小程序云调用,上报计量信息
|
|
7351
|
+
* Summary: 小程序云调用,上报计量信息
|
|
7352
|
+
*/
|
|
7353
|
+
uploadInnerRiskcall(request: UploadInnerRiskcallRequest): Promise<UploadInnerRiskcallResponse>;
|
|
7354
|
+
/**
|
|
7355
|
+
* Description: 小程序云调用,上报计量信息
|
|
7356
|
+
* Summary: 小程序云调用,上报计量信息
|
|
7357
|
+
*/
|
|
7358
|
+
uploadInnerRiskcallEx(request: UploadInnerRiskcallRequest, headers: {
|
|
7359
|
+
[key: string]: string;
|
|
7360
|
+
}, runtime: $Util.RuntimeOptions): Promise<UploadInnerRiskcallResponse>;
|
|
7032
7361
|
/**
|
|
7033
7362
|
* Description: 电子合同签署的合同模板查询服务
|
|
7034
7363
|
* Summary: 电子合同签署的合同模板查询服务
|
|
@@ -7353,6 +7682,42 @@ export default class Client {
|
|
|
7353
7682
|
getTradeOrderfinanceinfoEx(request: GetTradeOrderfinanceinfoRequest, headers: {
|
|
7354
7683
|
[key: string]: string;
|
|
7355
7684
|
}, runtime: $Util.RuntimeOptions): Promise<GetTradeOrderfinanceinfoResponse>;
|
|
7685
|
+
/**
|
|
7686
|
+
* Description: 订单代扣计划延期
|
|
7687
|
+
* Summary: 订单代扣计划延期
|
|
7688
|
+
*/
|
|
7689
|
+
syncTradeUserpromisedelay(request: SyncTradeUserpromisedelayRequest): Promise<SyncTradeUserpromisedelayResponse>;
|
|
7690
|
+
/**
|
|
7691
|
+
* Description: 订单代扣计划延期
|
|
7692
|
+
* Summary: 订单代扣计划延期
|
|
7693
|
+
*/
|
|
7694
|
+
syncTradeUserpromisedelayEx(request: SyncTradeUserpromisedelayRequest, headers: {
|
|
7695
|
+
[key: string]: string;
|
|
7696
|
+
}, runtime: $Util.RuntimeOptions): Promise<SyncTradeUserpromisedelayResponse>;
|
|
7697
|
+
/**
|
|
7698
|
+
* Description: 订单代扣计划暂停
|
|
7699
|
+
* Summary: 订单代扣计划暂停
|
|
7700
|
+
*/
|
|
7701
|
+
pauseTradeUserpromise(request: PauseTradeUserpromiseRequest): Promise<PauseTradeUserpromiseResponse>;
|
|
7702
|
+
/**
|
|
7703
|
+
* Description: 订单代扣计划暂停
|
|
7704
|
+
* Summary: 订单代扣计划暂停
|
|
7705
|
+
*/
|
|
7706
|
+
pauseTradeUserpromiseEx(request: PauseTradeUserpromiseRequest, headers: {
|
|
7707
|
+
[key: string]: string;
|
|
7708
|
+
}, runtime: $Util.RuntimeOptions): Promise<PauseTradeUserpromiseResponse>;
|
|
7709
|
+
/**
|
|
7710
|
+
* Description: 代扣计划重启
|
|
7711
|
+
* Summary: 代扣计划重启
|
|
7712
|
+
*/
|
|
7713
|
+
resumeTradeUserpromise(request: ResumeTradeUserpromiseRequest): Promise<ResumeTradeUserpromiseResponse>;
|
|
7714
|
+
/**
|
|
7715
|
+
* Description: 代扣计划重启
|
|
7716
|
+
* Summary: 代扣计划重启
|
|
7717
|
+
*/
|
|
7718
|
+
resumeTradeUserpromiseEx(request: ResumeTradeUserpromiseRequest, headers: {
|
|
7719
|
+
[key: string]: string;
|
|
7720
|
+
}, runtime: $Util.RuntimeOptions): Promise<ResumeTradeUserpromiseResponse>;
|
|
7356
7721
|
/**
|
|
7357
7722
|
* Description: 代扣签约创建
|
|
7358
7723
|
* Summary: 代扣签约
|