@antchain/ato 1.14.12 → 1.14.25
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 +354 -10
- package/dist/client.js +515 -6
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +737 -30
package/dist/client.d.ts
CHANGED
|
@@ -788,6 +788,24 @@ export declare class MarketingScoreInfo extends $tea.Model {
|
|
|
788
788
|
[key: string]: any;
|
|
789
789
|
});
|
|
790
790
|
}
|
|
791
|
+
export declare class OrderContractInfo extends $tea.Model {
|
|
792
|
+
signNo?: string;
|
|
793
|
+
signTime?: string;
|
|
794
|
+
contractType?: string;
|
|
795
|
+
agreementType?: string;
|
|
796
|
+
templateId?: string;
|
|
797
|
+
fileName?: string;
|
|
798
|
+
downloadUrl?: string;
|
|
799
|
+
static names(): {
|
|
800
|
+
[key: string]: string;
|
|
801
|
+
};
|
|
802
|
+
static types(): {
|
|
803
|
+
[key: string]: any;
|
|
804
|
+
};
|
|
805
|
+
constructor(map?: {
|
|
806
|
+
[key: string]: any;
|
|
807
|
+
});
|
|
808
|
+
}
|
|
791
809
|
export declare class PendingEventInfo extends $tea.Model {
|
|
792
810
|
eventId?: string;
|
|
793
811
|
type?: string;
|
|
@@ -840,6 +858,20 @@ export declare class OrderMsgInfo extends $tea.Model {
|
|
|
840
858
|
[key: string]: any;
|
|
841
859
|
});
|
|
842
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
|
+
}
|
|
843
875
|
export declare class AwardingQueryModel extends $tea.Model {
|
|
844
876
|
opposingUserid?: string;
|
|
845
877
|
opposingOpenId?: string;
|
|
@@ -871,6 +903,7 @@ export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
|
871
903
|
merchantName?: string;
|
|
872
904
|
merchantServiceName?: string;
|
|
873
905
|
merchantServiceDesc?: string;
|
|
906
|
+
siteInfo?: SiteInfo[];
|
|
874
907
|
static names(): {
|
|
875
908
|
[key: string]: string;
|
|
876
909
|
};
|
|
@@ -1060,6 +1093,37 @@ export declare class XNameValuePair extends $tea.Model {
|
|
|
1060
1093
|
[key: string]: any;
|
|
1061
1094
|
});
|
|
1062
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
|
+
}
|
|
1063
1127
|
export declare class SyncFundSplittingRequest extends $tea.Model {
|
|
1064
1128
|
authToken?: string;
|
|
1065
1129
|
productInstanceId?: string;
|
|
@@ -2135,7 +2199,6 @@ export declare class QueryFundCreditauthRequest extends $tea.Model {
|
|
|
2135
2199
|
productInstanceId?: string;
|
|
2136
2200
|
fundId: string;
|
|
2137
2201
|
authId: string;
|
|
2138
|
-
authType: string;
|
|
2139
2202
|
static names(): {
|
|
2140
2203
|
[key: string]: string;
|
|
2141
2204
|
};
|
|
@@ -2204,6 +2267,69 @@ export declare class QueryFundAssetpackageResponse extends $tea.Model {
|
|
|
2204
2267
|
[key: string]: any;
|
|
2205
2268
|
});
|
|
2206
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
|
+
}
|
|
2207
2333
|
export declare class GetInnerProductRequest extends $tea.Model {
|
|
2208
2334
|
authToken?: string;
|
|
2209
2335
|
productInstanceId?: string;
|
|
@@ -3176,6 +3302,7 @@ export declare class QueryInnerMerchantpayexpandResponse extends $tea.Model {
|
|
|
3176
3302
|
expandStatus?: string;
|
|
3177
3303
|
expandFailReason?: string;
|
|
3178
3304
|
showCustomerServiceBanner?: boolean;
|
|
3305
|
+
zftExpandSuccessful?: boolean;
|
|
3179
3306
|
static names(): {
|
|
3180
3307
|
[key: string]: string;
|
|
3181
3308
|
};
|
|
@@ -4073,6 +4200,7 @@ export declare class DetailInnerOrderResponse extends $tea.Model {
|
|
|
4073
4200
|
orderPromiseInfo?: OrderPromiseInfo;
|
|
4074
4201
|
orderProductInfoList?: OrderProductInfo[];
|
|
4075
4202
|
operateDivideInfoList?: OperateDivideInfo[];
|
|
4203
|
+
orderContractInfoList?: OrderContractInfo[];
|
|
4076
4204
|
static names(): {
|
|
4077
4205
|
[key: string]: string;
|
|
4078
4206
|
};
|
|
@@ -4153,12 +4281,13 @@ export declare class CreateInnerCustomerserviceRequest extends $tea.Model {
|
|
|
4153
4281
|
merchantName?: string;
|
|
4154
4282
|
processType: string;
|
|
4155
4283
|
serviceProviderName?: string;
|
|
4156
|
-
alipayBindMobile: string;
|
|
4157
|
-
alipayLogonId: string;
|
|
4158
4284
|
customerServicePhone: string;
|
|
4159
|
-
|
|
4285
|
+
alipayBindMobile?: string;
|
|
4286
|
+
alipayLogonId?: string;
|
|
4287
|
+
customerServiceName?: string;
|
|
4160
4288
|
onlineSupportSiteUrl?: string;
|
|
4161
|
-
customerComplaintIssues
|
|
4289
|
+
customerComplaintIssues?: string;
|
|
4290
|
+
customerPersonInfoList?: CustomerPersonInfo[];
|
|
4162
4291
|
expandMode: string;
|
|
4163
4292
|
static names(): {
|
|
4164
4293
|
[key: string]: string;
|
|
@@ -4189,15 +4318,16 @@ export declare class UpdateInnerCustomerserviceRequest extends $tea.Model {
|
|
|
4189
4318
|
productInstanceId?: string;
|
|
4190
4319
|
tenantId: string;
|
|
4191
4320
|
merchantId?: string;
|
|
4192
|
-
merchantName
|
|
4321
|
+
merchantName?: string;
|
|
4193
4322
|
processType: string;
|
|
4194
4323
|
serviceProviderName?: string;
|
|
4195
|
-
alipayBindMobile
|
|
4196
|
-
alipayLogonId
|
|
4324
|
+
alipayBindMobile?: string;
|
|
4325
|
+
alipayLogonId?: string;
|
|
4197
4326
|
customerServicePhone: string;
|
|
4198
|
-
customerServiceName
|
|
4327
|
+
customerServiceName?: string;
|
|
4199
4328
|
onlineSupportSiteUrl?: string;
|
|
4200
|
-
customerComplaintIssues
|
|
4329
|
+
customerComplaintIssues?: string;
|
|
4330
|
+
customerPersonInfoList?: CustomerPersonInfo[];
|
|
4201
4331
|
expandMode: string;
|
|
4202
4332
|
static names(): {
|
|
4203
4333
|
[key: string]: string;
|
|
@@ -4287,6 +4417,7 @@ export declare class DetailInnerCustomerserviceResponse extends $tea.Model {
|
|
|
4287
4417
|
customerServiceName?: string;
|
|
4288
4418
|
onlineSupportSiteUrl?: string;
|
|
4289
4419
|
customerComplaintIssues?: string;
|
|
4420
|
+
customerPersonInfoList?: CustomerPersonInfo[];
|
|
4290
4421
|
static names(): {
|
|
4291
4422
|
[key: string]: string;
|
|
4292
4423
|
};
|
|
@@ -4599,6 +4730,8 @@ export declare class UpdateInnerMerchantpayexpandRequest extends $tea.Model {
|
|
|
4599
4730
|
applicationInfo: ApplicationInfoUpdate;
|
|
4600
4731
|
payExpandId: string;
|
|
4601
4732
|
merchantId: string;
|
|
4733
|
+
tenantId: string;
|
|
4734
|
+
userName: string;
|
|
4602
4735
|
static names(): {
|
|
4603
4736
|
[key: string]: string;
|
|
4604
4737
|
};
|
|
@@ -4624,6 +4757,129 @@ export declare class UpdateInnerMerchantpayexpandResponse extends $tea.Model {
|
|
|
4624
4757
|
[key: string]: any;
|
|
4625
4758
|
});
|
|
4626
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
|
+
}
|
|
4627
4883
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
4628
4884
|
authToken?: string;
|
|
4629
4885
|
productInstanceId?: string;
|
|
@@ -6637,6 +6893,18 @@ export default class Client {
|
|
|
6637
6893
|
}, runtime: $Util.RuntimeOptions): Promise<{
|
|
6638
6894
|
[key: string]: any;
|
|
6639
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>;
|
|
6640
6908
|
/**
|
|
6641
6909
|
* Description: 分账流水同步
|
|
6642
6910
|
* Summary: 【仅测试环境生效】分账流水同步
|
|
@@ -7049,6 +7317,34 @@ export default class Client {
|
|
|
7049
7317
|
queryFundAssetpackageEx(request: QueryFundAssetpackageRequest, headers: {
|
|
7050
7318
|
[key: string]: string;
|
|
7051
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>;
|
|
7052
7348
|
/**
|
|
7053
7349
|
* Description: 内部调用,商品信息获取
|
|
7054
7350
|
* Summary: 商品信息获取
|
|
@@ -7939,6 +8235,54 @@ export default class Client {
|
|
|
7939
8235
|
updateInnerMerchantpayexpandEx(request: UpdateInnerMerchantpayexpandRequest, headers: {
|
|
7940
8236
|
[key: string]: string;
|
|
7941
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>;
|
|
7942
8286
|
/**
|
|
7943
8287
|
* Description: 一键投保
|
|
7944
8288
|
* Summary: 投保
|