@antchain/ato 1.12.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 +624 -0
- package/dist/client.js +1013 -87
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1424 -120
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;
|
|
@@ -723,6 +735,23 @@ export declare class MarketingScoreInfo extends $tea.Model {
|
|
|
723
735
|
[key: string]: any;
|
|
724
736
|
});
|
|
725
737
|
}
|
|
738
|
+
export declare class PendingEventInfo extends $tea.Model {
|
|
739
|
+
eventId?: string;
|
|
740
|
+
type?: string;
|
|
741
|
+
status?: string;
|
|
742
|
+
contentSubject?: string;
|
|
743
|
+
effectiveStartTime?: string;
|
|
744
|
+
effectiveEndTime?: string;
|
|
745
|
+
static names(): {
|
|
746
|
+
[key: string]: string;
|
|
747
|
+
};
|
|
748
|
+
static types(): {
|
|
749
|
+
[key: string]: any;
|
|
750
|
+
};
|
|
751
|
+
constructor(map?: {
|
|
752
|
+
[key: string]: any;
|
|
753
|
+
});
|
|
754
|
+
}
|
|
726
755
|
export declare class PriceDetail extends $tea.Model {
|
|
727
756
|
periodNum: number;
|
|
728
757
|
depositPrice: number;
|
|
@@ -892,6 +921,20 @@ export declare class OrderProductInfo extends $tea.Model {
|
|
|
892
921
|
[key: string]: any;
|
|
893
922
|
});
|
|
894
923
|
}
|
|
924
|
+
export declare class CreditUtilizationOrder extends $tea.Model {
|
|
925
|
+
orderId: string;
|
|
926
|
+
orderCreditLine: number;
|
|
927
|
+
orderMerchantRepaymentMoney: number;
|
|
928
|
+
static names(): {
|
|
929
|
+
[key: string]: string;
|
|
930
|
+
};
|
|
931
|
+
static types(): {
|
|
932
|
+
[key: string]: any;
|
|
933
|
+
};
|
|
934
|
+
constructor(map?: {
|
|
935
|
+
[key: string]: any;
|
|
936
|
+
});
|
|
937
|
+
}
|
|
895
938
|
export declare class ActivePayOrder extends $tea.Model {
|
|
896
939
|
tradeNo: string;
|
|
897
940
|
tradeStatus: string;
|
|
@@ -1719,6 +1762,102 @@ export declare class GetFundOrderfinanceinfoResponse extends $tea.Model {
|
|
|
1719
1762
|
[key: string]: any;
|
|
1720
1763
|
});
|
|
1721
1764
|
}
|
|
1765
|
+
export declare class AddFundDividerelationRequest extends $tea.Model {
|
|
1766
|
+
authToken?: string;
|
|
1767
|
+
productInstanceId?: string;
|
|
1768
|
+
merchantId: string;
|
|
1769
|
+
divideBindingTransInInfoList: DivideBindingTransInInfo[];
|
|
1770
|
+
divideRadio?: string;
|
|
1771
|
+
static names(): {
|
|
1772
|
+
[key: string]: string;
|
|
1773
|
+
};
|
|
1774
|
+
static types(): {
|
|
1775
|
+
[key: string]: any;
|
|
1776
|
+
};
|
|
1777
|
+
constructor(map?: {
|
|
1778
|
+
[key: string]: any;
|
|
1779
|
+
});
|
|
1780
|
+
}
|
|
1781
|
+
export declare class AddFundDividerelationResponse extends $tea.Model {
|
|
1782
|
+
reqMsgId?: string;
|
|
1783
|
+
resultCode?: string;
|
|
1784
|
+
resultMsg?: string;
|
|
1785
|
+
static names(): {
|
|
1786
|
+
[key: string]: string;
|
|
1787
|
+
};
|
|
1788
|
+
static types(): {
|
|
1789
|
+
[key: string]: any;
|
|
1790
|
+
};
|
|
1791
|
+
constructor(map?: {
|
|
1792
|
+
[key: string]: any;
|
|
1793
|
+
});
|
|
1794
|
+
}
|
|
1795
|
+
export declare class QueryFundDividerelationRequest extends $tea.Model {
|
|
1796
|
+
authToken?: string;
|
|
1797
|
+
productInstanceId?: string;
|
|
1798
|
+
merchantId: string;
|
|
1799
|
+
static names(): {
|
|
1800
|
+
[key: string]: string;
|
|
1801
|
+
};
|
|
1802
|
+
static types(): {
|
|
1803
|
+
[key: string]: any;
|
|
1804
|
+
};
|
|
1805
|
+
constructor(map?: {
|
|
1806
|
+
[key: string]: any;
|
|
1807
|
+
});
|
|
1808
|
+
}
|
|
1809
|
+
export declare class QueryFundDividerelationResponse extends $tea.Model {
|
|
1810
|
+
reqMsgId?: string;
|
|
1811
|
+
resultCode?: string;
|
|
1812
|
+
resultMsg?: string;
|
|
1813
|
+
alipayPidList?: string[];
|
|
1814
|
+
divideRadio?: string;
|
|
1815
|
+
static names(): {
|
|
1816
|
+
[key: string]: string;
|
|
1817
|
+
};
|
|
1818
|
+
static types(): {
|
|
1819
|
+
[key: string]: any;
|
|
1820
|
+
};
|
|
1821
|
+
constructor(map?: {
|
|
1822
|
+
[key: string]: any;
|
|
1823
|
+
});
|
|
1824
|
+
}
|
|
1825
|
+
export declare class ApplyFundCreditutilizationRequest extends $tea.Model {
|
|
1826
|
+
authToken?: string;
|
|
1827
|
+
productInstanceId?: string;
|
|
1828
|
+
orderList: CreditUtilizationOrder[];
|
|
1829
|
+
tenantId: string;
|
|
1830
|
+
merchantId: string;
|
|
1831
|
+
fundId: string;
|
|
1832
|
+
grantingId: string;
|
|
1833
|
+
utilizationAuthId: string;
|
|
1834
|
+
utilizationId: string;
|
|
1835
|
+
static names(): {
|
|
1836
|
+
[key: string]: string;
|
|
1837
|
+
};
|
|
1838
|
+
static types(): {
|
|
1839
|
+
[key: string]: any;
|
|
1840
|
+
};
|
|
1841
|
+
constructor(map?: {
|
|
1842
|
+
[key: string]: any;
|
|
1843
|
+
});
|
|
1844
|
+
}
|
|
1845
|
+
export declare class ApplyFundCreditutilizationResponse extends $tea.Model {
|
|
1846
|
+
reqMsgId?: string;
|
|
1847
|
+
resultCode?: string;
|
|
1848
|
+
resultMsg?: string;
|
|
1849
|
+
utilizationId?: string;
|
|
1850
|
+
utilizationAuthId?: string;
|
|
1851
|
+
static names(): {
|
|
1852
|
+
[key: string]: string;
|
|
1853
|
+
};
|
|
1854
|
+
static types(): {
|
|
1855
|
+
[key: string]: any;
|
|
1856
|
+
};
|
|
1857
|
+
constructor(map?: {
|
|
1858
|
+
[key: string]: any;
|
|
1859
|
+
});
|
|
1860
|
+
}
|
|
1722
1861
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
1723
1862
|
authToken?: string;
|
|
1724
1863
|
productInstanceId?: string;
|
|
@@ -2534,6 +2673,7 @@ export declare class QueryInnerMerchantagreementRequest extends $tea.Model {
|
|
|
2534
2673
|
productInstanceId?: string;
|
|
2535
2674
|
tenantId: string;
|
|
2536
2675
|
agreementId: string;
|
|
2676
|
+
userName?: string;
|
|
2537
2677
|
static names(): {
|
|
2538
2678
|
[key: string]: string;
|
|
2539
2679
|
};
|
|
@@ -2566,6 +2706,7 @@ export declare class PagequeryInnerMerchantagreementRequest extends $tea.Model {
|
|
|
2566
2706
|
productInstanceId?: string;
|
|
2567
2707
|
tenantId: string;
|
|
2568
2708
|
pageInfo: PageQuery;
|
|
2709
|
+
userName?: string;
|
|
2569
2710
|
static names(): {
|
|
2570
2711
|
[key: string]: string;
|
|
2571
2712
|
};
|
|
@@ -3974,6 +4115,136 @@ export declare class SubmitInnerTemplatesyncreviewResponse extends $tea.Model {
|
|
|
3974
4115
|
[key: string]: any;
|
|
3975
4116
|
});
|
|
3976
4117
|
}
|
|
4118
|
+
export declare class SubmitInnerPendingeventRequest extends $tea.Model {
|
|
4119
|
+
authToken?: string;
|
|
4120
|
+
productInstanceId?: string;
|
|
4121
|
+
tenantId: string;
|
|
4122
|
+
eventId: string;
|
|
4123
|
+
action: string;
|
|
4124
|
+
operator: string;
|
|
4125
|
+
static names(): {
|
|
4126
|
+
[key: string]: string;
|
|
4127
|
+
};
|
|
4128
|
+
static types(): {
|
|
4129
|
+
[key: string]: any;
|
|
4130
|
+
};
|
|
4131
|
+
constructor(map?: {
|
|
4132
|
+
[key: string]: any;
|
|
4133
|
+
});
|
|
4134
|
+
}
|
|
4135
|
+
export declare class SubmitInnerPendingeventResponse extends $tea.Model {
|
|
4136
|
+
reqMsgId?: string;
|
|
4137
|
+
resultCode?: string;
|
|
4138
|
+
resultMsg?: string;
|
|
4139
|
+
static names(): {
|
|
4140
|
+
[key: string]: string;
|
|
4141
|
+
};
|
|
4142
|
+
static types(): {
|
|
4143
|
+
[key: string]: any;
|
|
4144
|
+
};
|
|
4145
|
+
constructor(map?: {
|
|
4146
|
+
[key: string]: any;
|
|
4147
|
+
});
|
|
4148
|
+
}
|
|
4149
|
+
export declare class DetailInnerPendingeventRequest extends $tea.Model {
|
|
4150
|
+
authToken?: string;
|
|
4151
|
+
productInstanceId?: string;
|
|
4152
|
+
tenantId: string;
|
|
4153
|
+
eventId: string;
|
|
4154
|
+
static names(): {
|
|
4155
|
+
[key: string]: string;
|
|
4156
|
+
};
|
|
4157
|
+
static types(): {
|
|
4158
|
+
[key: string]: any;
|
|
4159
|
+
};
|
|
4160
|
+
constructor(map?: {
|
|
4161
|
+
[key: string]: any;
|
|
4162
|
+
});
|
|
4163
|
+
}
|
|
4164
|
+
export declare class DetailInnerPendingeventResponse extends $tea.Model {
|
|
4165
|
+
reqMsgId?: string;
|
|
4166
|
+
resultCode?: string;
|
|
4167
|
+
resultMsg?: string;
|
|
4168
|
+
eventId?: string;
|
|
4169
|
+
type?: string;
|
|
4170
|
+
status?: string;
|
|
4171
|
+
contentSubject?: string;
|
|
4172
|
+
contentDetails?: string;
|
|
4173
|
+
actionOptionsConfig?: string;
|
|
4174
|
+
effectiveStartTime?: string;
|
|
4175
|
+
effectiveEndTime?: string;
|
|
4176
|
+
static names(): {
|
|
4177
|
+
[key: string]: string;
|
|
4178
|
+
};
|
|
4179
|
+
static types(): {
|
|
4180
|
+
[key: string]: any;
|
|
4181
|
+
};
|
|
4182
|
+
constructor(map?: {
|
|
4183
|
+
[key: string]: any;
|
|
4184
|
+
});
|
|
4185
|
+
}
|
|
4186
|
+
export declare class AddInnerTemplateRequest extends $tea.Model {
|
|
4187
|
+
authToken?: string;
|
|
4188
|
+
productInstanceId?: string;
|
|
4189
|
+
tenantId: string;
|
|
4190
|
+
templateCode: string;
|
|
4191
|
+
static names(): {
|
|
4192
|
+
[key: string]: string;
|
|
4193
|
+
};
|
|
4194
|
+
static types(): {
|
|
4195
|
+
[key: string]: any;
|
|
4196
|
+
};
|
|
4197
|
+
constructor(map?: {
|
|
4198
|
+
[key: string]: any;
|
|
4199
|
+
});
|
|
4200
|
+
}
|
|
4201
|
+
export declare class AddInnerTemplateResponse extends $tea.Model {
|
|
4202
|
+
reqMsgId?: string;
|
|
4203
|
+
resultCode?: string;
|
|
4204
|
+
resultMsg?: string;
|
|
4205
|
+
static names(): {
|
|
4206
|
+
[key: string]: string;
|
|
4207
|
+
};
|
|
4208
|
+
static types(): {
|
|
4209
|
+
[key: string]: any;
|
|
4210
|
+
};
|
|
4211
|
+
constructor(map?: {
|
|
4212
|
+
[key: string]: any;
|
|
4213
|
+
});
|
|
4214
|
+
}
|
|
4215
|
+
export declare class PagequeryInnerPendingeventRequest extends $tea.Model {
|
|
4216
|
+
authToken?: string;
|
|
4217
|
+
productInstanceId?: string;
|
|
4218
|
+
tenantId: string;
|
|
4219
|
+
statusList?: string[];
|
|
4220
|
+
type?: string;
|
|
4221
|
+
pageInfo: PageQuery;
|
|
4222
|
+
static names(): {
|
|
4223
|
+
[key: string]: string;
|
|
4224
|
+
};
|
|
4225
|
+
static types(): {
|
|
4226
|
+
[key: string]: any;
|
|
4227
|
+
};
|
|
4228
|
+
constructor(map?: {
|
|
4229
|
+
[key: string]: any;
|
|
4230
|
+
});
|
|
4231
|
+
}
|
|
4232
|
+
export declare class PagequeryInnerPendingeventResponse extends $tea.Model {
|
|
4233
|
+
reqMsgId?: string;
|
|
4234
|
+
resultCode?: string;
|
|
4235
|
+
resultMsg?: string;
|
|
4236
|
+
total?: number;
|
|
4237
|
+
pendingEventInfoList?: PendingEventInfo[];
|
|
4238
|
+
static names(): {
|
|
4239
|
+
[key: string]: string;
|
|
4240
|
+
};
|
|
4241
|
+
static types(): {
|
|
4242
|
+
[key: string]: any;
|
|
4243
|
+
};
|
|
4244
|
+
constructor(map?: {
|
|
4245
|
+
[key: string]: any;
|
|
4246
|
+
});
|
|
4247
|
+
}
|
|
3977
4248
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
3978
4249
|
authToken?: string;
|
|
3979
4250
|
productInstanceId?: string;
|
|
@@ -4210,6 +4481,66 @@ export declare class UpdateMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
4210
4481
|
[key: string]: any;
|
|
4211
4482
|
});
|
|
4212
4483
|
}
|
|
4484
|
+
export declare class AddMerchantexpandDividerelationRequest extends $tea.Model {
|
|
4485
|
+
authToken?: string;
|
|
4486
|
+
productInstanceId?: string;
|
|
4487
|
+
merchantId: string;
|
|
4488
|
+
divideBindingTransInInfoList: DivideBindingTransInInfo[];
|
|
4489
|
+
divideRadio?: string;
|
|
4490
|
+
static names(): {
|
|
4491
|
+
[key: string]: string;
|
|
4492
|
+
};
|
|
4493
|
+
static types(): {
|
|
4494
|
+
[key: string]: any;
|
|
4495
|
+
};
|
|
4496
|
+
constructor(map?: {
|
|
4497
|
+
[key: string]: any;
|
|
4498
|
+
});
|
|
4499
|
+
}
|
|
4500
|
+
export declare class AddMerchantexpandDividerelationResponse extends $tea.Model {
|
|
4501
|
+
reqMsgId?: string;
|
|
4502
|
+
resultCode?: string;
|
|
4503
|
+
resultMsg?: string;
|
|
4504
|
+
static names(): {
|
|
4505
|
+
[key: string]: string;
|
|
4506
|
+
};
|
|
4507
|
+
static types(): {
|
|
4508
|
+
[key: string]: any;
|
|
4509
|
+
};
|
|
4510
|
+
constructor(map?: {
|
|
4511
|
+
[key: string]: any;
|
|
4512
|
+
});
|
|
4513
|
+
}
|
|
4514
|
+
export declare class QueryMerchantexpandDividerelationRequest extends $tea.Model {
|
|
4515
|
+
authToken?: string;
|
|
4516
|
+
productInstanceId?: string;
|
|
4517
|
+
merchantId: string;
|
|
4518
|
+
static names(): {
|
|
4519
|
+
[key: string]: string;
|
|
4520
|
+
};
|
|
4521
|
+
static types(): {
|
|
4522
|
+
[key: string]: any;
|
|
4523
|
+
};
|
|
4524
|
+
constructor(map?: {
|
|
4525
|
+
[key: string]: any;
|
|
4526
|
+
});
|
|
4527
|
+
}
|
|
4528
|
+
export declare class QueryMerchantexpandDividerelationResponse extends $tea.Model {
|
|
4529
|
+
reqMsgId?: string;
|
|
4530
|
+
resultCode?: string;
|
|
4531
|
+
resultMsg?: string;
|
|
4532
|
+
alipayPidList?: string[];
|
|
4533
|
+
divideRadio?: string;
|
|
4534
|
+
static names(): {
|
|
4535
|
+
[key: string]: string;
|
|
4536
|
+
};
|
|
4537
|
+
static types(): {
|
|
4538
|
+
[key: string]: any;
|
|
4539
|
+
};
|
|
4540
|
+
constructor(map?: {
|
|
4541
|
+
[key: string]: any;
|
|
4542
|
+
});
|
|
4543
|
+
}
|
|
4213
4544
|
export declare class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
4214
4545
|
authToken?: string;
|
|
4215
4546
|
productInstanceId?: string;
|
|
@@ -4319,6 +4650,7 @@ export declare class QueryRiskGoRequest extends $tea.Model {
|
|
|
4319
4650
|
authToken?: string;
|
|
4320
4651
|
productInstanceId?: string;
|
|
4321
4652
|
riskType: string;
|
|
4653
|
+
flowId: string;
|
|
4322
4654
|
businessCode: string;
|
|
4323
4655
|
scene: string;
|
|
4324
4656
|
userId?: string;
|
|
@@ -4335,6 +4667,7 @@ export declare class QueryRiskGoRequest extends $tea.Model {
|
|
|
4335
4667
|
awardingQueryModel?: AwardingQueryModel;
|
|
4336
4668
|
farmingQueryModel?: FarmingQueryModel;
|
|
4337
4669
|
baddebtQueryModel?: BaddebtQueryModel;
|
|
4670
|
+
merchantAppId?: string;
|
|
4338
4671
|
static names(): {
|
|
4339
4672
|
[key: string]: string;
|
|
4340
4673
|
};
|
|
@@ -4360,11 +4693,48 @@ export declare class QueryRiskGoResponse extends $tea.Model {
|
|
|
4360
4693
|
[key: string]: any;
|
|
4361
4694
|
});
|
|
4362
4695
|
}
|
|
4696
|
+
export declare class UploadInnerRiskcallRequest extends $tea.Model {
|
|
4697
|
+
authToken?: string;
|
|
4698
|
+
productInstanceId?: string;
|
|
4699
|
+
idempotentId: string;
|
|
4700
|
+
pid: string;
|
|
4701
|
+
serviceAmount: number;
|
|
4702
|
+
startTime: string;
|
|
4703
|
+
endTime: string;
|
|
4704
|
+
alipayInstanceId: string;
|
|
4705
|
+
extInfo?: string;
|
|
4706
|
+
static names(): {
|
|
4707
|
+
[key: string]: string;
|
|
4708
|
+
};
|
|
4709
|
+
static types(): {
|
|
4710
|
+
[key: string]: any;
|
|
4711
|
+
};
|
|
4712
|
+
constructor(map?: {
|
|
4713
|
+
[key: string]: any;
|
|
4714
|
+
});
|
|
4715
|
+
}
|
|
4716
|
+
export declare class UploadInnerRiskcallResponse extends $tea.Model {
|
|
4717
|
+
reqMsgId?: string;
|
|
4718
|
+
resultCode?: string;
|
|
4719
|
+
resultMsg?: string;
|
|
4720
|
+
result?: boolean;
|
|
4721
|
+
static names(): {
|
|
4722
|
+
[key: string]: string;
|
|
4723
|
+
};
|
|
4724
|
+
static types(): {
|
|
4725
|
+
[key: string]: any;
|
|
4726
|
+
};
|
|
4727
|
+
constructor(map?: {
|
|
4728
|
+
[key: string]: any;
|
|
4729
|
+
});
|
|
4730
|
+
}
|
|
4363
4731
|
export declare class AllSignTemplateRequest extends $tea.Model {
|
|
4364
4732
|
authToken?: string;
|
|
4365
4733
|
productInstanceId?: string;
|
|
4366
4734
|
contractType?: string;
|
|
4367
4735
|
merchantId?: string;
|
|
4736
|
+
fundId?: string;
|
|
4737
|
+
fundType?: string;
|
|
4368
4738
|
templateId?: string;
|
|
4369
4739
|
static names(): {
|
|
4370
4740
|
[key: string]: string;
|
|
@@ -5281,6 +5651,102 @@ export declare class GetTradeOrderfinanceinfoResponse extends $tea.Model {
|
|
|
5281
5651
|
[key: string]: any;
|
|
5282
5652
|
});
|
|
5283
5653
|
}
|
|
5654
|
+
export declare class SyncTradeUserpromisedelayRequest extends $tea.Model {
|
|
5655
|
+
authToken?: string;
|
|
5656
|
+
productInstanceId?: string;
|
|
5657
|
+
orderId: string;
|
|
5658
|
+
merchantId: string;
|
|
5659
|
+
delayStartPeriod: number;
|
|
5660
|
+
delayTimeUnit: string;
|
|
5661
|
+
delayTimeValue: number;
|
|
5662
|
+
reason: string;
|
|
5663
|
+
static names(): {
|
|
5664
|
+
[key: string]: string;
|
|
5665
|
+
};
|
|
5666
|
+
static types(): {
|
|
5667
|
+
[key: string]: any;
|
|
5668
|
+
};
|
|
5669
|
+
constructor(map?: {
|
|
5670
|
+
[key: string]: any;
|
|
5671
|
+
});
|
|
5672
|
+
}
|
|
5673
|
+
export declare class SyncTradeUserpromisedelayResponse extends $tea.Model {
|
|
5674
|
+
reqMsgId?: string;
|
|
5675
|
+
resultCode?: string;
|
|
5676
|
+
resultMsg?: string;
|
|
5677
|
+
static names(): {
|
|
5678
|
+
[key: string]: string;
|
|
5679
|
+
};
|
|
5680
|
+
static types(): {
|
|
5681
|
+
[key: string]: any;
|
|
5682
|
+
};
|
|
5683
|
+
constructor(map?: {
|
|
5684
|
+
[key: string]: any;
|
|
5685
|
+
});
|
|
5686
|
+
}
|
|
5687
|
+
export declare class PauseTradeUserpromiseRequest extends $tea.Model {
|
|
5688
|
+
authToken?: string;
|
|
5689
|
+
productInstanceId?: string;
|
|
5690
|
+
orderId: string;
|
|
5691
|
+
merchantId: string;
|
|
5692
|
+
reason: string;
|
|
5693
|
+
static names(): {
|
|
5694
|
+
[key: string]: string;
|
|
5695
|
+
};
|
|
5696
|
+
static types(): {
|
|
5697
|
+
[key: string]: any;
|
|
5698
|
+
};
|
|
5699
|
+
constructor(map?: {
|
|
5700
|
+
[key: string]: any;
|
|
5701
|
+
});
|
|
5702
|
+
}
|
|
5703
|
+
export declare class PauseTradeUserpromiseResponse extends $tea.Model {
|
|
5704
|
+
reqMsgId?: string;
|
|
5705
|
+
resultCode?: string;
|
|
5706
|
+
resultMsg?: string;
|
|
5707
|
+
autoResumeDay?: string;
|
|
5708
|
+
autoWithholdRestartDay?: string;
|
|
5709
|
+
static names(): {
|
|
5710
|
+
[key: string]: string;
|
|
5711
|
+
};
|
|
5712
|
+
static types(): {
|
|
5713
|
+
[key: string]: any;
|
|
5714
|
+
};
|
|
5715
|
+
constructor(map?: {
|
|
5716
|
+
[key: string]: any;
|
|
5717
|
+
});
|
|
5718
|
+
}
|
|
5719
|
+
export declare class ResumeTradeUserpromiseRequest extends $tea.Model {
|
|
5720
|
+
authToken?: string;
|
|
5721
|
+
productInstanceId?: string;
|
|
5722
|
+
orderId: string;
|
|
5723
|
+
merchantId: string;
|
|
5724
|
+
static names(): {
|
|
5725
|
+
[key: string]: string;
|
|
5726
|
+
};
|
|
5727
|
+
static types(): {
|
|
5728
|
+
[key: string]: any;
|
|
5729
|
+
};
|
|
5730
|
+
constructor(map?: {
|
|
5731
|
+
[key: string]: any;
|
|
5732
|
+
});
|
|
5733
|
+
}
|
|
5734
|
+
export declare class ResumeTradeUserpromiseResponse extends $tea.Model {
|
|
5735
|
+
reqMsgId?: string;
|
|
5736
|
+
resultCode?: string;
|
|
5737
|
+
resultMsg?: string;
|
|
5738
|
+
resumeDay?: string;
|
|
5739
|
+
withholdRestartDay?: string;
|
|
5740
|
+
static names(): {
|
|
5741
|
+
[key: string]: string;
|
|
5742
|
+
};
|
|
5743
|
+
static types(): {
|
|
5744
|
+
[key: string]: any;
|
|
5745
|
+
};
|
|
5746
|
+
constructor(map?: {
|
|
5747
|
+
[key: string]: any;
|
|
5748
|
+
});
|
|
5749
|
+
}
|
|
5284
5750
|
export declare class CreateWithholdSignRequest extends $tea.Model {
|
|
5285
5751
|
authToken?: string;
|
|
5286
5752
|
productInstanceId?: string;
|
|
@@ -6067,6 +6533,44 @@ export default class Client {
|
|
|
6067
6533
|
getFundOrderfinanceinfoEx(request: GetFundOrderfinanceinfoRequest, headers: {
|
|
6068
6534
|
[key: string]: string;
|
|
6069
6535
|
}, runtime: $Util.RuntimeOptions): Promise<GetFundOrderfinanceinfoResponse>;
|
|
6536
|
+
/**
|
|
6537
|
+
* Description: 添加分账绑定关系
|
|
6538
|
+
* Summary: 添加分账绑定关系
|
|
6539
|
+
*/
|
|
6540
|
+
addFundDividerelation(request: AddFundDividerelationRequest): Promise<AddFundDividerelationResponse>;
|
|
6541
|
+
/**
|
|
6542
|
+
* Description: 添加分账绑定关系
|
|
6543
|
+
* Summary: 添加分账绑定关系
|
|
6544
|
+
*/
|
|
6545
|
+
addFundDividerelationEx(request: AddFundDividerelationRequest, headers: {
|
|
6546
|
+
[key: string]: string;
|
|
6547
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddFundDividerelationResponse>;
|
|
6548
|
+
/**
|
|
6549
|
+
* Description: 分账绑定关系查询
|
|
6550
|
+
* Summary: 分账绑定关系查询
|
|
6551
|
+
*/
|
|
6552
|
+
queryFundDividerelation(request: QueryFundDividerelationRequest): Promise<QueryFundDividerelationResponse>;
|
|
6553
|
+
/**
|
|
6554
|
+
* Description: 分账绑定关系查询
|
|
6555
|
+
* Summary: 分账绑定关系查询
|
|
6556
|
+
*/
|
|
6557
|
+
queryFundDividerelationEx(request: QueryFundDividerelationRequest, headers: {
|
|
6558
|
+
[key: string]: string;
|
|
6559
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryFundDividerelationResponse>;
|
|
6560
|
+
/**
|
|
6561
|
+
* Description: ● 本接口获取用信授权
|
|
6562
|
+
● 本接口返回成功后,仅代表用信申请成功;不代表订单融资发起申请成功,融资申请结果通过异步消息通知
|
|
6563
|
+
* Summary: 用信申请接口
|
|
6564
|
+
*/
|
|
6565
|
+
applyFundCreditutilization(request: ApplyFundCreditutilizationRequest): Promise<ApplyFundCreditutilizationResponse>;
|
|
6566
|
+
/**
|
|
6567
|
+
* Description: ● 本接口获取用信授权
|
|
6568
|
+
● 本接口返回成功后,仅代表用信申请成功;不代表订单融资发起申请成功,融资申请结果通过异步消息通知
|
|
6569
|
+
* Summary: 用信申请接口
|
|
6570
|
+
*/
|
|
6571
|
+
applyFundCreditutilizationEx(request: ApplyFundCreditutilizationRequest, headers: {
|
|
6572
|
+
[key: string]: string;
|
|
6573
|
+
}, runtime: $Util.RuntimeOptions): Promise<ApplyFundCreditutilizationResponse>;
|
|
6070
6574
|
/**
|
|
6071
6575
|
* Description: 内部调用,商品信息获取
|
|
6072
6576
|
* Summary: 商品信息获取
|
|
@@ -6897,6 +7401,54 @@ export default class Client {
|
|
|
6897
7401
|
submitInnerTemplatesyncreviewEx(request: SubmitInnerTemplatesyncreviewRequest, headers: {
|
|
6898
7402
|
[key: string]: string;
|
|
6899
7403
|
}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerTemplatesyncreviewResponse>;
|
|
7404
|
+
/**
|
|
7405
|
+
* Description: 待办事件处理
|
|
7406
|
+
* Summary: 待办事件处理
|
|
7407
|
+
*/
|
|
7408
|
+
submitInnerPendingevent(request: SubmitInnerPendingeventRequest): Promise<SubmitInnerPendingeventResponse>;
|
|
7409
|
+
/**
|
|
7410
|
+
* Description: 待办事件处理
|
|
7411
|
+
* Summary: 待办事件处理
|
|
7412
|
+
*/
|
|
7413
|
+
submitInnerPendingeventEx(request: SubmitInnerPendingeventRequest, headers: {
|
|
7414
|
+
[key: string]: string;
|
|
7415
|
+
}, runtime: $Util.RuntimeOptions): Promise<SubmitInnerPendingeventResponse>;
|
|
7416
|
+
/**
|
|
7417
|
+
* Description: 待办事件详情查询
|
|
7418
|
+
* Summary: 待办事件详情查询
|
|
7419
|
+
*/
|
|
7420
|
+
detailInnerPendingevent(request: DetailInnerPendingeventRequest): Promise<DetailInnerPendingeventResponse>;
|
|
7421
|
+
/**
|
|
7422
|
+
* Description: 待办事件详情查询
|
|
7423
|
+
* Summary: 待办事件详情查询
|
|
7424
|
+
*/
|
|
7425
|
+
detailInnerPendingeventEx(request: DetailInnerPendingeventRequest, headers: {
|
|
7426
|
+
[key: string]: string;
|
|
7427
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerPendingeventResponse>;
|
|
7428
|
+
/**
|
|
7429
|
+
* Description: 合同模板制作根据已有模板新增合同模板文件
|
|
7430
|
+
* Summary: 根据已有模板新增合同模板文件
|
|
7431
|
+
*/
|
|
7432
|
+
addInnerTemplate(request: AddInnerTemplateRequest): Promise<AddInnerTemplateResponse>;
|
|
7433
|
+
/**
|
|
7434
|
+
* Description: 合同模板制作根据已有模板新增合同模板文件
|
|
7435
|
+
* Summary: 根据已有模板新增合同模板文件
|
|
7436
|
+
*/
|
|
7437
|
+
addInnerTemplateEx(request: AddInnerTemplateRequest, headers: {
|
|
7438
|
+
[key: string]: string;
|
|
7439
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddInnerTemplateResponse>;
|
|
7440
|
+
/**
|
|
7441
|
+
* Description: 查询待办列表
|
|
7442
|
+
* Summary: 查询待办列表
|
|
7443
|
+
*/
|
|
7444
|
+
pagequeryInnerPendingevent(request: PagequeryInnerPendingeventRequest): Promise<PagequeryInnerPendingeventResponse>;
|
|
7445
|
+
/**
|
|
7446
|
+
* Description: 查询待办列表
|
|
7447
|
+
* Summary: 查询待办列表
|
|
7448
|
+
*/
|
|
7449
|
+
pagequeryInnerPendingeventEx(request: PagequeryInnerPendingeventRequest, headers: {
|
|
7450
|
+
[key: string]: string;
|
|
7451
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerPendingeventResponse>;
|
|
6900
7452
|
/**
|
|
6901
7453
|
* Description: 一键投保
|
|
6902
7454
|
* Summary: 投保
|
|
@@ -6981,6 +7533,30 @@ export default class Client {
|
|
|
6981
7533
|
updateMerchantexpandMerchantEx(request: UpdateMerchantexpandMerchantRequest, headers: {
|
|
6982
7534
|
[key: string]: string;
|
|
6983
7535
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateMerchantexpandMerchantResponse>;
|
|
7536
|
+
/**
|
|
7537
|
+
* Description: 添加分账绑定关系
|
|
7538
|
+
* Summary: 添加分账绑定关系
|
|
7539
|
+
*/
|
|
7540
|
+
addMerchantexpandDividerelation(request: AddMerchantexpandDividerelationRequest): Promise<AddMerchantexpandDividerelationResponse>;
|
|
7541
|
+
/**
|
|
7542
|
+
* Description: 添加分账绑定关系
|
|
7543
|
+
* Summary: 添加分账绑定关系
|
|
7544
|
+
*/
|
|
7545
|
+
addMerchantexpandDividerelationEx(request: AddMerchantexpandDividerelationRequest, headers: {
|
|
7546
|
+
[key: string]: string;
|
|
7547
|
+
}, runtime: $Util.RuntimeOptions): Promise<AddMerchantexpandDividerelationResponse>;
|
|
7548
|
+
/**
|
|
7549
|
+
* Description: 分账绑定关系查询
|
|
7550
|
+
* Summary: 分账绑定关系查询
|
|
7551
|
+
*/
|
|
7552
|
+
queryMerchantexpandDividerelation(request: QueryMerchantexpandDividerelationRequest): Promise<QueryMerchantexpandDividerelationResponse>;
|
|
7553
|
+
/**
|
|
7554
|
+
* Description: 分账绑定关系查询
|
|
7555
|
+
* Summary: 分账绑定关系查询
|
|
7556
|
+
*/
|
|
7557
|
+
queryMerchantexpandDividerelationEx(request: QueryMerchantexpandDividerelationRequest, headers: {
|
|
7558
|
+
[key: string]: string;
|
|
7559
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryMerchantexpandDividerelationResponse>;
|
|
6984
7560
|
/**
|
|
6985
7561
|
* Description: 可信身份认证,创建认证
|
|
6986
7562
|
* Summary: 创建认证
|
|
@@ -7029,6 +7605,18 @@ export default class Client {
|
|
|
7029
7605
|
queryRiskGoEx(request: QueryRiskGoRequest, headers: {
|
|
7030
7606
|
[key: string]: string;
|
|
7031
7607
|
}, runtime: $Util.RuntimeOptions): Promise<QueryRiskGoResponse>;
|
|
7608
|
+
/**
|
|
7609
|
+
* Description: 小程序云调用,上报计量信息
|
|
7610
|
+
* Summary: 小程序云调用,上报计量信息
|
|
7611
|
+
*/
|
|
7612
|
+
uploadInnerRiskcall(request: UploadInnerRiskcallRequest): Promise<UploadInnerRiskcallResponse>;
|
|
7613
|
+
/**
|
|
7614
|
+
* Description: 小程序云调用,上报计量信息
|
|
7615
|
+
* Summary: 小程序云调用,上报计量信息
|
|
7616
|
+
*/
|
|
7617
|
+
uploadInnerRiskcallEx(request: UploadInnerRiskcallRequest, headers: {
|
|
7618
|
+
[key: string]: string;
|
|
7619
|
+
}, runtime: $Util.RuntimeOptions): Promise<UploadInnerRiskcallResponse>;
|
|
7032
7620
|
/**
|
|
7033
7621
|
* Description: 电子合同签署的合同模板查询服务
|
|
7034
7622
|
* Summary: 电子合同签署的合同模板查询服务
|
|
@@ -7353,6 +7941,42 @@ export default class Client {
|
|
|
7353
7941
|
getTradeOrderfinanceinfoEx(request: GetTradeOrderfinanceinfoRequest, headers: {
|
|
7354
7942
|
[key: string]: string;
|
|
7355
7943
|
}, runtime: $Util.RuntimeOptions): Promise<GetTradeOrderfinanceinfoResponse>;
|
|
7944
|
+
/**
|
|
7945
|
+
* Description: 订单代扣计划延期
|
|
7946
|
+
* Summary: 订单代扣计划延期
|
|
7947
|
+
*/
|
|
7948
|
+
syncTradeUserpromisedelay(request: SyncTradeUserpromisedelayRequest): Promise<SyncTradeUserpromisedelayResponse>;
|
|
7949
|
+
/**
|
|
7950
|
+
* Description: 订单代扣计划延期
|
|
7951
|
+
* Summary: 订单代扣计划延期
|
|
7952
|
+
*/
|
|
7953
|
+
syncTradeUserpromisedelayEx(request: SyncTradeUserpromisedelayRequest, headers: {
|
|
7954
|
+
[key: string]: string;
|
|
7955
|
+
}, runtime: $Util.RuntimeOptions): Promise<SyncTradeUserpromisedelayResponse>;
|
|
7956
|
+
/**
|
|
7957
|
+
* Description: 订单代扣计划暂停
|
|
7958
|
+
* Summary: 订单代扣计划暂停
|
|
7959
|
+
*/
|
|
7960
|
+
pauseTradeUserpromise(request: PauseTradeUserpromiseRequest): Promise<PauseTradeUserpromiseResponse>;
|
|
7961
|
+
/**
|
|
7962
|
+
* Description: 订单代扣计划暂停
|
|
7963
|
+
* Summary: 订单代扣计划暂停
|
|
7964
|
+
*/
|
|
7965
|
+
pauseTradeUserpromiseEx(request: PauseTradeUserpromiseRequest, headers: {
|
|
7966
|
+
[key: string]: string;
|
|
7967
|
+
}, runtime: $Util.RuntimeOptions): Promise<PauseTradeUserpromiseResponse>;
|
|
7968
|
+
/**
|
|
7969
|
+
* Description: 代扣计划重启
|
|
7970
|
+
* Summary: 代扣计划重启
|
|
7971
|
+
*/
|
|
7972
|
+
resumeTradeUserpromise(request: ResumeTradeUserpromiseRequest): Promise<ResumeTradeUserpromiseResponse>;
|
|
7973
|
+
/**
|
|
7974
|
+
* Description: 代扣计划重启
|
|
7975
|
+
* Summary: 代扣计划重启
|
|
7976
|
+
*/
|
|
7977
|
+
resumeTradeUserpromiseEx(request: ResumeTradeUserpromiseRequest, headers: {
|
|
7978
|
+
[key: string]: string;
|
|
7979
|
+
}, runtime: $Util.RuntimeOptions): Promise<ResumeTradeUserpromiseResponse>;
|
|
7356
7980
|
/**
|
|
7357
7981
|
* Description: 代扣签约创建
|
|
7358
7982
|
* Summary: 代扣签约
|