@antchain/ato 1.14.15 → 1.14.26
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 +334 -9
- package/dist/client.js +482 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +698 -38
package/dist/client.d.ts
CHANGED
|
@@ -858,6 +858,20 @@ export declare class OrderMsgInfo extends $tea.Model {
|
|
|
858
858
|
[key: string]: any;
|
|
859
859
|
});
|
|
860
860
|
}
|
|
861
|
+
export declare class CustomerPersonInfo extends $tea.Model {
|
|
862
|
+
alipayLogonId: string;
|
|
863
|
+
alipayBindMobile: string;
|
|
864
|
+
customerServiceName: string;
|
|
865
|
+
static names(): {
|
|
866
|
+
[key: string]: string;
|
|
867
|
+
};
|
|
868
|
+
static types(): {
|
|
869
|
+
[key: string]: any;
|
|
870
|
+
};
|
|
871
|
+
constructor(map?: {
|
|
872
|
+
[key: string]: any;
|
|
873
|
+
});
|
|
874
|
+
}
|
|
861
875
|
export declare class AwardingQueryModel extends $tea.Model {
|
|
862
876
|
opposingUserid?: string;
|
|
863
877
|
opposingOpenId?: string;
|
|
@@ -1079,6 +1093,37 @@ export declare class XNameValuePair extends $tea.Model {
|
|
|
1079
1093
|
[key: string]: any;
|
|
1080
1094
|
});
|
|
1081
1095
|
}
|
|
1096
|
+
export declare class TransferBrokerUserdataRequest extends $tea.Model {
|
|
1097
|
+
authToken?: string;
|
|
1098
|
+
productInstanceId?: string;
|
|
1099
|
+
dataId: string;
|
|
1100
|
+
dataType: string;
|
|
1101
|
+
dataContent: string;
|
|
1102
|
+
static names(): {
|
|
1103
|
+
[key: string]: string;
|
|
1104
|
+
};
|
|
1105
|
+
static types(): {
|
|
1106
|
+
[key: string]: any;
|
|
1107
|
+
};
|
|
1108
|
+
constructor(map?: {
|
|
1109
|
+
[key: string]: any;
|
|
1110
|
+
});
|
|
1111
|
+
}
|
|
1112
|
+
export declare class TransferBrokerUserdataResponse extends $tea.Model {
|
|
1113
|
+
reqMsgId?: string;
|
|
1114
|
+
resultCode?: string;
|
|
1115
|
+
resultMsg?: string;
|
|
1116
|
+
dataId?: string;
|
|
1117
|
+
static names(): {
|
|
1118
|
+
[key: string]: string;
|
|
1119
|
+
};
|
|
1120
|
+
static types(): {
|
|
1121
|
+
[key: string]: any;
|
|
1122
|
+
};
|
|
1123
|
+
constructor(map?: {
|
|
1124
|
+
[key: string]: any;
|
|
1125
|
+
});
|
|
1126
|
+
}
|
|
1082
1127
|
export declare class SyncFundSplittingRequest extends $tea.Model {
|
|
1083
1128
|
authToken?: string;
|
|
1084
1129
|
productInstanceId?: string;
|
|
@@ -2222,6 +2267,69 @@ export declare class QueryFundAssetpackageResponse extends $tea.Model {
|
|
|
2222
2267
|
[key: string]: any;
|
|
2223
2268
|
});
|
|
2224
2269
|
}
|
|
2270
|
+
export declare class ConfirmFundUsercancelRequest extends $tea.Model {
|
|
2271
|
+
authToken?: string;
|
|
2272
|
+
productInstanceId?: string;
|
|
2273
|
+
orderId: string;
|
|
2274
|
+
merchantId: string;
|
|
2275
|
+
fundId: string;
|
|
2276
|
+
static names(): {
|
|
2277
|
+
[key: string]: string;
|
|
2278
|
+
};
|
|
2279
|
+
static types(): {
|
|
2280
|
+
[key: string]: any;
|
|
2281
|
+
};
|
|
2282
|
+
constructor(map?: {
|
|
2283
|
+
[key: string]: any;
|
|
2284
|
+
});
|
|
2285
|
+
}
|
|
2286
|
+
export declare class ConfirmFundUsercancelResponse extends $tea.Model {
|
|
2287
|
+
reqMsgId?: string;
|
|
2288
|
+
resultCode?: string;
|
|
2289
|
+
resultMsg?: string;
|
|
2290
|
+
static names(): {
|
|
2291
|
+
[key: string]: string;
|
|
2292
|
+
};
|
|
2293
|
+
static types(): {
|
|
2294
|
+
[key: string]: any;
|
|
2295
|
+
};
|
|
2296
|
+
constructor(map?: {
|
|
2297
|
+
[key: string]: any;
|
|
2298
|
+
});
|
|
2299
|
+
}
|
|
2300
|
+
export declare class RepayFundPlanRequest extends $tea.Model {
|
|
2301
|
+
authToken?: string;
|
|
2302
|
+
productInstanceId?: string;
|
|
2303
|
+
orderId: string;
|
|
2304
|
+
merchantId: string;
|
|
2305
|
+
fundId: string;
|
|
2306
|
+
termIndex: number;
|
|
2307
|
+
amount: number;
|
|
2308
|
+
paymentDescription: string;
|
|
2309
|
+
static names(): {
|
|
2310
|
+
[key: string]: string;
|
|
2311
|
+
};
|
|
2312
|
+
static types(): {
|
|
2313
|
+
[key: string]: any;
|
|
2314
|
+
};
|
|
2315
|
+
constructor(map?: {
|
|
2316
|
+
[key: string]: any;
|
|
2317
|
+
});
|
|
2318
|
+
}
|
|
2319
|
+
export declare class RepayFundPlanResponse extends $tea.Model {
|
|
2320
|
+
reqMsgId?: string;
|
|
2321
|
+
resultCode?: string;
|
|
2322
|
+
resultMsg?: string;
|
|
2323
|
+
static names(): {
|
|
2324
|
+
[key: string]: string;
|
|
2325
|
+
};
|
|
2326
|
+
static types(): {
|
|
2327
|
+
[key: string]: any;
|
|
2328
|
+
};
|
|
2329
|
+
constructor(map?: {
|
|
2330
|
+
[key: string]: any;
|
|
2331
|
+
});
|
|
2332
|
+
}
|
|
2225
2333
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
2226
2334
|
authToken?: string;
|
|
2227
2335
|
productInstanceId?: string;
|
|
@@ -3194,6 +3302,7 @@ export declare class QueryInnerMerchantpayexpandResponse extends $tea.Model {
|
|
|
3194
3302
|
expandStatus?: string;
|
|
3195
3303
|
expandFailReason?: string;
|
|
3196
3304
|
showCustomerServiceBanner?: boolean;
|
|
3305
|
+
zftExpandSuccessful?: boolean;
|
|
3197
3306
|
static names(): {
|
|
3198
3307
|
[key: string]: string;
|
|
3199
3308
|
};
|
|
@@ -4172,12 +4281,13 @@ export declare class CreateInnerCustomerserviceRequest extends $tea.Model {
|
|
|
4172
4281
|
merchantName?: string;
|
|
4173
4282
|
processType: string;
|
|
4174
4283
|
serviceProviderName?: string;
|
|
4175
|
-
alipayBindMobile: string;
|
|
4176
|
-
alipayLogonId: string;
|
|
4177
4284
|
customerServicePhone: string;
|
|
4178
|
-
|
|
4285
|
+
alipayBindMobile?: string;
|
|
4286
|
+
alipayLogonId?: string;
|
|
4287
|
+
customerServiceName?: string;
|
|
4179
4288
|
onlineSupportSiteUrl?: string;
|
|
4180
|
-
customerComplaintIssues
|
|
4289
|
+
customerComplaintIssues?: string;
|
|
4290
|
+
customerPersonInfoList?: CustomerPersonInfo[];
|
|
4181
4291
|
expandMode: string;
|
|
4182
4292
|
static names(): {
|
|
4183
4293
|
[key: string]: string;
|
|
@@ -4208,15 +4318,16 @@ export declare class UpdateInnerCustomerserviceRequest extends $tea.Model {
|
|
|
4208
4318
|
productInstanceId?: string;
|
|
4209
4319
|
tenantId: string;
|
|
4210
4320
|
merchantId?: string;
|
|
4211
|
-
merchantName
|
|
4321
|
+
merchantName?: string;
|
|
4212
4322
|
processType: string;
|
|
4213
4323
|
serviceProviderName?: string;
|
|
4214
|
-
alipayBindMobile
|
|
4215
|
-
alipayLogonId
|
|
4324
|
+
alipayBindMobile?: string;
|
|
4325
|
+
alipayLogonId?: string;
|
|
4216
4326
|
customerServicePhone: string;
|
|
4217
|
-
customerServiceName
|
|
4327
|
+
customerServiceName?: string;
|
|
4218
4328
|
onlineSupportSiteUrl?: string;
|
|
4219
|
-
customerComplaintIssues
|
|
4329
|
+
customerComplaintIssues?: string;
|
|
4330
|
+
customerPersonInfoList?: CustomerPersonInfo[];
|
|
4220
4331
|
expandMode: string;
|
|
4221
4332
|
static names(): {
|
|
4222
4333
|
[key: string]: string;
|
|
@@ -4306,6 +4417,7 @@ export declare class DetailInnerCustomerserviceResponse extends $tea.Model {
|
|
|
4306
4417
|
customerServiceName?: string;
|
|
4307
4418
|
onlineSupportSiteUrl?: string;
|
|
4308
4419
|
customerComplaintIssues?: string;
|
|
4420
|
+
customerPersonInfoList?: CustomerPersonInfo[];
|
|
4309
4421
|
static names(): {
|
|
4310
4422
|
[key: string]: string;
|
|
4311
4423
|
};
|
|
@@ -4618,6 +4730,8 @@ export declare class UpdateInnerMerchantpayexpandRequest extends $tea.Model {
|
|
|
4618
4730
|
applicationInfo: ApplicationInfoUpdate;
|
|
4619
4731
|
payExpandId: string;
|
|
4620
4732
|
merchantId: string;
|
|
4733
|
+
tenantId: string;
|
|
4734
|
+
userName: string;
|
|
4621
4735
|
static names(): {
|
|
4622
4736
|
[key: string]: string;
|
|
4623
4737
|
};
|
|
@@ -4643,6 +4757,129 @@ export declare class UpdateInnerMerchantpayexpandResponse extends $tea.Model {
|
|
|
4643
4757
|
[key: string]: any;
|
|
4644
4758
|
});
|
|
4645
4759
|
}
|
|
4760
|
+
export declare class QueryInnerTenantaccountinfoRequest extends $tea.Model {
|
|
4761
|
+
authToken?: string;
|
|
4762
|
+
productInstanceId?: string;
|
|
4763
|
+
tenantId: string;
|
|
4764
|
+
static names(): {
|
|
4765
|
+
[key: string]: string;
|
|
4766
|
+
};
|
|
4767
|
+
static types(): {
|
|
4768
|
+
[key: string]: any;
|
|
4769
|
+
};
|
|
4770
|
+
constructor(map?: {
|
|
4771
|
+
[key: string]: any;
|
|
4772
|
+
});
|
|
4773
|
+
}
|
|
4774
|
+
export declare class QueryInnerTenantaccountinfoResponse extends $tea.Model {
|
|
4775
|
+
reqMsgId?: string;
|
|
4776
|
+
resultCode?: string;
|
|
4777
|
+
resultMsg?: string;
|
|
4778
|
+
tenantId?: string;
|
|
4779
|
+
bindMobile?: string;
|
|
4780
|
+
loginName?: string;
|
|
4781
|
+
createTime?: string;
|
|
4782
|
+
isCertified?: boolean;
|
|
4783
|
+
static names(): {
|
|
4784
|
+
[key: string]: string;
|
|
4785
|
+
};
|
|
4786
|
+
static types(): {
|
|
4787
|
+
[key: string]: any;
|
|
4788
|
+
};
|
|
4789
|
+
constructor(map?: {
|
|
4790
|
+
[key: string]: any;
|
|
4791
|
+
});
|
|
4792
|
+
}
|
|
4793
|
+
export declare class CreateInnerTenantaccountinfoRequest extends $tea.Model {
|
|
4794
|
+
authToken?: string;
|
|
4795
|
+
productInstanceId?: string;
|
|
4796
|
+
alipayUserId: string;
|
|
4797
|
+
static names(): {
|
|
4798
|
+
[key: string]: string;
|
|
4799
|
+
};
|
|
4800
|
+
static types(): {
|
|
4801
|
+
[key: string]: any;
|
|
4802
|
+
};
|
|
4803
|
+
constructor(map?: {
|
|
4804
|
+
[key: string]: any;
|
|
4805
|
+
});
|
|
4806
|
+
}
|
|
4807
|
+
export declare class CreateInnerTenantaccountinfoResponse extends $tea.Model {
|
|
4808
|
+
reqMsgId?: string;
|
|
4809
|
+
resultCode?: string;
|
|
4810
|
+
resultMsg?: string;
|
|
4811
|
+
tenantId?: string;
|
|
4812
|
+
loginName?: string;
|
|
4813
|
+
static names(): {
|
|
4814
|
+
[key: string]: string;
|
|
4815
|
+
};
|
|
4816
|
+
static types(): {
|
|
4817
|
+
[key: string]: any;
|
|
4818
|
+
};
|
|
4819
|
+
constructor(map?: {
|
|
4820
|
+
[key: string]: any;
|
|
4821
|
+
});
|
|
4822
|
+
}
|
|
4823
|
+
export declare class GetInnerAgentcustomerserviceRequest extends $tea.Model {
|
|
4824
|
+
authToken?: string;
|
|
4825
|
+
productInstanceId?: string;
|
|
4826
|
+
tenantId: string;
|
|
4827
|
+
static names(): {
|
|
4828
|
+
[key: string]: string;
|
|
4829
|
+
};
|
|
4830
|
+
static types(): {
|
|
4831
|
+
[key: string]: any;
|
|
4832
|
+
};
|
|
4833
|
+
constructor(map?: {
|
|
4834
|
+
[key: string]: any;
|
|
4835
|
+
});
|
|
4836
|
+
}
|
|
4837
|
+
export declare class GetInnerAgentcustomerserviceResponse extends $tea.Model {
|
|
4838
|
+
reqMsgId?: string;
|
|
4839
|
+
resultCode?: string;
|
|
4840
|
+
resultMsg?: string;
|
|
4841
|
+
customerComplaintIssues?: string;
|
|
4842
|
+
customerPersonInfoList?: CustomerPersonInfo[];
|
|
4843
|
+
static names(): {
|
|
4844
|
+
[key: string]: string;
|
|
4845
|
+
};
|
|
4846
|
+
static types(): {
|
|
4847
|
+
[key: string]: any;
|
|
4848
|
+
};
|
|
4849
|
+
constructor(map?: {
|
|
4850
|
+
[key: string]: any;
|
|
4851
|
+
});
|
|
4852
|
+
}
|
|
4853
|
+
export declare class SaveInnerAgentcustomerserviceRequest extends $tea.Model {
|
|
4854
|
+
authToken?: string;
|
|
4855
|
+
productInstanceId?: string;
|
|
4856
|
+
tenantId: string;
|
|
4857
|
+
customerComplaintIssues: string;
|
|
4858
|
+
customerPersonInfoList: CustomerPersonInfo[];
|
|
4859
|
+
static names(): {
|
|
4860
|
+
[key: string]: string;
|
|
4861
|
+
};
|
|
4862
|
+
static types(): {
|
|
4863
|
+
[key: string]: any;
|
|
4864
|
+
};
|
|
4865
|
+
constructor(map?: {
|
|
4866
|
+
[key: string]: any;
|
|
4867
|
+
});
|
|
4868
|
+
}
|
|
4869
|
+
export declare class SaveInnerAgentcustomerserviceResponse extends $tea.Model {
|
|
4870
|
+
reqMsgId?: string;
|
|
4871
|
+
resultCode?: string;
|
|
4872
|
+
resultMsg?: string;
|
|
4873
|
+
static names(): {
|
|
4874
|
+
[key: string]: string;
|
|
4875
|
+
};
|
|
4876
|
+
static types(): {
|
|
4877
|
+
[key: string]: any;
|
|
4878
|
+
};
|
|
4879
|
+
constructor(map?: {
|
|
4880
|
+
[key: string]: any;
|
|
4881
|
+
});
|
|
4882
|
+
}
|
|
4646
4883
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
4647
4884
|
authToken?: string;
|
|
4648
4885
|
productInstanceId?: string;
|
|
@@ -6656,6 +6893,18 @@ export default class Client {
|
|
|
6656
6893
|
}, runtime: $Util.RuntimeOptions): Promise<{
|
|
6657
6894
|
[key: string]: any;
|
|
6658
6895
|
}>;
|
|
6896
|
+
/**
|
|
6897
|
+
* Description: 数据提供方可以通过此接口传输数据,触达给消费方
|
|
6898
|
+
* Summary: 用户信息传输代理
|
|
6899
|
+
*/
|
|
6900
|
+
transferBrokerUserdata(request: TransferBrokerUserdataRequest): Promise<TransferBrokerUserdataResponse>;
|
|
6901
|
+
/**
|
|
6902
|
+
* Description: 数据提供方可以通过此接口传输数据,触达给消费方
|
|
6903
|
+
* Summary: 用户信息传输代理
|
|
6904
|
+
*/
|
|
6905
|
+
transferBrokerUserdataEx(request: TransferBrokerUserdataRequest, headers: {
|
|
6906
|
+
[key: string]: string;
|
|
6907
|
+
}, runtime: $Util.RuntimeOptions): Promise<TransferBrokerUserdataResponse>;
|
|
6659
6908
|
/**
|
|
6660
6909
|
* Description: 分账流水同步
|
|
6661
6910
|
* Summary: 【仅测试环境生效】分账流水同步
|
|
@@ -7068,6 +7317,34 @@ export default class Client {
|
|
|
7068
7317
|
queryFundAssetpackageEx(request: QueryFundAssetpackageRequest, headers: {
|
|
7069
7318
|
[key: string]: string;
|
|
7070
7319
|
}, runtime: $Util.RuntimeOptions): Promise<QueryFundAssetpackageResponse>;
|
|
7320
|
+
/**
|
|
7321
|
+
* Description: 调用说明:
|
|
7322
|
+
1. 资方配置用户取消拦截能力后,用户发起取消会通知资方,自发除了发起取消商户履约外,还可以通过次接口确认用户批量取消操作,用户可以进行取消
|
|
7323
|
+
* Summary: 允许用户取消(确认用户取消)
|
|
7324
|
+
*/
|
|
7325
|
+
confirmFundUsercancel(request: ConfirmFundUsercancelRequest): Promise<ConfirmFundUsercancelResponse>;
|
|
7326
|
+
/**
|
|
7327
|
+
* Description: 调用说明:
|
|
7328
|
+
1. 资方配置用户取消拦截能力后,用户发起取消会通知资方,自发除了发起取消商户履约外,还可以通过次接口确认用户批量取消操作,用户可以进行取消
|
|
7329
|
+
* Summary: 允许用户取消(确认用户取消)
|
|
7330
|
+
*/
|
|
7331
|
+
confirmFundUsercancelEx(request: ConfirmFundUsercancelRequest, headers: {
|
|
7332
|
+
[key: string]: string;
|
|
7333
|
+
}, runtime: $Util.RuntimeOptions): Promise<ConfirmFundUsercancelResponse>;
|
|
7334
|
+
/**
|
|
7335
|
+
* Description: 调用说明:
|
|
7336
|
+
1. 当商户通过其他方式还款后,通过次接口同步信息,同步完成后会将扣款进行取消
|
|
7337
|
+
* Summary: 商户履约其他方式还款(单期取消)
|
|
7338
|
+
*/
|
|
7339
|
+
repayFundPlan(request: RepayFundPlanRequest): Promise<RepayFundPlanResponse>;
|
|
7340
|
+
/**
|
|
7341
|
+
* Description: 调用说明:
|
|
7342
|
+
1. 当商户通过其他方式还款后,通过次接口同步信息,同步完成后会将扣款进行取消
|
|
7343
|
+
* Summary: 商户履约其他方式还款(单期取消)
|
|
7344
|
+
*/
|
|
7345
|
+
repayFundPlanEx(request: RepayFundPlanRequest, headers: {
|
|
7346
|
+
[key: string]: string;
|
|
7347
|
+
}, runtime: $Util.RuntimeOptions): Promise<RepayFundPlanResponse>;
|
|
7071
7348
|
/**
|
|
7072
7349
|
* Description: 内部调用,商品信息获取
|
|
7073
7350
|
* Summary: 商品信息获取
|
|
@@ -7958,6 +8235,54 @@ export default class Client {
|
|
|
7958
8235
|
updateInnerMerchantpayexpandEx(request: UpdateInnerMerchantpayexpandRequest, headers: {
|
|
7959
8236
|
[key: string]: string;
|
|
7960
8237
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateInnerMerchantpayexpandResponse>;
|
|
8238
|
+
/**
|
|
8239
|
+
* Description: 查询租户账号信息
|
|
8240
|
+
* Summary: 查询租户账号信息
|
|
8241
|
+
*/
|
|
8242
|
+
queryInnerTenantaccountinfo(request: QueryInnerTenantaccountinfoRequest): Promise<QueryInnerTenantaccountinfoResponse>;
|
|
8243
|
+
/**
|
|
8244
|
+
* Description: 查询租户账号信息
|
|
8245
|
+
* Summary: 查询租户账号信息
|
|
8246
|
+
*/
|
|
8247
|
+
queryInnerTenantaccountinfoEx(request: QueryInnerTenantaccountinfoRequest, headers: {
|
|
8248
|
+
[key: string]: string;
|
|
8249
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerTenantaccountinfoResponse>;
|
|
8250
|
+
/**
|
|
8251
|
+
* Description: 创建租户账号信息
|
|
8252
|
+
* Summary: 创建租户账号信息
|
|
8253
|
+
*/
|
|
8254
|
+
createInnerTenantaccountinfo(request: CreateInnerTenantaccountinfoRequest): Promise<CreateInnerTenantaccountinfoResponse>;
|
|
8255
|
+
/**
|
|
8256
|
+
* Description: 创建租户账号信息
|
|
8257
|
+
* Summary: 创建租户账号信息
|
|
8258
|
+
*/
|
|
8259
|
+
createInnerTenantaccountinfoEx(request: CreateInnerTenantaccountinfoRequest, headers: {
|
|
8260
|
+
[key: string]: string;
|
|
8261
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInnerTenantaccountinfoResponse>;
|
|
8262
|
+
/**
|
|
8263
|
+
* Description: 查询代理商客服人员信息
|
|
8264
|
+
* Summary: 查询代理商客服人员信息
|
|
8265
|
+
*/
|
|
8266
|
+
getInnerAgentcustomerservice(request: GetInnerAgentcustomerserviceRequest): Promise<GetInnerAgentcustomerserviceResponse>;
|
|
8267
|
+
/**
|
|
8268
|
+
* Description: 查询代理商客服人员信息
|
|
8269
|
+
* Summary: 查询代理商客服人员信息
|
|
8270
|
+
*/
|
|
8271
|
+
getInnerAgentcustomerserviceEx(request: GetInnerAgentcustomerserviceRequest, headers: {
|
|
8272
|
+
[key: string]: string;
|
|
8273
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetInnerAgentcustomerserviceResponse>;
|
|
8274
|
+
/**
|
|
8275
|
+
* Description: 保存代理商客服人员信息
|
|
8276
|
+
* Summary: 保存代理商客服人员信息
|
|
8277
|
+
*/
|
|
8278
|
+
saveInnerAgentcustomerservice(request: SaveInnerAgentcustomerserviceRequest): Promise<SaveInnerAgentcustomerserviceResponse>;
|
|
8279
|
+
/**
|
|
8280
|
+
* Description: 保存代理商客服人员信息
|
|
8281
|
+
* Summary: 保存代理商客服人员信息
|
|
8282
|
+
*/
|
|
8283
|
+
saveInnerAgentcustomerserviceEx(request: SaveInnerAgentcustomerserviceRequest, headers: {
|
|
8284
|
+
[key: string]: string;
|
|
8285
|
+
}, runtime: $Util.RuntimeOptions): Promise<SaveInnerAgentcustomerserviceResponse>;
|
|
7961
8286
|
/**
|
|
7962
8287
|
* Description: 一键投保
|
|
7963
8288
|
* Summary: 投保
|