@antchain/ato 1.10.16 → 1.10.37
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 +345 -29
- package/dist/client.js +542 -55
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +884 -150
package/dist/client.d.ts
CHANGED
|
@@ -34,6 +34,19 @@ export declare class Config extends $tea.Model {
|
|
|
34
34
|
[key: string]: any;
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
|
+
export declare class FileInfo extends $tea.Model {
|
|
38
|
+
fileName: string;
|
|
39
|
+
fileKey: string;
|
|
40
|
+
static names(): {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
static types(): {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
};
|
|
46
|
+
constructor(map?: {
|
|
47
|
+
[key: string]: any;
|
|
48
|
+
});
|
|
49
|
+
}
|
|
37
50
|
export declare class SubRentRiskItem extends $tea.Model {
|
|
38
51
|
riskName: string;
|
|
39
52
|
riskRank: string;
|
|
@@ -80,7 +93,7 @@ export declare class StaticDataModuleDetail extends $tea.Model {
|
|
|
80
93
|
export declare class SiteInfo extends $tea.Model {
|
|
81
94
|
tinyAppId?: string;
|
|
82
95
|
siteName?: string;
|
|
83
|
-
|
|
96
|
+
screenshotFile?: FileInfo;
|
|
84
97
|
siteUrl?: string;
|
|
85
98
|
siteType?: string;
|
|
86
99
|
static names(): {
|
|
@@ -93,19 +106,6 @@ export declare class SiteInfo extends $tea.Model {
|
|
|
93
106
|
[key: string]: any;
|
|
94
107
|
});
|
|
95
108
|
}
|
|
96
|
-
export declare class FileInfo extends $tea.Model {
|
|
97
|
-
fileName: string;
|
|
98
|
-
fileKey: string;
|
|
99
|
-
static names(): {
|
|
100
|
-
[key: string]: string;
|
|
101
|
-
};
|
|
102
|
-
static types(): {
|
|
103
|
-
[key: string]: any;
|
|
104
|
-
};
|
|
105
|
-
constructor(map?: {
|
|
106
|
-
[key: string]: any;
|
|
107
|
-
});
|
|
108
|
-
}
|
|
109
109
|
export declare class AppletRiskModel extends $tea.Model {
|
|
110
110
|
code: string;
|
|
111
111
|
recordId: string;
|
|
@@ -482,15 +482,7 @@ export declare class LegalInfoUpdate extends $tea.Model {
|
|
|
482
482
|
[key: string]: any;
|
|
483
483
|
});
|
|
484
484
|
}
|
|
485
|
-
export declare class
|
|
486
|
-
agreementNo?: string;
|
|
487
|
-
orderId?: string;
|
|
488
|
-
orderCreateTime?: string;
|
|
489
|
-
totalRentMoney?: number;
|
|
490
|
-
rentRerm?: number;
|
|
491
|
-
orderStatus?: string;
|
|
492
|
-
userName?: string;
|
|
493
|
-
userPhoneNumber?: string;
|
|
485
|
+
export declare class PromiseInfo extends $tea.Model {
|
|
494
486
|
static names(): {
|
|
495
487
|
[key: string]: string;
|
|
496
488
|
};
|
|
@@ -501,7 +493,10 @@ export declare class MerchantOrderInfo extends $tea.Model {
|
|
|
501
493
|
[key: string]: any;
|
|
502
494
|
});
|
|
503
495
|
}
|
|
504
|
-
export declare class
|
|
496
|
+
export declare class DeliveryDetail extends $tea.Model {
|
|
497
|
+
receiverName?: string;
|
|
498
|
+
receiverMobile?: string;
|
|
499
|
+
receiverAddress?: string;
|
|
505
500
|
static names(): {
|
|
506
501
|
[key: string]: string;
|
|
507
502
|
};
|
|
@@ -512,10 +507,10 @@ export declare class PromiseInfo extends $tea.Model {
|
|
|
512
507
|
[key: string]: any;
|
|
513
508
|
});
|
|
514
509
|
}
|
|
515
|
-
export declare class
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
510
|
+
export declare class CustomerServiceInfo extends $tea.Model {
|
|
511
|
+
merchantId?: string;
|
|
512
|
+
merchantName?: string;
|
|
513
|
+
processType?: string;
|
|
519
514
|
static names(): {
|
|
520
515
|
[key: string]: string;
|
|
521
516
|
};
|
|
@@ -624,6 +619,26 @@ export declare class CompanyInfoUpdate extends $tea.Model {
|
|
|
624
619
|
[key: string]: any;
|
|
625
620
|
});
|
|
626
621
|
}
|
|
622
|
+
export declare class OrderSearchInfo extends $tea.Model {
|
|
623
|
+
orderId?: string;
|
|
624
|
+
agreementNo?: string;
|
|
625
|
+
orderCreateTime?: string;
|
|
626
|
+
totalRentMoney?: number;
|
|
627
|
+
rentTerm?: number;
|
|
628
|
+
rentUnit?: string;
|
|
629
|
+
orderStatus?: string;
|
|
630
|
+
userName?: string;
|
|
631
|
+
userPhoneNumber?: string;
|
|
632
|
+
static names(): {
|
|
633
|
+
[key: string]: string;
|
|
634
|
+
};
|
|
635
|
+
static types(): {
|
|
636
|
+
[key: string]: any;
|
|
637
|
+
};
|
|
638
|
+
constructor(map?: {
|
|
639
|
+
[key: string]: any;
|
|
640
|
+
});
|
|
641
|
+
}
|
|
627
642
|
export declare class OrderProductInfo extends $tea.Model {
|
|
628
643
|
productId?: string;
|
|
629
644
|
productName?: string;
|
|
@@ -1074,6 +1089,8 @@ export declare class CancelFundPlanRequest extends $tea.Model {
|
|
|
1074
1089
|
merchantId: string;
|
|
1075
1090
|
cancelReason: string;
|
|
1076
1091
|
fundId?: string;
|
|
1092
|
+
operation?: string;
|
|
1093
|
+
redeemAmount?: number;
|
|
1077
1094
|
static names(): {
|
|
1078
1095
|
[key: string]: string;
|
|
1079
1096
|
};
|
|
@@ -2058,6 +2075,8 @@ export declare class CreateInnerTemplatetextareaRequest extends $tea.Model {
|
|
|
2058
2075
|
componentType: string;
|
|
2059
2076
|
componentName: string;
|
|
2060
2077
|
required: boolean;
|
|
2078
|
+
line?: number;
|
|
2079
|
+
multiName?: string;
|
|
2061
2080
|
static names(): {
|
|
2062
2081
|
[key: string]: string;
|
|
2063
2082
|
};
|
|
@@ -2449,6 +2468,7 @@ export declare class QueryInnerMerchantpayexpandResponse extends $tea.Model {
|
|
|
2449
2468
|
expandMode?: string;
|
|
2450
2469
|
expandStatus?: string;
|
|
2451
2470
|
expandFailReason?: string;
|
|
2471
|
+
showCustomerServiceBanner?: boolean;
|
|
2452
2472
|
static names(): {
|
|
2453
2473
|
[key: string]: string;
|
|
2454
2474
|
};
|
|
@@ -3304,7 +3324,7 @@ export declare class PagequeryInnerOrderResponse extends $tea.Model {
|
|
|
3304
3324
|
reqMsgId?: string;
|
|
3305
3325
|
resultCode?: string;
|
|
3306
3326
|
resultMsg?: string;
|
|
3307
|
-
orderInfoList?:
|
|
3327
|
+
orderInfoList?: OrderSearchInfo[];
|
|
3308
3328
|
total?: number;
|
|
3309
3329
|
static names(): {
|
|
3310
3330
|
[key: string]: string;
|
|
@@ -3415,6 +3435,195 @@ export declare class BatchqueryInnerMarketingscoreResponse extends $tea.Model {
|
|
|
3415
3435
|
[key: string]: any;
|
|
3416
3436
|
});
|
|
3417
3437
|
}
|
|
3438
|
+
export declare class CreateInnerCustomerserviceRequest extends $tea.Model {
|
|
3439
|
+
authToken?: string;
|
|
3440
|
+
productInstanceId?: string;
|
|
3441
|
+
tenantId: string;
|
|
3442
|
+
merchantId?: string;
|
|
3443
|
+
merchantName?: string;
|
|
3444
|
+
processType: string;
|
|
3445
|
+
serviceProviderName?: string;
|
|
3446
|
+
alipayBindMobile: string;
|
|
3447
|
+
alipayLogonId: string;
|
|
3448
|
+
customerServicePhone: string;
|
|
3449
|
+
customerServiceName: string;
|
|
3450
|
+
onlineSupportSiteUrl: string;
|
|
3451
|
+
customerComplaintIssues: string;
|
|
3452
|
+
expandMode: string;
|
|
3453
|
+
static names(): {
|
|
3454
|
+
[key: string]: string;
|
|
3455
|
+
};
|
|
3456
|
+
static types(): {
|
|
3457
|
+
[key: string]: any;
|
|
3458
|
+
};
|
|
3459
|
+
constructor(map?: {
|
|
3460
|
+
[key: string]: any;
|
|
3461
|
+
});
|
|
3462
|
+
}
|
|
3463
|
+
export declare class CreateInnerCustomerserviceResponse extends $tea.Model {
|
|
3464
|
+
reqMsgId?: string;
|
|
3465
|
+
resultCode?: string;
|
|
3466
|
+
resultMsg?: string;
|
|
3467
|
+
static names(): {
|
|
3468
|
+
[key: string]: string;
|
|
3469
|
+
};
|
|
3470
|
+
static types(): {
|
|
3471
|
+
[key: string]: any;
|
|
3472
|
+
};
|
|
3473
|
+
constructor(map?: {
|
|
3474
|
+
[key: string]: any;
|
|
3475
|
+
});
|
|
3476
|
+
}
|
|
3477
|
+
export declare class UpdateInnerCustomerserviceRequest extends $tea.Model {
|
|
3478
|
+
authToken?: string;
|
|
3479
|
+
productInstanceId?: string;
|
|
3480
|
+
tenantId: string;
|
|
3481
|
+
merchantId?: string;
|
|
3482
|
+
merchantName: string;
|
|
3483
|
+
processType: string;
|
|
3484
|
+
serviceProviderName?: string;
|
|
3485
|
+
alipayBindMobile: string;
|
|
3486
|
+
alipayLogonId: string;
|
|
3487
|
+
customerServicePhone: string;
|
|
3488
|
+
customerServiceName: string;
|
|
3489
|
+
onlineSupportSiteUrl: string;
|
|
3490
|
+
customerComplaintIssues: string;
|
|
3491
|
+
expandMode: string;
|
|
3492
|
+
static names(): {
|
|
3493
|
+
[key: string]: string;
|
|
3494
|
+
};
|
|
3495
|
+
static types(): {
|
|
3496
|
+
[key: string]: any;
|
|
3497
|
+
};
|
|
3498
|
+
constructor(map?: {
|
|
3499
|
+
[key: string]: any;
|
|
3500
|
+
});
|
|
3501
|
+
}
|
|
3502
|
+
export declare class UpdateInnerCustomerserviceResponse extends $tea.Model {
|
|
3503
|
+
reqMsgId?: string;
|
|
3504
|
+
resultCode?: string;
|
|
3505
|
+
resultMsg?: string;
|
|
3506
|
+
static names(): {
|
|
3507
|
+
[key: string]: string;
|
|
3508
|
+
};
|
|
3509
|
+
static types(): {
|
|
3510
|
+
[key: string]: any;
|
|
3511
|
+
};
|
|
3512
|
+
constructor(map?: {
|
|
3513
|
+
[key: string]: any;
|
|
3514
|
+
});
|
|
3515
|
+
}
|
|
3516
|
+
export declare class PagequeryInnerCustomerserviceRequest extends $tea.Model {
|
|
3517
|
+
authToken?: string;
|
|
3518
|
+
productInstanceId?: string;
|
|
3519
|
+
tenantId: string;
|
|
3520
|
+
pageInfo: PageQuery;
|
|
3521
|
+
processType?: string;
|
|
3522
|
+
merchantId?: string;
|
|
3523
|
+
merchantName?: string;
|
|
3524
|
+
static names(): {
|
|
3525
|
+
[key: string]: string;
|
|
3526
|
+
};
|
|
3527
|
+
static types(): {
|
|
3528
|
+
[key: string]: any;
|
|
3529
|
+
};
|
|
3530
|
+
constructor(map?: {
|
|
3531
|
+
[key: string]: any;
|
|
3532
|
+
});
|
|
3533
|
+
}
|
|
3534
|
+
export declare class PagequeryInnerCustomerserviceResponse extends $tea.Model {
|
|
3535
|
+
reqMsgId?: string;
|
|
3536
|
+
resultCode?: string;
|
|
3537
|
+
resultMsg?: string;
|
|
3538
|
+
total?: number;
|
|
3539
|
+
customerServiceInfoList?: CustomerServiceInfo[];
|
|
3540
|
+
static names(): {
|
|
3541
|
+
[key: string]: string;
|
|
3542
|
+
};
|
|
3543
|
+
static types(): {
|
|
3544
|
+
[key: string]: any;
|
|
3545
|
+
};
|
|
3546
|
+
constructor(map?: {
|
|
3547
|
+
[key: string]: any;
|
|
3548
|
+
});
|
|
3549
|
+
}
|
|
3550
|
+
export declare class DetailInnerCustomerserviceRequest extends $tea.Model {
|
|
3551
|
+
authToken?: string;
|
|
3552
|
+
productInstanceId?: string;
|
|
3553
|
+
tenantId: string;
|
|
3554
|
+
merchantId?: string;
|
|
3555
|
+
expandMode: string;
|
|
3556
|
+
static names(): {
|
|
3557
|
+
[key: string]: string;
|
|
3558
|
+
};
|
|
3559
|
+
static types(): {
|
|
3560
|
+
[key: string]: any;
|
|
3561
|
+
};
|
|
3562
|
+
constructor(map?: {
|
|
3563
|
+
[key: string]: any;
|
|
3564
|
+
});
|
|
3565
|
+
}
|
|
3566
|
+
export declare class DetailInnerCustomerserviceResponse extends $tea.Model {
|
|
3567
|
+
reqMsgId?: string;
|
|
3568
|
+
resultCode?: string;
|
|
3569
|
+
resultMsg?: string;
|
|
3570
|
+
merchantId?: string;
|
|
3571
|
+
merchantName?: string;
|
|
3572
|
+
processType?: string;
|
|
3573
|
+
serviceProviderName?: string;
|
|
3574
|
+
alipayBindMobile?: string;
|
|
3575
|
+
alipayLogonId?: string;
|
|
3576
|
+
customerServicePhone?: string;
|
|
3577
|
+
customerServiceName?: string;
|
|
3578
|
+
onlineSupportSiteUrl?: string;
|
|
3579
|
+
customerComplaintIssues?: string;
|
|
3580
|
+
static names(): {
|
|
3581
|
+
[key: string]: string;
|
|
3582
|
+
};
|
|
3583
|
+
static types(): {
|
|
3584
|
+
[key: string]: any;
|
|
3585
|
+
};
|
|
3586
|
+
constructor(map?: {
|
|
3587
|
+
[key: string]: any;
|
|
3588
|
+
});
|
|
3589
|
+
}
|
|
3590
|
+
export declare class GetInnerCustomerservicetemplateRequest extends $tea.Model {
|
|
3591
|
+
authToken?: string;
|
|
3592
|
+
productInstanceId?: string;
|
|
3593
|
+
tenantId: string;
|
|
3594
|
+
expandMode: string;
|
|
3595
|
+
processType: string;
|
|
3596
|
+
static names(): {
|
|
3597
|
+
[key: string]: string;
|
|
3598
|
+
};
|
|
3599
|
+
static types(): {
|
|
3600
|
+
[key: string]: any;
|
|
3601
|
+
};
|
|
3602
|
+
constructor(map?: {
|
|
3603
|
+
[key: string]: any;
|
|
3604
|
+
});
|
|
3605
|
+
}
|
|
3606
|
+
export declare class GetInnerCustomerservicetemplateResponse extends $tea.Model {
|
|
3607
|
+
reqMsgId?: string;
|
|
3608
|
+
resultCode?: string;
|
|
3609
|
+
resultMsg?: string;
|
|
3610
|
+
serviceProviderName?: string;
|
|
3611
|
+
alipayBindMobile?: string;
|
|
3612
|
+
alipayLogonId?: string;
|
|
3613
|
+
customerServicePhone?: string;
|
|
3614
|
+
customerServiceName?: string;
|
|
3615
|
+
onlineSupportSiteUrl?: string;
|
|
3616
|
+
customerComplaintIssues?: string;
|
|
3617
|
+
static names(): {
|
|
3618
|
+
[key: string]: string;
|
|
3619
|
+
};
|
|
3620
|
+
static types(): {
|
|
3621
|
+
[key: string]: any;
|
|
3622
|
+
};
|
|
3623
|
+
constructor(map?: {
|
|
3624
|
+
[key: string]: any;
|
|
3625
|
+
});
|
|
3626
|
+
}
|
|
3418
3627
|
export declare class CreateInsureRequest extends $tea.Model {
|
|
3419
3628
|
authToken?: string;
|
|
3420
3629
|
productInstanceId?: string;
|
|
@@ -3429,6 +3638,7 @@ export declare class CreateInsureRequest extends $tea.Model {
|
|
|
3429
3638
|
facevrfFlowId?: string;
|
|
3430
3639
|
logisticsNumber?: string;
|
|
3431
3640
|
tradeTime?: string;
|
|
3641
|
+
address?: string;
|
|
3432
3642
|
static names(): {
|
|
3433
3643
|
[key: string]: string;
|
|
3434
3644
|
};
|
|
@@ -3811,6 +4021,10 @@ export declare class SubmitSignFlowRequest extends $tea.Model {
|
|
|
3811
4021
|
thirdSigner?: string;
|
|
3812
4022
|
userOpenId?: string;
|
|
3813
4023
|
merchantAppId?: string;
|
|
4024
|
+
userOrgName?: string;
|
|
4025
|
+
userOrgIdType?: string;
|
|
4026
|
+
userOrgIdNumber?: string;
|
|
4027
|
+
userType?: string;
|
|
3814
4028
|
static names(): {
|
|
3815
4029
|
[key: string]: string;
|
|
3816
4030
|
};
|
|
@@ -4132,6 +4346,35 @@ export declare class CancelSignFlowResponse extends $tea.Model {
|
|
|
4132
4346
|
[key: string]: any;
|
|
4133
4347
|
});
|
|
4134
4348
|
}
|
|
4349
|
+
export declare class GetSignContractcertificateRequest extends $tea.Model {
|
|
4350
|
+
authToken?: string;
|
|
4351
|
+
productInstanceId?: string;
|
|
4352
|
+
flowId: string;
|
|
4353
|
+
static names(): {
|
|
4354
|
+
[key: string]: string;
|
|
4355
|
+
};
|
|
4356
|
+
static types(): {
|
|
4357
|
+
[key: string]: any;
|
|
4358
|
+
};
|
|
4359
|
+
constructor(map?: {
|
|
4360
|
+
[key: string]: any;
|
|
4361
|
+
});
|
|
4362
|
+
}
|
|
4363
|
+
export declare class GetSignContractcertificateResponse extends $tea.Model {
|
|
4364
|
+
reqMsgId?: string;
|
|
4365
|
+
resultCode?: string;
|
|
4366
|
+
resultMsg?: string;
|
|
4367
|
+
url?: string;
|
|
4368
|
+
static names(): {
|
|
4369
|
+
[key: string]: string;
|
|
4370
|
+
};
|
|
4371
|
+
static types(): {
|
|
4372
|
+
[key: string]: any;
|
|
4373
|
+
};
|
|
4374
|
+
constructor(map?: {
|
|
4375
|
+
[key: string]: any;
|
|
4376
|
+
});
|
|
4377
|
+
}
|
|
4135
4378
|
export declare class SyncTradeRequest extends $tea.Model {
|
|
4136
4379
|
authToken?: string;
|
|
4137
4380
|
productInstanceId?: string;
|
|
@@ -4771,6 +5014,7 @@ export declare class QueryWithholdActivepayRequest extends $tea.Model {
|
|
|
4771
5014
|
periodNum?: number;
|
|
4772
5015
|
tradeNo?: string;
|
|
4773
5016
|
payType?: string;
|
|
5017
|
+
payChannel?: string;
|
|
4774
5018
|
static names(): {
|
|
4775
5019
|
[key: string]: string;
|
|
4776
5020
|
};
|
|
@@ -5998,6 +6242,66 @@ export default class Client {
|
|
|
5998
6242
|
batchqueryInnerMarketingscoreEx(request: BatchqueryInnerMarketingscoreRequest, headers: {
|
|
5999
6243
|
[key: string]: string;
|
|
6000
6244
|
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryInnerMarketingscoreResponse>;
|
|
6245
|
+
/**
|
|
6246
|
+
* Description: 创建客服信息
|
|
6247
|
+
* Summary: 创建客服信息
|
|
6248
|
+
*/
|
|
6249
|
+
createInnerCustomerservice(request: CreateInnerCustomerserviceRequest): Promise<CreateInnerCustomerserviceResponse>;
|
|
6250
|
+
/**
|
|
6251
|
+
* Description: 创建客服信息
|
|
6252
|
+
* Summary: 创建客服信息
|
|
6253
|
+
*/
|
|
6254
|
+
createInnerCustomerserviceEx(request: CreateInnerCustomerserviceRequest, headers: {
|
|
6255
|
+
[key: string]: string;
|
|
6256
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInnerCustomerserviceResponse>;
|
|
6257
|
+
/**
|
|
6258
|
+
* Description: 更新客服信息
|
|
6259
|
+
* Summary: 更新客服信息
|
|
6260
|
+
*/
|
|
6261
|
+
updateInnerCustomerservice(request: UpdateInnerCustomerserviceRequest): Promise<UpdateInnerCustomerserviceResponse>;
|
|
6262
|
+
/**
|
|
6263
|
+
* Description: 更新客服信息
|
|
6264
|
+
* Summary: 更新客服信息
|
|
6265
|
+
*/
|
|
6266
|
+
updateInnerCustomerserviceEx(request: UpdateInnerCustomerserviceRequest, headers: {
|
|
6267
|
+
[key: string]: string;
|
|
6268
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateInnerCustomerserviceResponse>;
|
|
6269
|
+
/**
|
|
6270
|
+
* Description: 分页查询客服信息
|
|
6271
|
+
* Summary: 分页查询客服信息
|
|
6272
|
+
*/
|
|
6273
|
+
pagequeryInnerCustomerservice(request: PagequeryInnerCustomerserviceRequest): Promise<PagequeryInnerCustomerserviceResponse>;
|
|
6274
|
+
/**
|
|
6275
|
+
* Description: 分页查询客服信息
|
|
6276
|
+
* Summary: 分页查询客服信息
|
|
6277
|
+
*/
|
|
6278
|
+
pagequeryInnerCustomerserviceEx(request: PagequeryInnerCustomerserviceRequest, headers: {
|
|
6279
|
+
[key: string]: string;
|
|
6280
|
+
}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerCustomerserviceResponse>;
|
|
6281
|
+
/**
|
|
6282
|
+
* Description: 获取客服信息详情
|
|
6283
|
+
* Summary: 获取客服信息详情
|
|
6284
|
+
*/
|
|
6285
|
+
detailInnerCustomerservice(request: DetailInnerCustomerserviceRequest): Promise<DetailInnerCustomerserviceResponse>;
|
|
6286
|
+
/**
|
|
6287
|
+
* Description: 获取客服信息详情
|
|
6288
|
+
* Summary: 获取客服信息详情
|
|
6289
|
+
*/
|
|
6290
|
+
detailInnerCustomerserviceEx(request: DetailInnerCustomerserviceRequest, headers: {
|
|
6291
|
+
[key: string]: string;
|
|
6292
|
+
}, runtime: $Util.RuntimeOptions): Promise<DetailInnerCustomerserviceResponse>;
|
|
6293
|
+
/**
|
|
6294
|
+
* Description: 获取代理商客服信息模版
|
|
6295
|
+
* Summary: 获取代理商客服信息模版
|
|
6296
|
+
*/
|
|
6297
|
+
getInnerCustomerservicetemplate(request: GetInnerCustomerservicetemplateRequest): Promise<GetInnerCustomerservicetemplateResponse>;
|
|
6298
|
+
/**
|
|
6299
|
+
* Description: 获取代理商客服信息模版
|
|
6300
|
+
* Summary: 获取代理商客服信息模版
|
|
6301
|
+
*/
|
|
6302
|
+
getInnerCustomerservicetemplateEx(request: GetInnerCustomerservicetemplateRequest, headers: {
|
|
6303
|
+
[key: string]: string;
|
|
6304
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetInnerCustomerservicetemplateResponse>;
|
|
6001
6305
|
/**
|
|
6002
6306
|
* Description: 一键投保
|
|
6003
6307
|
* Summary: 投保
|
|
@@ -6238,6 +6542,18 @@ export default class Client {
|
|
|
6238
6542
|
cancelSignFlowEx(request: CancelSignFlowRequest, headers: {
|
|
6239
6543
|
[key: string]: string;
|
|
6240
6544
|
}, runtime: $Util.RuntimeOptions): Promise<CancelSignFlowResponse>;
|
|
6545
|
+
/**
|
|
6546
|
+
* Description: 获取合同存证证明
|
|
6547
|
+
* Summary: 获取合同存证证明
|
|
6548
|
+
*/
|
|
6549
|
+
getSignContractcertificate(request: GetSignContractcertificateRequest): Promise<GetSignContractcertificateResponse>;
|
|
6550
|
+
/**
|
|
6551
|
+
* Description: 获取合同存证证明
|
|
6552
|
+
* Summary: 获取合同存证证明
|
|
6553
|
+
*/
|
|
6554
|
+
getSignContractcertificateEx(request: GetSignContractcertificateRequest, headers: {
|
|
6555
|
+
[key: string]: string;
|
|
6556
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetSignContractcertificateResponse>;
|
|
6241
6557
|
/**
|
|
6242
6558
|
* Description: 对账saas交易信息同步接口
|
|
6243
6559
|
* Summary: 对账saas交易信息同步接口
|