@antchain/ato 1.8.81 → 1.8.92
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 +115 -11
- package/dist/client.js +184 -20
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +310 -47
package/dist/client.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ export declare class CompanyInfo extends $tea.Model {
|
|
|
76
76
|
companyAliasName: string;
|
|
77
77
|
tenantId?: string;
|
|
78
78
|
merchantId: string;
|
|
79
|
+
merchantType?: string;
|
|
79
80
|
companyMobile: string;
|
|
80
81
|
companyAddress: string;
|
|
81
82
|
contactName: string;
|
|
@@ -153,6 +154,26 @@ export declare class RelationPage extends $tea.Model {
|
|
|
153
154
|
[key: string]: any;
|
|
154
155
|
});
|
|
155
156
|
}
|
|
157
|
+
export declare class CompanyInfoUpdate extends $tea.Model {
|
|
158
|
+
businessLicenseFile?: FileInfo;
|
|
159
|
+
productMainClass?: string;
|
|
160
|
+
companyName?: string;
|
|
161
|
+
companyAliasName?: string;
|
|
162
|
+
tenantId?: string;
|
|
163
|
+
companyMobile?: string;
|
|
164
|
+
companyAddress?: string;
|
|
165
|
+
contactName?: string;
|
|
166
|
+
contactMobile?: string;
|
|
167
|
+
static names(): {
|
|
168
|
+
[key: string]: string;
|
|
169
|
+
};
|
|
170
|
+
static types(): {
|
|
171
|
+
[key: string]: any;
|
|
172
|
+
};
|
|
173
|
+
constructor(map?: {
|
|
174
|
+
[key: string]: any;
|
|
175
|
+
});
|
|
176
|
+
}
|
|
156
177
|
export declare class MerchantAgentPage extends $tea.Model {
|
|
157
178
|
payExpandId: string;
|
|
158
179
|
agentName: string;
|
|
@@ -176,8 +197,9 @@ export declare class OrderMsgInfo extends $tea.Model {
|
|
|
176
197
|
msgCreateTime: string;
|
|
177
198
|
msgStatus: string;
|
|
178
199
|
msgRetryTime: number;
|
|
179
|
-
msgCallbackUrl: string;
|
|
180
200
|
msgContent: string;
|
|
201
|
+
msgCallbackUrl: string;
|
|
202
|
+
newMsgCallbackUrl: string;
|
|
181
203
|
static names(): {
|
|
182
204
|
[key: string]: string;
|
|
183
205
|
};
|
|
@@ -260,6 +282,24 @@ export declare class PageQuery extends $tea.Model {
|
|
|
260
282
|
[key: string]: any;
|
|
261
283
|
});
|
|
262
284
|
}
|
|
285
|
+
export declare class ApplicationInfoUpdate extends $tea.Model {
|
|
286
|
+
applicationScene?: string;
|
|
287
|
+
tinyAppId?: string;
|
|
288
|
+
siteName?: string;
|
|
289
|
+
sitUrl?: string;
|
|
290
|
+
merchantName?: string;
|
|
291
|
+
merchantServiceName?: string;
|
|
292
|
+
merchantServiceDesc?: string;
|
|
293
|
+
static names(): {
|
|
294
|
+
[key: string]: string;
|
|
295
|
+
};
|
|
296
|
+
static types(): {
|
|
297
|
+
[key: string]: any;
|
|
298
|
+
};
|
|
299
|
+
constructor(map?: {
|
|
300
|
+
[key: string]: any;
|
|
301
|
+
});
|
|
302
|
+
}
|
|
263
303
|
export declare class LegalInfo extends $tea.Model {
|
|
264
304
|
legalName: string;
|
|
265
305
|
legalCertNo: string;
|
|
@@ -315,6 +355,21 @@ export declare class OrderGoodsModel extends $tea.Model {
|
|
|
315
355
|
[key: string]: any;
|
|
316
356
|
});
|
|
317
357
|
}
|
|
358
|
+
export declare class LegalInfoUpdate extends $tea.Model {
|
|
359
|
+
legalName?: string;
|
|
360
|
+
legalCertNo?: string;
|
|
361
|
+
legalCertFrontFile?: FileInfo;
|
|
362
|
+
legalCertBackFile?: FileInfo;
|
|
363
|
+
static names(): {
|
|
364
|
+
[key: string]: string;
|
|
365
|
+
};
|
|
366
|
+
static types(): {
|
|
367
|
+
[key: string]: any;
|
|
368
|
+
};
|
|
369
|
+
constructor(map?: {
|
|
370
|
+
[key: string]: any;
|
|
371
|
+
});
|
|
372
|
+
}
|
|
318
373
|
export declare class XNameValuePair extends $tea.Model {
|
|
319
374
|
name: string;
|
|
320
375
|
value: string;
|
|
@@ -1124,6 +1179,7 @@ export declare class AllInnerTemplateRequest extends $tea.Model {
|
|
|
1124
1179
|
tenantId: string;
|
|
1125
1180
|
templateCode?: string;
|
|
1126
1181
|
templateName?: string;
|
|
1182
|
+
templateCodeProd?: string;
|
|
1127
1183
|
static names(): {
|
|
1128
1184
|
[key: string]: string;
|
|
1129
1185
|
};
|
|
@@ -1960,7 +2016,8 @@ export declare class PagequeryInnerMerchantagentRequest extends $tea.Model {
|
|
|
1960
2016
|
authToken?: string;
|
|
1961
2017
|
productInstanceId?: string;
|
|
1962
2018
|
tenantId: string;
|
|
1963
|
-
agentName
|
|
2019
|
+
agentName?: string;
|
|
2020
|
+
payExpandStatus?: string;
|
|
1964
2021
|
pageInfo: PageQuery;
|
|
1965
2022
|
static names(): {
|
|
1966
2023
|
[key: string]: string;
|
|
@@ -2263,6 +2320,7 @@ export declare class RetryInnerOrdermsgResponse extends $tea.Model {
|
|
|
2263
2320
|
reqMsgId?: string;
|
|
2264
2321
|
resultCode?: string;
|
|
2265
2322
|
resultMsg?: string;
|
|
2323
|
+
retryResult?: string;
|
|
2266
2324
|
static names(): {
|
|
2267
2325
|
[key: string]: string;
|
|
2268
2326
|
};
|
|
@@ -2367,16 +2425,48 @@ export declare class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
2367
2425
|
[key: string]: any;
|
|
2368
2426
|
});
|
|
2369
2427
|
}
|
|
2428
|
+
export declare class UpdateMerchantexpandMerchantRequest extends $tea.Model {
|
|
2429
|
+
authToken?: string;
|
|
2430
|
+
productInstanceId?: string;
|
|
2431
|
+
companyInfo: CompanyInfoUpdate;
|
|
2432
|
+
legalInfo: LegalInfoUpdate;
|
|
2433
|
+
applicationInfo: ApplicationInfoUpdate;
|
|
2434
|
+
payExpandId: string;
|
|
2435
|
+
merchantId: string;
|
|
2436
|
+
static names(): {
|
|
2437
|
+
[key: string]: string;
|
|
2438
|
+
};
|
|
2439
|
+
static types(): {
|
|
2440
|
+
[key: string]: any;
|
|
2441
|
+
};
|
|
2442
|
+
constructor(map?: {
|
|
2443
|
+
[key: string]: any;
|
|
2444
|
+
});
|
|
2445
|
+
}
|
|
2446
|
+
export declare class UpdateMerchantexpandMerchantResponse extends $tea.Model {
|
|
2447
|
+
reqMsgId?: string;
|
|
2448
|
+
resultCode?: string;
|
|
2449
|
+
resultMsg?: string;
|
|
2450
|
+
payExpandId?: string;
|
|
2451
|
+
static names(): {
|
|
2452
|
+
[key: string]: string;
|
|
2453
|
+
};
|
|
2454
|
+
static types(): {
|
|
2455
|
+
[key: string]: any;
|
|
2456
|
+
};
|
|
2457
|
+
constructor(map?: {
|
|
2458
|
+
[key: string]: any;
|
|
2459
|
+
});
|
|
2460
|
+
}
|
|
2370
2461
|
export declare class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
2371
2462
|
authToken?: string;
|
|
2372
2463
|
productInstanceId?: string;
|
|
2464
|
+
solutionType: string;
|
|
2373
2465
|
certName: string;
|
|
2374
2466
|
certNo: string;
|
|
2375
|
-
identityType: string;
|
|
2376
2467
|
certType: string;
|
|
2377
|
-
|
|
2378
|
-
returnUrl
|
|
2379
|
-
orderId: string;
|
|
2468
|
+
faceReserveStrategy?: string;
|
|
2469
|
+
returnUrl?: string;
|
|
2380
2470
|
static names(): {
|
|
2381
2471
|
[key: string]: string;
|
|
2382
2472
|
};
|
|
@@ -2391,7 +2481,8 @@ export declare class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
|
2391
2481
|
reqMsgId?: string;
|
|
2392
2482
|
resultCode?: string;
|
|
2393
2483
|
resultMsg?: string;
|
|
2394
|
-
|
|
2484
|
+
realPersonVerificationCode?: string;
|
|
2485
|
+
webUrl?: string;
|
|
2395
2486
|
static names(): {
|
|
2396
2487
|
[key: string]: string;
|
|
2397
2488
|
};
|
|
@@ -2405,9 +2496,7 @@ export declare class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
|
2405
2496
|
export declare class QueryRealpersonFacevrfRequest extends $tea.Model {
|
|
2406
2497
|
authToken?: string;
|
|
2407
2498
|
productInstanceId?: string;
|
|
2408
|
-
|
|
2409
|
-
outerOrderNo: string;
|
|
2410
|
-
orderId: string;
|
|
2499
|
+
realPersonVerificationCode: string;
|
|
2411
2500
|
static names(): {
|
|
2412
2501
|
[key: string]: string;
|
|
2413
2502
|
};
|
|
@@ -2422,7 +2511,9 @@ export declare class QueryRealpersonFacevrfResponse extends $tea.Model {
|
|
|
2422
2511
|
reqMsgId?: string;
|
|
2423
2512
|
resultCode?: string;
|
|
2424
2513
|
resultMsg?: string;
|
|
2425
|
-
|
|
2514
|
+
certifyState?: string;
|
|
2515
|
+
attackFlag?: string;
|
|
2516
|
+
alivePhoto?: string;
|
|
2426
2517
|
static names(): {
|
|
2427
2518
|
[key: string]: string;
|
|
2428
2519
|
};
|
|
@@ -3180,6 +3271,7 @@ export declare class QueryWithholdSignResponse extends $tea.Model {
|
|
|
3180
3271
|
signTime?: string;
|
|
3181
3272
|
validTime?: string;
|
|
3182
3273
|
invalidTime?: string;
|
|
3274
|
+
agreementNo?: string;
|
|
3183
3275
|
static names(): {
|
|
3184
3276
|
[key: string]: string;
|
|
3185
3277
|
};
|
|
@@ -4341,6 +4433,18 @@ export default class Client {
|
|
|
4341
4433
|
queryMerchantexpandMerchantEx(request: QueryMerchantexpandMerchantRequest, headers: {
|
|
4342
4434
|
[key: string]: string;
|
|
4343
4435
|
}, runtime: $Util.RuntimeOptions): Promise<QueryMerchantexpandMerchantResponse>;
|
|
4436
|
+
/**
|
|
4437
|
+
* Description: 商家信息修改
|
|
4438
|
+
* Summary: 商家信息修改
|
|
4439
|
+
*/
|
|
4440
|
+
updateMerchantexpandMerchant(request: UpdateMerchantexpandMerchantRequest): Promise<UpdateMerchantexpandMerchantResponse>;
|
|
4441
|
+
/**
|
|
4442
|
+
* Description: 商家信息修改
|
|
4443
|
+
* Summary: 商家信息修改
|
|
4444
|
+
*/
|
|
4445
|
+
updateMerchantexpandMerchantEx(request: UpdateMerchantexpandMerchantRequest, headers: {
|
|
4446
|
+
[key: string]: string;
|
|
4447
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateMerchantexpandMerchantResponse>;
|
|
4344
4448
|
/**
|
|
4345
4449
|
* Description: 可信身份认证,创建认证
|
|
4346
4450
|
* Summary: 创建认证
|
package/dist/client.js
CHANGED
|
@@ -22,7 +22,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
22
22
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.QueryWithholdRefundResponse = exports.QueryWithholdRefundRequest = exports.CreateWithholdRefundResponse = exports.CreateWithholdRefundRequest = exports.CancelWithholdActivepayResponse = exports.CancelWithholdActivepayRequest = exports.QueryWithholdActivepayResponse = exports.QueryWithholdActivepayRequest = exports.CreateWithholdActivepayResponse = exports.CreateWithholdActivepayRequest = exports.ConfirmWithholdSignasyncunsignResponse = exports.ConfirmWithholdSignasyncunsignRequest = exports.RetryWithholdPlanResponse = exports.RetryWithholdPlanRequest = exports.RepayWithholdPlanResponse = exports.RepayWithholdPlanRequest = exports.CancelWithholdPlanResponse = exports.CancelWithholdPlanRequest = exports.UnbindWithholdSignResponse = exports.UnbindWithholdSignRequest = exports.QueryWithholdSignResponse = exports.QueryWithholdSignRequest = exports.CreateWithholdSignResponse = exports.CreateWithholdSignRequest = exports.SyncTradeIndirectorderResponse = exports.SyncTradeIndirectorderRequest = exports.SyncFrontIndirectorderResponse = exports.SyncFrontIndirectorderRequest = exports.UpdateTradeUserpromiseResponse = exports.UpdateTradeUserpromiseRequest = exports.GetTradeMerchantperformanceResponse = exports.GetTradeMerchantperformanceRequest = exports.GetTradeUserperformanceResponse = exports.GetTradeUserperformanceRequest = exports.GetTradeMerchantfulfillmentResponse = exports.GetTradeMerchantfulfillmentRequest = exports.SyncTradeFinanceloanapplyResponse = exports.SyncTradeFinanceloanapplyRequest = exports.SyncFrontTradeResponse = exports.SyncFrontTradeRequest = exports.GetTradeResponse = exports.GetTradeRequest = exports.SyncTradeResponse = exports.SyncTradeRequest = exports.QuerySignCreditResponse = exports.QuerySignCreditRequest = exports.UploadSignCreditResponse = exports.UploadSignCreditRequest = exports.UploadSignTemplateResponse = exports.UploadSignTemplateRequest = exports.UploadSignFlowResponse = exports.UploadSignFlowRequest = exports.SubmitFrontSignResponse = exports.SubmitFrontSignRequest = exports.AuthSignFlowResponse = exports.AuthSignFlowRequest = exports.GetSignFlowResponse = exports.GetSignFlowRequest = exports.SubmitSignFlowResponse = exports.SubmitSignFlowRequest = exports.AllSignTemplateResponse = exports.AllSignTemplateRequest = exports.QueryRiskResponse = exports.QueryRiskRequest = exports.QueryRealpersonFacevrfResponse = exports.QueryRealpersonFacevrfRequest = exports.CreateRealpersonFacevrfResponse = exports.CreateRealpersonFacevrfRequest = exports.QueryMerchantexpandMerchantResponse = exports.QueryMerchantexpandMerchantRequest = exports.UploadMerchantexpandFileResponse = exports.UploadMerchantexpandFileRequest = exports.RegisterMerchantexpandMerchantResponse = exports.RegisterMerchantexpandMerchantRequest = exports.RetryInnerOrdermsgResponse = exports.RetryInnerOrdermsgRequest = exports.PagequeryInnerOrdermsgResponse = exports.PagequeryInnerOrdermsgRequest = exports.QueryInnerTemplateversionResponse = exports.QueryInnerTemplateversionRequest = exports.QueryInnerTemplateelementlinkResponse = exports.QueryInnerTemplateelementlinkRequest = exports.QueryInnerTemplateResponse = exports.QueryInnerTemplateRequest = exports.UpdateInnerTemplateResponse = exports.UpdateInnerTemplateRequest = exports.SyncInnerTemplateResponse = exports.SyncInnerTemplateRequest = exports.QueryInnerSignfieldsResponse = exports.QueryInnerSignfieldsRequest = exports.CloneInnerTemplatefileaddressResponse = exports.CloneInnerTemplatefileaddressRequest = exports.PagequeryInnerMerchantagentResponse = exports.PagequeryInnerMerchantagentRequest = exports.QueryInnerMerchantpayexpandResponse = exports.QueryInnerMerchantpayexpandRequest = exports.SubmitInnerMerchantpayexpandResponse = exports.SubmitInnerMerchantpayexpandRequest = exports.CreateInnerMerchantpayexpandResponse = exports.CreateInnerMerchantpayexpandRequest = exports.PagequeryInnerMerchantagreementResponse = exports.PagequeryInnerMerchantagreementRequest = exports.QueryInnerMerchantagreementResponse = exports.QueryInnerMerchantagreementRequest = exports.CreateInnerMerchantagreementResponse = exports.CreateInnerMerchantagreementRequest = exports.PagequeryInnerFunddividerelationResponse = exports.PagequeryInnerFunddividerelationRequest = exports.QueryInnerFunddividerelationResponse = exports.QueryInnerFunddividerelationRequest = exports.SubmitInnerFunddividerelationResponse = exports.SubmitInnerFunddividerelationRequest = exports.CreateInnerFunddividerelationResponse = exports.CreateInnerFunddividerelationRequest = exports.QueryInnerTemplateimageResponse = exports.QueryInnerTemplateimageRequest = exports.CreateInnerTemplatetextareaResponse = exports.CreateInnerTemplatetextareaRequest = exports.RefreshInnerTemplatetokenResponse = exports.RefreshInnerTemplatetokenRequest = exports.GetInnerTemplateofficeurlResponse = exports.GetInnerTemplateofficeurlRequest = exports.DownloadInnerFileResponse = exports.DownloadInnerFileRequest = exports.UploadInnerFileResponse = exports.UploadInnerFileRequest = exports.CloneInnerTemplateResponse = exports.CloneInnerTemplateRequest = exports.DeleteInnerTemplateResponse = exports.DeleteInnerTemplateRequest = exports.PreviewInnerTemplateResponse = exports.PreviewInnerTemplateRequest = exports.PublishInnerTemplateResponse = exports.PublishInnerTemplateRequest = exports.SaveInnerSignfieldsResponse = exports.SaveInnerSignfieldsRequest = exports.SaveInnerTemplateResponse = exports.SaveInnerTemplateRequest = exports.CreateInnerTemplateResponse = exports.CreateInnerTemplateRequest = exports.DetailInnerTemplateResponse = exports.DetailInnerTemplateRequest = exports.ListInnerTemplateResponse = exports.ListInnerTemplateRequest = exports.AllInnerTemplateResponse = exports.AllInnerTemplateRequest = exports.SyncInnerMeterforagsignResponse = exports.SyncInnerMeterforagsignRequest = exports.SyncInnerMeterforwholeorderResponse = exports.SyncInnerMeterforwholeorderRequest = exports.GetInnerTenantResponse = exports.GetInnerTenantRequest = exports.GetInnerProductResponse = exports.GetInnerProductRequest = exports.QueryFundCreditResponse = exports.QueryFundCreditRequest = exports.UploadFundCreditResponse = exports.UploadFundCreditRequest = exports.NotifyFundFlowResponse = exports.NotifyFundFlowRequest = exports.GetFundOrderfullinfoResponse = exports.GetFundOrderfullinfoRequest = exports.GetFundMerchantperformanceResponse = exports.GetFundMerchantperformanceRequest = exports.GetFundUserperformanceResponse = exports.GetFundUserperformanceRequest = exports.GetFundUserpromiseResponse = exports.GetFundUserpromiseRequest = exports.SyncFundFinanceloanresultsResponse = exports.SyncFundFinanceloanresultsRequest = exports.SyncFundMerchantpromiseResponse = exports.SyncFundMerchantpromiseRequest = exports.CallbackFundNotifyResponse = exports.CallbackFundNotifyRequest = exports.CancelFundPlanResponse = exports.CancelFundPlanRequest = exports.AuthFundFlowResponse = exports.AuthFundFlowRequest = exports.RefuseFundFlowResponse = exports.RefuseFundFlowRequest = exports.GetFundFlowResponse = exports.GetFundFlowRequest = exports.UploadFundFlowResponse = exports.UploadFundFlowRequest = exports.GetFundOrderfulfillmentResponse = exports.GetFundOrderfulfillmentRequest = exports.SyncFundOrderfulfillmentResponse = exports.SyncFundOrderfulfillmentRequest = exports.SyncFundWithholdingcontractResponse = exports.SyncFundWithholdingcontractRequest = exports.SyncFundOrderfinancialResponse = exports.SyncFundOrderfinancialRequest = exports.SyncFundSplittingResponse = exports.SyncFundSplittingRequest = exports.XNameValuePair = exports.OrderGoodsModel = exports.RiskModel = exports.AuditInfo = exports.LegalInfo = exports.PageQuery = exports.GoodsInfo = exports.ApplicationInfo = exports.ActivePayOrder = exports.OrderInfo = exports.OrderMsgInfo = exports.MerchantAgentPage = exports.RelationPage = exports.RiskStrategy = exports.RiskScene = exports.AgreementPage = exports.CompanyInfo = exports.UserSyncInfo = exports.PromiseInfo = exports.FileInfo = exports.Config = void 0;
|
|
25
|
+
exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.QueryWithholdRefundResponse = exports.QueryWithholdRefundRequest = exports.CreateWithholdRefundResponse = exports.CreateWithholdRefundRequest = exports.CancelWithholdActivepayResponse = exports.CancelWithholdActivepayRequest = exports.QueryWithholdActivepayResponse = exports.QueryWithholdActivepayRequest = exports.CreateWithholdActivepayResponse = exports.CreateWithholdActivepayRequest = exports.ConfirmWithholdSignasyncunsignResponse = exports.ConfirmWithholdSignasyncunsignRequest = exports.RetryWithholdPlanResponse = exports.RetryWithholdPlanRequest = exports.RepayWithholdPlanResponse = exports.RepayWithholdPlanRequest = exports.CancelWithholdPlanResponse = exports.CancelWithholdPlanRequest = exports.UnbindWithholdSignResponse = exports.UnbindWithholdSignRequest = exports.QueryWithholdSignResponse = exports.QueryWithholdSignRequest = exports.CreateWithholdSignResponse = exports.CreateWithholdSignRequest = exports.SyncTradeIndirectorderResponse = exports.SyncTradeIndirectorderRequest = exports.SyncFrontIndirectorderResponse = exports.SyncFrontIndirectorderRequest = exports.UpdateTradeUserpromiseResponse = exports.UpdateTradeUserpromiseRequest = exports.GetTradeMerchantperformanceResponse = exports.GetTradeMerchantperformanceRequest = exports.GetTradeUserperformanceResponse = exports.GetTradeUserperformanceRequest = exports.GetTradeMerchantfulfillmentResponse = exports.GetTradeMerchantfulfillmentRequest = exports.SyncTradeFinanceloanapplyResponse = exports.SyncTradeFinanceloanapplyRequest = exports.SyncFrontTradeResponse = exports.SyncFrontTradeRequest = exports.GetTradeResponse = exports.GetTradeRequest = exports.SyncTradeResponse = exports.SyncTradeRequest = exports.QuerySignCreditResponse = exports.QuerySignCreditRequest = exports.UploadSignCreditResponse = exports.UploadSignCreditRequest = exports.UploadSignTemplateResponse = exports.UploadSignTemplateRequest = exports.UploadSignFlowResponse = exports.UploadSignFlowRequest = exports.SubmitFrontSignResponse = exports.SubmitFrontSignRequest = exports.AuthSignFlowResponse = exports.AuthSignFlowRequest = exports.GetSignFlowResponse = exports.GetSignFlowRequest = exports.SubmitSignFlowResponse = exports.SubmitSignFlowRequest = exports.AllSignTemplateResponse = exports.AllSignTemplateRequest = exports.QueryRiskResponse = exports.QueryRiskRequest = exports.QueryRealpersonFacevrfResponse = exports.QueryRealpersonFacevrfRequest = exports.CreateRealpersonFacevrfResponse = exports.CreateRealpersonFacevrfRequest = exports.UpdateMerchantexpandMerchantResponse = exports.UpdateMerchantexpandMerchantRequest = exports.QueryMerchantexpandMerchantResponse = exports.QueryMerchantexpandMerchantRequest = exports.UploadMerchantexpandFileResponse = exports.UploadMerchantexpandFileRequest = exports.RegisterMerchantexpandMerchantResponse = exports.RegisterMerchantexpandMerchantRequest = exports.RetryInnerOrdermsgResponse = exports.RetryInnerOrdermsgRequest = exports.PagequeryInnerOrdermsgResponse = exports.PagequeryInnerOrdermsgRequest = exports.QueryInnerTemplateversionResponse = exports.QueryInnerTemplateversionRequest = exports.QueryInnerTemplateelementlinkResponse = exports.QueryInnerTemplateelementlinkRequest = exports.QueryInnerTemplateResponse = exports.QueryInnerTemplateRequest = exports.UpdateInnerTemplateResponse = exports.UpdateInnerTemplateRequest = exports.SyncInnerTemplateResponse = exports.SyncInnerTemplateRequest = exports.QueryInnerSignfieldsResponse = exports.QueryInnerSignfieldsRequest = exports.CloneInnerTemplatefileaddressResponse = exports.CloneInnerTemplatefileaddressRequest = exports.PagequeryInnerMerchantagentResponse = exports.PagequeryInnerMerchantagentRequest = exports.QueryInnerMerchantpayexpandResponse = exports.QueryInnerMerchantpayexpandRequest = exports.SubmitInnerMerchantpayexpandResponse = exports.SubmitInnerMerchantpayexpandRequest = exports.CreateInnerMerchantpayexpandResponse = exports.CreateInnerMerchantpayexpandRequest = exports.PagequeryInnerMerchantagreementResponse = exports.PagequeryInnerMerchantagreementRequest = exports.QueryInnerMerchantagreementResponse = exports.QueryInnerMerchantagreementRequest = exports.CreateInnerMerchantagreementResponse = exports.CreateInnerMerchantagreementRequest = exports.PagequeryInnerFunddividerelationResponse = exports.PagequeryInnerFunddividerelationRequest = exports.QueryInnerFunddividerelationResponse = exports.QueryInnerFunddividerelationRequest = exports.SubmitInnerFunddividerelationResponse = exports.SubmitInnerFunddividerelationRequest = exports.CreateInnerFunddividerelationResponse = exports.CreateInnerFunddividerelationRequest = exports.QueryInnerTemplateimageResponse = exports.QueryInnerTemplateimageRequest = exports.CreateInnerTemplatetextareaResponse = exports.CreateInnerTemplatetextareaRequest = exports.RefreshInnerTemplatetokenResponse = exports.RefreshInnerTemplatetokenRequest = exports.GetInnerTemplateofficeurlResponse = exports.GetInnerTemplateofficeurlRequest = exports.DownloadInnerFileResponse = exports.DownloadInnerFileRequest = exports.UploadInnerFileResponse = exports.UploadInnerFileRequest = exports.CloneInnerTemplateResponse = exports.CloneInnerTemplateRequest = exports.DeleteInnerTemplateResponse = exports.DeleteInnerTemplateRequest = exports.PreviewInnerTemplateResponse = exports.PreviewInnerTemplateRequest = exports.PublishInnerTemplateResponse = exports.PublishInnerTemplateRequest = exports.SaveInnerSignfieldsResponse = exports.SaveInnerSignfieldsRequest = exports.SaveInnerTemplateResponse = exports.SaveInnerTemplateRequest = exports.CreateInnerTemplateResponse = exports.CreateInnerTemplateRequest = exports.DetailInnerTemplateResponse = exports.DetailInnerTemplateRequest = exports.ListInnerTemplateResponse = exports.ListInnerTemplateRequest = exports.AllInnerTemplateResponse = exports.AllInnerTemplateRequest = exports.SyncInnerMeterforagsignResponse = exports.SyncInnerMeterforagsignRequest = exports.SyncInnerMeterforwholeorderResponse = exports.SyncInnerMeterforwholeorderRequest = exports.GetInnerTenantResponse = exports.GetInnerTenantRequest = exports.GetInnerProductResponse = exports.GetInnerProductRequest = exports.QueryFundCreditResponse = exports.QueryFundCreditRequest = exports.UploadFundCreditResponse = exports.UploadFundCreditRequest = exports.NotifyFundFlowResponse = exports.NotifyFundFlowRequest = exports.GetFundOrderfullinfoResponse = exports.GetFundOrderfullinfoRequest = exports.GetFundMerchantperformanceResponse = exports.GetFundMerchantperformanceRequest = exports.GetFundUserperformanceResponse = exports.GetFundUserperformanceRequest = exports.GetFundUserpromiseResponse = exports.GetFundUserpromiseRequest = exports.SyncFundFinanceloanresultsResponse = exports.SyncFundFinanceloanresultsRequest = exports.SyncFundMerchantpromiseResponse = exports.SyncFundMerchantpromiseRequest = exports.CallbackFundNotifyResponse = exports.CallbackFundNotifyRequest = exports.CancelFundPlanResponse = exports.CancelFundPlanRequest = exports.AuthFundFlowResponse = exports.AuthFundFlowRequest = exports.RefuseFundFlowResponse = exports.RefuseFundFlowRequest = exports.GetFundFlowResponse = exports.GetFundFlowRequest = exports.UploadFundFlowResponse = exports.UploadFundFlowRequest = exports.GetFundOrderfulfillmentResponse = exports.GetFundOrderfulfillmentRequest = exports.SyncFundOrderfulfillmentResponse = exports.SyncFundOrderfulfillmentRequest = exports.SyncFundWithholdingcontractResponse = exports.SyncFundWithholdingcontractRequest = exports.SyncFundOrderfinancialResponse = exports.SyncFundOrderfinancialRequest = exports.SyncFundSplittingResponse = exports.SyncFundSplittingRequest = exports.XNameValuePair = exports.LegalInfoUpdate = exports.OrderGoodsModel = exports.RiskModel = exports.AuditInfo = exports.LegalInfo = exports.ApplicationInfoUpdate = exports.PageQuery = exports.GoodsInfo = exports.ApplicationInfo = exports.ActivePayOrder = exports.OrderInfo = exports.OrderMsgInfo = exports.MerchantAgentPage = exports.CompanyInfoUpdate = exports.RelationPage = exports.RiskStrategy = exports.RiskScene = exports.AgreementPage = exports.CompanyInfo = exports.UserSyncInfo = exports.PromiseInfo = exports.FileInfo = exports.Config = void 0;
|
|
26
26
|
// This file is auto-generated, don't edit it
|
|
27
27
|
const alipay_util_1 = __importDefault(require("@antchain/alipay-util"));
|
|
28
28
|
const tea_util_1 = __importStar(require("@alicloud/tea-util")), $Util = tea_util_1;
|
|
@@ -139,6 +139,7 @@ class CompanyInfo extends $tea.Model {
|
|
|
139
139
|
companyAliasName: 'company_alias_name',
|
|
140
140
|
tenantId: 'tenant_id',
|
|
141
141
|
merchantId: 'merchant_id',
|
|
142
|
+
merchantType: 'merchant_type',
|
|
142
143
|
companyMobile: 'company_mobile',
|
|
143
144
|
companyAddress: 'company_address',
|
|
144
145
|
contactName: 'contact_name',
|
|
@@ -156,6 +157,7 @@ class CompanyInfo extends $tea.Model {
|
|
|
156
157
|
companyAliasName: 'string',
|
|
157
158
|
tenantId: 'string',
|
|
158
159
|
merchantId: 'string',
|
|
160
|
+
merchantType: 'string',
|
|
159
161
|
companyMobile: 'string',
|
|
160
162
|
companyAddress: 'string',
|
|
161
163
|
contactName: 'string',
|
|
@@ -259,6 +261,39 @@ class RelationPage extends $tea.Model {
|
|
|
259
261
|
}
|
|
260
262
|
}
|
|
261
263
|
exports.RelationPage = RelationPage;
|
|
264
|
+
// 公司信息修改
|
|
265
|
+
class CompanyInfoUpdate extends $tea.Model {
|
|
266
|
+
constructor(map) {
|
|
267
|
+
super(map);
|
|
268
|
+
}
|
|
269
|
+
static names() {
|
|
270
|
+
return {
|
|
271
|
+
businessLicenseFile: 'business_license_file',
|
|
272
|
+
productMainClass: 'product_main_class',
|
|
273
|
+
companyName: 'company_name',
|
|
274
|
+
companyAliasName: 'company_alias_name',
|
|
275
|
+
tenantId: 'tenant_id',
|
|
276
|
+
companyMobile: 'company_mobile',
|
|
277
|
+
companyAddress: 'company_address',
|
|
278
|
+
contactName: 'contact_name',
|
|
279
|
+
contactMobile: 'contact_mobile',
|
|
280
|
+
};
|
|
281
|
+
}
|
|
282
|
+
static types() {
|
|
283
|
+
return {
|
|
284
|
+
businessLicenseFile: FileInfo,
|
|
285
|
+
productMainClass: 'string',
|
|
286
|
+
companyName: 'string',
|
|
287
|
+
companyAliasName: 'string',
|
|
288
|
+
tenantId: 'string',
|
|
289
|
+
companyMobile: 'string',
|
|
290
|
+
companyAddress: 'string',
|
|
291
|
+
contactName: 'string',
|
|
292
|
+
contactMobile: 'string',
|
|
293
|
+
};
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
exports.CompanyInfoUpdate = CompanyInfoUpdate;
|
|
262
297
|
// 进件分页对象
|
|
263
298
|
class MerchantAgentPage extends $tea.Model {
|
|
264
299
|
constructor(map) {
|
|
@@ -297,8 +332,9 @@ class OrderMsgInfo extends $tea.Model {
|
|
|
297
332
|
msgCreateTime: 'msg_create_time',
|
|
298
333
|
msgStatus: 'msg_status',
|
|
299
334
|
msgRetryTime: 'msg_retry_time',
|
|
300
|
-
msgCallbackUrl: 'msg_callback_url',
|
|
301
335
|
msgContent: 'msg_content',
|
|
336
|
+
msgCallbackUrl: 'msg_callback_url',
|
|
337
|
+
newMsgCallbackUrl: 'new_msg_callback_url',
|
|
302
338
|
};
|
|
303
339
|
}
|
|
304
340
|
static types() {
|
|
@@ -309,8 +345,9 @@ class OrderMsgInfo extends $tea.Model {
|
|
|
309
345
|
msgCreateTime: 'string',
|
|
310
346
|
msgStatus: 'string',
|
|
311
347
|
msgRetryTime: 'number',
|
|
312
|
-
msgCallbackUrl: 'string',
|
|
313
348
|
msgContent: 'string',
|
|
349
|
+
msgCallbackUrl: 'string',
|
|
350
|
+
newMsgCallbackUrl: 'string',
|
|
314
351
|
};
|
|
315
352
|
}
|
|
316
353
|
}
|
|
@@ -420,6 +457,35 @@ class PageQuery extends $tea.Model {
|
|
|
420
457
|
}
|
|
421
458
|
}
|
|
422
459
|
exports.PageQuery = PageQuery;
|
|
460
|
+
// 应用信息修改
|
|
461
|
+
class ApplicationInfoUpdate extends $tea.Model {
|
|
462
|
+
constructor(map) {
|
|
463
|
+
super(map);
|
|
464
|
+
}
|
|
465
|
+
static names() {
|
|
466
|
+
return {
|
|
467
|
+
applicationScene: 'application_scene',
|
|
468
|
+
tinyAppId: 'tiny_app_id',
|
|
469
|
+
siteName: 'site_name',
|
|
470
|
+
sitUrl: 'sit_url',
|
|
471
|
+
merchantName: 'merchant_name',
|
|
472
|
+
merchantServiceName: 'merchant_service_name',
|
|
473
|
+
merchantServiceDesc: 'merchant_service_desc',
|
|
474
|
+
};
|
|
475
|
+
}
|
|
476
|
+
static types() {
|
|
477
|
+
return {
|
|
478
|
+
applicationScene: 'string',
|
|
479
|
+
tinyAppId: 'string',
|
|
480
|
+
siteName: 'string',
|
|
481
|
+
sitUrl: 'string',
|
|
482
|
+
merchantName: 'string',
|
|
483
|
+
merchantServiceName: 'string',
|
|
484
|
+
merchantServiceDesc: 'string',
|
|
485
|
+
};
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
exports.ApplicationInfoUpdate = ApplicationInfoUpdate;
|
|
423
489
|
// 法人信息
|
|
424
490
|
class LegalInfo extends $tea.Model {
|
|
425
491
|
constructor(map) {
|
|
@@ -500,6 +566,29 @@ class OrderGoodsModel extends $tea.Model {
|
|
|
500
566
|
}
|
|
501
567
|
}
|
|
502
568
|
exports.OrderGoodsModel = OrderGoodsModel;
|
|
569
|
+
// 法人信息修改
|
|
570
|
+
class LegalInfoUpdate extends $tea.Model {
|
|
571
|
+
constructor(map) {
|
|
572
|
+
super(map);
|
|
573
|
+
}
|
|
574
|
+
static names() {
|
|
575
|
+
return {
|
|
576
|
+
legalName: 'legal_name',
|
|
577
|
+
legalCertNo: 'legal_cert_no',
|
|
578
|
+
legalCertFrontFile: 'legal_cert_front_file',
|
|
579
|
+
legalCertBackFile: 'legal_cert_back_file',
|
|
580
|
+
};
|
|
581
|
+
}
|
|
582
|
+
static types() {
|
|
583
|
+
return {
|
|
584
|
+
legalName: 'string',
|
|
585
|
+
legalCertNo: 'string',
|
|
586
|
+
legalCertFrontFile: FileInfo,
|
|
587
|
+
legalCertBackFile: FileInfo,
|
|
588
|
+
};
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
exports.LegalInfoUpdate = LegalInfoUpdate;
|
|
503
592
|
// 键值对
|
|
504
593
|
class XNameValuePair extends $tea.Model {
|
|
505
594
|
constructor(map) {
|
|
@@ -1725,6 +1814,7 @@ class AllInnerTemplateRequest extends $tea.Model {
|
|
|
1725
1814
|
tenantId: 'tenant_id',
|
|
1726
1815
|
templateCode: 'template_code',
|
|
1727
1816
|
templateName: 'template_name',
|
|
1817
|
+
templateCodeProd: 'template_code_prod',
|
|
1728
1818
|
};
|
|
1729
1819
|
}
|
|
1730
1820
|
static types() {
|
|
@@ -1735,6 +1825,7 @@ class AllInnerTemplateRequest extends $tea.Model {
|
|
|
1735
1825
|
tenantId: 'string',
|
|
1736
1826
|
templateCode: 'string',
|
|
1737
1827
|
templateName: 'string',
|
|
1828
|
+
templateCodeProd: 'string',
|
|
1738
1829
|
};
|
|
1739
1830
|
}
|
|
1740
1831
|
}
|
|
@@ -2985,6 +3076,7 @@ class PagequeryInnerMerchantagentRequest extends $tea.Model {
|
|
|
2985
3076
|
productInstanceId: 'product_instance_id',
|
|
2986
3077
|
tenantId: 'tenant_id',
|
|
2987
3078
|
agentName: 'agent_name',
|
|
3079
|
+
payExpandStatus: 'pay_expand_status',
|
|
2988
3080
|
pageInfo: 'page_info',
|
|
2989
3081
|
};
|
|
2990
3082
|
}
|
|
@@ -2994,6 +3086,7 @@ class PagequeryInnerMerchantagentRequest extends $tea.Model {
|
|
|
2994
3086
|
productInstanceId: 'string',
|
|
2995
3087
|
tenantId: 'string',
|
|
2996
3088
|
agentName: 'string',
|
|
3089
|
+
payExpandStatus: 'string',
|
|
2997
3090
|
pageInfo: PageQuery,
|
|
2998
3091
|
};
|
|
2999
3092
|
}
|
|
@@ -3438,6 +3531,7 @@ class RetryInnerOrdermsgResponse extends $tea.Model {
|
|
|
3438
3531
|
reqMsgId: 'req_msg_id',
|
|
3439
3532
|
resultCode: 'result_code',
|
|
3440
3533
|
resultMsg: 'result_msg',
|
|
3534
|
+
retryResult: 'retry_result',
|
|
3441
3535
|
};
|
|
3442
3536
|
}
|
|
3443
3537
|
static types() {
|
|
@@ -3445,6 +3539,7 @@ class RetryInnerOrdermsgResponse extends $tea.Model {
|
|
|
3445
3539
|
reqMsgId: 'string',
|
|
3446
3540
|
resultCode: 'string',
|
|
3447
3541
|
resultMsg: 'string',
|
|
3542
|
+
retryResult: 'string',
|
|
3448
3543
|
};
|
|
3449
3544
|
}
|
|
3450
3545
|
}
|
|
@@ -3589,6 +3684,56 @@ class QueryMerchantexpandMerchantResponse extends $tea.Model {
|
|
|
3589
3684
|
}
|
|
3590
3685
|
}
|
|
3591
3686
|
exports.QueryMerchantexpandMerchantResponse = QueryMerchantexpandMerchantResponse;
|
|
3687
|
+
class UpdateMerchantexpandMerchantRequest extends $tea.Model {
|
|
3688
|
+
constructor(map) {
|
|
3689
|
+
super(map);
|
|
3690
|
+
}
|
|
3691
|
+
static names() {
|
|
3692
|
+
return {
|
|
3693
|
+
authToken: 'auth_token',
|
|
3694
|
+
productInstanceId: 'product_instance_id',
|
|
3695
|
+
companyInfo: 'company_info',
|
|
3696
|
+
legalInfo: 'legal_info',
|
|
3697
|
+
applicationInfo: 'application_info',
|
|
3698
|
+
payExpandId: 'pay_expand_id',
|
|
3699
|
+
merchantId: 'merchant_id',
|
|
3700
|
+
};
|
|
3701
|
+
}
|
|
3702
|
+
static types() {
|
|
3703
|
+
return {
|
|
3704
|
+
authToken: 'string',
|
|
3705
|
+
productInstanceId: 'string',
|
|
3706
|
+
companyInfo: CompanyInfoUpdate,
|
|
3707
|
+
legalInfo: LegalInfoUpdate,
|
|
3708
|
+
applicationInfo: ApplicationInfoUpdate,
|
|
3709
|
+
payExpandId: 'string',
|
|
3710
|
+
merchantId: 'string',
|
|
3711
|
+
};
|
|
3712
|
+
}
|
|
3713
|
+
}
|
|
3714
|
+
exports.UpdateMerchantexpandMerchantRequest = UpdateMerchantexpandMerchantRequest;
|
|
3715
|
+
class UpdateMerchantexpandMerchantResponse extends $tea.Model {
|
|
3716
|
+
constructor(map) {
|
|
3717
|
+
super(map);
|
|
3718
|
+
}
|
|
3719
|
+
static names() {
|
|
3720
|
+
return {
|
|
3721
|
+
reqMsgId: 'req_msg_id',
|
|
3722
|
+
resultCode: 'result_code',
|
|
3723
|
+
resultMsg: 'result_msg',
|
|
3724
|
+
payExpandId: 'pay_expand_id',
|
|
3725
|
+
};
|
|
3726
|
+
}
|
|
3727
|
+
static types() {
|
|
3728
|
+
return {
|
|
3729
|
+
reqMsgId: 'string',
|
|
3730
|
+
resultCode: 'string',
|
|
3731
|
+
resultMsg: 'string',
|
|
3732
|
+
payExpandId: 'string',
|
|
3733
|
+
};
|
|
3734
|
+
}
|
|
3735
|
+
}
|
|
3736
|
+
exports.UpdateMerchantexpandMerchantResponse = UpdateMerchantexpandMerchantResponse;
|
|
3592
3737
|
class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
3593
3738
|
constructor(map) {
|
|
3594
3739
|
super(map);
|
|
@@ -3597,26 +3742,24 @@ class CreateRealpersonFacevrfRequest extends $tea.Model {
|
|
|
3597
3742
|
return {
|
|
3598
3743
|
authToken: 'auth_token',
|
|
3599
3744
|
productInstanceId: 'product_instance_id',
|
|
3745
|
+
solutionType: 'solution_type',
|
|
3600
3746
|
certName: 'cert_name',
|
|
3601
3747
|
certNo: 'cert_no',
|
|
3602
|
-
identityType: 'identity_type',
|
|
3603
3748
|
certType: 'cert_type',
|
|
3604
|
-
|
|
3749
|
+
faceReserveStrategy: 'face_reserve_strategy',
|
|
3605
3750
|
returnUrl: 'return_url',
|
|
3606
|
-
orderId: 'order_id',
|
|
3607
3751
|
};
|
|
3608
3752
|
}
|
|
3609
3753
|
static types() {
|
|
3610
3754
|
return {
|
|
3611
3755
|
authToken: 'string',
|
|
3612
3756
|
productInstanceId: 'string',
|
|
3757
|
+
solutionType: 'string',
|
|
3613
3758
|
certName: 'string',
|
|
3614
3759
|
certNo: 'string',
|
|
3615
|
-
identityType: 'string',
|
|
3616
3760
|
certType: 'string',
|
|
3617
|
-
|
|
3761
|
+
faceReserveStrategy: 'string',
|
|
3618
3762
|
returnUrl: 'string',
|
|
3619
|
-
orderId: 'string',
|
|
3620
3763
|
};
|
|
3621
3764
|
}
|
|
3622
3765
|
}
|
|
@@ -3630,7 +3773,8 @@ class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
|
3630
3773
|
reqMsgId: 'req_msg_id',
|
|
3631
3774
|
resultCode: 'result_code',
|
|
3632
3775
|
resultMsg: 'result_msg',
|
|
3633
|
-
|
|
3776
|
+
realPersonVerificationCode: 'real_person_verification_code',
|
|
3777
|
+
webUrl: 'web_url',
|
|
3634
3778
|
};
|
|
3635
3779
|
}
|
|
3636
3780
|
static types() {
|
|
@@ -3638,7 +3782,8 @@ class CreateRealpersonFacevrfResponse extends $tea.Model {
|
|
|
3638
3782
|
reqMsgId: 'string',
|
|
3639
3783
|
resultCode: 'string',
|
|
3640
3784
|
resultMsg: 'string',
|
|
3641
|
-
|
|
3785
|
+
realPersonVerificationCode: 'string',
|
|
3786
|
+
webUrl: 'string',
|
|
3642
3787
|
};
|
|
3643
3788
|
}
|
|
3644
3789
|
}
|
|
@@ -3651,18 +3796,14 @@ class QueryRealpersonFacevrfRequest extends $tea.Model {
|
|
|
3651
3796
|
return {
|
|
3652
3797
|
authToken: 'auth_token',
|
|
3653
3798
|
productInstanceId: 'product_instance_id',
|
|
3654
|
-
|
|
3655
|
-
outerOrderNo: 'outer_order_no',
|
|
3656
|
-
orderId: 'order_id',
|
|
3799
|
+
realPersonVerificationCode: 'real_person_verification_code',
|
|
3657
3800
|
};
|
|
3658
3801
|
}
|
|
3659
3802
|
static types() {
|
|
3660
3803
|
return {
|
|
3661
3804
|
authToken: 'string',
|
|
3662
3805
|
productInstanceId: 'string',
|
|
3663
|
-
|
|
3664
|
-
outerOrderNo: 'string',
|
|
3665
|
-
orderId: 'string',
|
|
3806
|
+
realPersonVerificationCode: 'string',
|
|
3666
3807
|
};
|
|
3667
3808
|
}
|
|
3668
3809
|
}
|
|
@@ -3676,7 +3817,9 @@ class QueryRealpersonFacevrfResponse extends $tea.Model {
|
|
|
3676
3817
|
reqMsgId: 'req_msg_id',
|
|
3677
3818
|
resultCode: 'result_code',
|
|
3678
3819
|
resultMsg: 'result_msg',
|
|
3679
|
-
|
|
3820
|
+
certifyState: 'certify_state',
|
|
3821
|
+
attackFlag: 'attack_flag',
|
|
3822
|
+
alivePhoto: 'alive_photo',
|
|
3680
3823
|
};
|
|
3681
3824
|
}
|
|
3682
3825
|
static types() {
|
|
@@ -3684,7 +3827,9 @@ class QueryRealpersonFacevrfResponse extends $tea.Model {
|
|
|
3684
3827
|
reqMsgId: 'string',
|
|
3685
3828
|
resultCode: 'string',
|
|
3686
3829
|
resultMsg: 'string',
|
|
3687
|
-
|
|
3830
|
+
certifyState: 'string',
|
|
3831
|
+
attackFlag: 'string',
|
|
3832
|
+
alivePhoto: 'string',
|
|
3688
3833
|
};
|
|
3689
3834
|
}
|
|
3690
3835
|
}
|
|
@@ -4836,6 +4981,7 @@ class QueryWithholdSignResponse extends $tea.Model {
|
|
|
4836
4981
|
signTime: 'sign_time',
|
|
4837
4982
|
validTime: 'valid_time',
|
|
4838
4983
|
invalidTime: 'invalid_time',
|
|
4984
|
+
agreementNo: 'agreement_no',
|
|
4839
4985
|
};
|
|
4840
4986
|
}
|
|
4841
4987
|
static types() {
|
|
@@ -4847,6 +4993,7 @@ class QueryWithholdSignResponse extends $tea.Model {
|
|
|
4847
4993
|
signTime: 'string',
|
|
4848
4994
|
validTime: 'string',
|
|
4849
4995
|
invalidTime: 'string',
|
|
4996
|
+
agreementNo: 'string',
|
|
4850
4997
|
};
|
|
4851
4998
|
}
|
|
4852
4999
|
}
|
|
@@ -5469,7 +5616,7 @@ class Client {
|
|
|
5469
5616
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
5470
5617
|
access_key: this._accessKeyId,
|
|
5471
5618
|
base_sdk_version: "TeaSDK-2.0",
|
|
5472
|
-
sdk_version: "1.8.
|
|
5619
|
+
sdk_version: "1.8.92",
|
|
5473
5620
|
_prod_code: "ATO",
|
|
5474
5621
|
_prod_channel: "undefined",
|
|
5475
5622
|
};
|
|
@@ -6596,6 +6743,23 @@ class Client {
|
|
|
6596
6743
|
tea_util_1.default.validateModel(request);
|
|
6597
6744
|
return $tea.cast(await this.doRequest("1.0", "antchain.ato.merchantexpand.merchant.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryMerchantexpandMerchantResponse({}));
|
|
6598
6745
|
}
|
|
6746
|
+
/**
|
|
6747
|
+
* Description: 商家信息修改
|
|
6748
|
+
* Summary: 商家信息修改
|
|
6749
|
+
*/
|
|
6750
|
+
async updateMerchantexpandMerchant(request) {
|
|
6751
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
6752
|
+
let headers = {};
|
|
6753
|
+
return await this.updateMerchantexpandMerchantEx(request, headers, runtime);
|
|
6754
|
+
}
|
|
6755
|
+
/**
|
|
6756
|
+
* Description: 商家信息修改
|
|
6757
|
+
* Summary: 商家信息修改
|
|
6758
|
+
*/
|
|
6759
|
+
async updateMerchantexpandMerchantEx(request, headers, runtime) {
|
|
6760
|
+
tea_util_1.default.validateModel(request);
|
|
6761
|
+
return $tea.cast(await this.doRequest("1.0", "antchain.ato.merchantexpand.merchant.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateMerchantexpandMerchantResponse({}));
|
|
6762
|
+
}
|
|
6599
6763
|
/**
|
|
6600
6764
|
* Description: 可信身份认证,创建认证
|
|
6601
6765
|
* Summary: 创建认证
|