@antchain/ato 1.19.86 → 1.20.6
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 +815 -43
- package/dist/client.js +1205 -61
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1664 -33
package/dist/client.d.ts
CHANGED
|
@@ -5153,17 +5153,450 @@ export declare class CreateOnetimeRefundResponse extends $tea.Model {
|
|
|
5153
5153
|
[key: string]: any;
|
|
5154
5154
|
});
|
|
5155
5155
|
}
|
|
5156
|
+
export declare class ExecFundPlanRequest extends $tea.Model {
|
|
5157
|
+
authToken?: string;
|
|
5158
|
+
productInstanceId?: string;
|
|
5159
|
+
orderId: string;
|
|
5160
|
+
fundId: string;
|
|
5161
|
+
merchantId: string;
|
|
5162
|
+
termIndex: number;
|
|
5163
|
+
retryType: string;
|
|
5164
|
+
payType: string;
|
|
5165
|
+
static names(): {
|
|
5166
|
+
[key: string]: string;
|
|
5167
|
+
};
|
|
5168
|
+
static types(): {
|
|
5169
|
+
[key: string]: any;
|
|
5170
|
+
};
|
|
5171
|
+
constructor(map?: {
|
|
5172
|
+
[key: string]: any;
|
|
5173
|
+
});
|
|
5174
|
+
}
|
|
5175
|
+
export declare class ExecFundPlanResponse extends $tea.Model {
|
|
5176
|
+
reqMsgId?: string;
|
|
5177
|
+
resultCode?: string;
|
|
5178
|
+
resultMsg?: string;
|
|
5179
|
+
static names(): {
|
|
5180
|
+
[key: string]: string;
|
|
5181
|
+
};
|
|
5182
|
+
static types(): {
|
|
5183
|
+
[key: string]: any;
|
|
5184
|
+
};
|
|
5185
|
+
constructor(map?: {
|
|
5186
|
+
[key: string]: any;
|
|
5187
|
+
});
|
|
5188
|
+
}
|
|
5156
5189
|
export declare class QueryInnerFundassetpackagerepaymentRequest extends $tea.Model {
|
|
5157
5190
|
authToken?: string;
|
|
5158
5191
|
productInstanceId?: string;
|
|
5159
|
-
fundTenantId: string;
|
|
5160
|
-
assetPackageId?: string;
|
|
5161
|
-
merchantName?: string;
|
|
5162
|
-
loanTimeStart?: string;
|
|
5163
|
-
loanTimeEnd?: string;
|
|
5164
|
-
repaymentStatus?: string;
|
|
5165
|
-
pageInfo: PageQuery;
|
|
5192
|
+
fundTenantId: string;
|
|
5193
|
+
assetPackageId?: string;
|
|
5194
|
+
merchantName?: string;
|
|
5195
|
+
loanTimeStart?: string;
|
|
5196
|
+
loanTimeEnd?: string;
|
|
5197
|
+
repaymentStatus?: string;
|
|
5198
|
+
pageInfo: PageQuery;
|
|
5199
|
+
traceId: string;
|
|
5200
|
+
static names(): {
|
|
5201
|
+
[key: string]: string;
|
|
5202
|
+
};
|
|
5203
|
+
static types(): {
|
|
5204
|
+
[key: string]: any;
|
|
5205
|
+
};
|
|
5206
|
+
constructor(map?: {
|
|
5207
|
+
[key: string]: any;
|
|
5208
|
+
});
|
|
5209
|
+
}
|
|
5210
|
+
export declare class QueryInnerFundassetpackagerepaymentResponse extends $tea.Model {
|
|
5211
|
+
reqMsgId?: string;
|
|
5212
|
+
resultCode?: string;
|
|
5213
|
+
resultMsg?: string;
|
|
5214
|
+
data?: string;
|
|
5215
|
+
total?: number;
|
|
5216
|
+
static names(): {
|
|
5217
|
+
[key: string]: string;
|
|
5218
|
+
};
|
|
5219
|
+
static types(): {
|
|
5220
|
+
[key: string]: any;
|
|
5221
|
+
};
|
|
5222
|
+
constructor(map?: {
|
|
5223
|
+
[key: string]: any;
|
|
5224
|
+
});
|
|
5225
|
+
}
|
|
5226
|
+
export declare class QueryInnerAprepaymentdetailRequest extends $tea.Model {
|
|
5227
|
+
authToken?: string;
|
|
5228
|
+
productInstanceId?: string;
|
|
5229
|
+
fundTenantId: string;
|
|
5230
|
+
assetPacketId: string;
|
|
5231
|
+
traceId: string;
|
|
5232
|
+
static names(): {
|
|
5233
|
+
[key: string]: string;
|
|
5234
|
+
};
|
|
5235
|
+
static types(): {
|
|
5236
|
+
[key: string]: any;
|
|
5237
|
+
};
|
|
5238
|
+
constructor(map?: {
|
|
5239
|
+
[key: string]: any;
|
|
5240
|
+
});
|
|
5241
|
+
}
|
|
5242
|
+
export declare class QueryInnerAprepaymentdetailResponse extends $tea.Model {
|
|
5243
|
+
reqMsgId?: string;
|
|
5244
|
+
resultCode?: string;
|
|
5245
|
+
resultMsg?: string;
|
|
5246
|
+
data?: string;
|
|
5247
|
+
static names(): {
|
|
5248
|
+
[key: string]: string;
|
|
5249
|
+
};
|
|
5250
|
+
static types(): {
|
|
5251
|
+
[key: string]: any;
|
|
5252
|
+
};
|
|
5253
|
+
constructor(map?: {
|
|
5254
|
+
[key: string]: any;
|
|
5255
|
+
});
|
|
5256
|
+
}
|
|
5257
|
+
export declare class QueryInnerAprepaymentallocatedetailRequest extends $tea.Model {
|
|
5258
|
+
authToken?: string;
|
|
5259
|
+
productInstanceId?: string;
|
|
5260
|
+
fundTenantId: string;
|
|
5261
|
+
assetPackageId: string;
|
|
5262
|
+
fundId: string;
|
|
5263
|
+
tenantId: string;
|
|
5264
|
+
merchantId: string;
|
|
5265
|
+
periodNum: number;
|
|
5266
|
+
traceId: string;
|
|
5267
|
+
static names(): {
|
|
5268
|
+
[key: string]: string;
|
|
5269
|
+
};
|
|
5270
|
+
static types(): {
|
|
5271
|
+
[key: string]: any;
|
|
5272
|
+
};
|
|
5273
|
+
constructor(map?: {
|
|
5274
|
+
[key: string]: any;
|
|
5275
|
+
});
|
|
5276
|
+
}
|
|
5277
|
+
export declare class QueryInnerAprepaymentallocatedetailResponse extends $tea.Model {
|
|
5278
|
+
reqMsgId?: string;
|
|
5279
|
+
resultCode?: string;
|
|
5280
|
+
resultMsg?: string;
|
|
5281
|
+
data?: AssetPackagePlanAllocateDetail[];
|
|
5282
|
+
static names(): {
|
|
5283
|
+
[key: string]: string;
|
|
5284
|
+
};
|
|
5285
|
+
static types(): {
|
|
5286
|
+
[key: string]: any;
|
|
5287
|
+
};
|
|
5288
|
+
constructor(map?: {
|
|
5289
|
+
[key: string]: any;
|
|
5290
|
+
});
|
|
5291
|
+
}
|
|
5292
|
+
export declare class QueryInnerMermngdemoRequest extends $tea.Model {
|
|
5293
|
+
authToken?: string;
|
|
5294
|
+
productInstanceId?: string;
|
|
5295
|
+
tenantId: string;
|
|
5296
|
+
static names(): {
|
|
5297
|
+
[key: string]: string;
|
|
5298
|
+
};
|
|
5299
|
+
static types(): {
|
|
5300
|
+
[key: string]: any;
|
|
5301
|
+
};
|
|
5302
|
+
constructor(map?: {
|
|
5303
|
+
[key: string]: any;
|
|
5304
|
+
});
|
|
5305
|
+
}
|
|
5306
|
+
export declare class QueryInnerMermngdemoResponse extends $tea.Model {
|
|
5307
|
+
reqMsgId?: string;
|
|
5308
|
+
resultCode?: string;
|
|
5309
|
+
resultMsg?: string;
|
|
5310
|
+
merchantName?: string;
|
|
5311
|
+
static names(): {
|
|
5312
|
+
[key: string]: string;
|
|
5313
|
+
};
|
|
5314
|
+
static types(): {
|
|
5315
|
+
[key: string]: any;
|
|
5316
|
+
};
|
|
5317
|
+
constructor(map?: {
|
|
5318
|
+
[key: string]: any;
|
|
5319
|
+
});
|
|
5320
|
+
}
|
|
5321
|
+
export declare class QueryInnerMermngcontractextractRequest extends $tea.Model {
|
|
5322
|
+
authToken?: string;
|
|
5323
|
+
productInstanceId?: string;
|
|
5324
|
+
traceId: string;
|
|
5325
|
+
tenantId: string;
|
|
5326
|
+
taskInstantId: string;
|
|
5327
|
+
static names(): {
|
|
5328
|
+
[key: string]: string;
|
|
5329
|
+
};
|
|
5330
|
+
static types(): {
|
|
5331
|
+
[key: string]: any;
|
|
5332
|
+
};
|
|
5333
|
+
constructor(map?: {
|
|
5334
|
+
[key: string]: any;
|
|
5335
|
+
});
|
|
5336
|
+
}
|
|
5337
|
+
export declare class QueryInnerMermngcontractextractResponse extends $tea.Model {
|
|
5338
|
+
reqMsgId?: string;
|
|
5339
|
+
resultCode?: string;
|
|
5340
|
+
resultMsg?: string;
|
|
5341
|
+
taskCode?: string;
|
|
5342
|
+
taskInstantId?: string;
|
|
5343
|
+
bizId?: string;
|
|
5344
|
+
status?: string;
|
|
5345
|
+
extractResult?: string;
|
|
5346
|
+
static names(): {
|
|
5347
|
+
[key: string]: string;
|
|
5348
|
+
};
|
|
5349
|
+
static types(): {
|
|
5350
|
+
[key: string]: any;
|
|
5351
|
+
};
|
|
5352
|
+
constructor(map?: {
|
|
5353
|
+
[key: string]: any;
|
|
5354
|
+
});
|
|
5355
|
+
}
|
|
5356
|
+
export declare class SumbitInnerMermngcontractextractRequest extends $tea.Model {
|
|
5357
|
+
authToken?: string;
|
|
5358
|
+
productInstanceId?: string;
|
|
5359
|
+
traceId: string;
|
|
5360
|
+
tenantId: string;
|
|
5361
|
+
taskCode: string;
|
|
5362
|
+
bizId: string;
|
|
5363
|
+
fileUrl: string;
|
|
5364
|
+
bizParams?: string;
|
|
5365
|
+
static names(): {
|
|
5366
|
+
[key: string]: string;
|
|
5367
|
+
};
|
|
5368
|
+
static types(): {
|
|
5369
|
+
[key: string]: any;
|
|
5370
|
+
};
|
|
5371
|
+
constructor(map?: {
|
|
5372
|
+
[key: string]: any;
|
|
5373
|
+
});
|
|
5374
|
+
}
|
|
5375
|
+
export declare class SumbitInnerMermngcontractextractResponse extends $tea.Model {
|
|
5376
|
+
reqMsgId?: string;
|
|
5377
|
+
resultCode?: string;
|
|
5378
|
+
resultMsg?: string;
|
|
5379
|
+
taskInstantId?: string;
|
|
5380
|
+
static names(): {
|
|
5381
|
+
[key: string]: string;
|
|
5382
|
+
};
|
|
5383
|
+
static types(): {
|
|
5384
|
+
[key: string]: any;
|
|
5385
|
+
};
|
|
5386
|
+
constructor(map?: {
|
|
5387
|
+
[key: string]: any;
|
|
5388
|
+
});
|
|
5389
|
+
}
|
|
5390
|
+
export declare class SumbitInnerMermngcontractauditRequest extends $tea.Model {
|
|
5391
|
+
authToken?: string;
|
|
5392
|
+
productInstanceId?: string;
|
|
5393
|
+
traceId: string;
|
|
5394
|
+
tenantId: string;
|
|
5395
|
+
buIdList: string[];
|
|
5396
|
+
contractType: string;
|
|
5397
|
+
contractFile: FileInfo;
|
|
5398
|
+
stance: string;
|
|
5399
|
+
businessGoals?: string;
|
|
5400
|
+
aiBaselineFlag: boolean;
|
|
5401
|
+
static names(): {
|
|
5402
|
+
[key: string]: string;
|
|
5403
|
+
};
|
|
5404
|
+
static types(): {
|
|
5405
|
+
[key: string]: any;
|
|
5406
|
+
};
|
|
5407
|
+
constructor(map?: {
|
|
5408
|
+
[key: string]: any;
|
|
5409
|
+
});
|
|
5410
|
+
}
|
|
5411
|
+
export declare class SumbitInnerMermngcontractauditResponse extends $tea.Model {
|
|
5412
|
+
reqMsgId?: string;
|
|
5413
|
+
resultCode?: string;
|
|
5414
|
+
resultMsg?: string;
|
|
5415
|
+
status?: string;
|
|
5416
|
+
auditId?: string;
|
|
5417
|
+
contractAuditFinalFile?: FileInfo;
|
|
5418
|
+
static names(): {
|
|
5419
|
+
[key: string]: string;
|
|
5420
|
+
};
|
|
5421
|
+
static types(): {
|
|
5422
|
+
[key: string]: any;
|
|
5423
|
+
};
|
|
5424
|
+
constructor(map?: {
|
|
5425
|
+
[key: string]: any;
|
|
5426
|
+
});
|
|
5427
|
+
}
|
|
5428
|
+
export declare class QueryInnerMermngcontractauditRequest extends $tea.Model {
|
|
5429
|
+
authToken?: string;
|
|
5430
|
+
productInstanceId?: string;
|
|
5431
|
+
auditId: string;
|
|
5432
|
+
traceId: string;
|
|
5433
|
+
tenantId: string;
|
|
5434
|
+
static names(): {
|
|
5435
|
+
[key: string]: string;
|
|
5436
|
+
};
|
|
5437
|
+
static types(): {
|
|
5438
|
+
[key: string]: any;
|
|
5439
|
+
};
|
|
5440
|
+
constructor(map?: {
|
|
5441
|
+
[key: string]: any;
|
|
5442
|
+
});
|
|
5443
|
+
}
|
|
5444
|
+
export declare class QueryInnerMermngcontractauditResponse extends $tea.Model {
|
|
5445
|
+
reqMsgId?: string;
|
|
5446
|
+
resultCode?: string;
|
|
5447
|
+
resultMsg?: string;
|
|
5448
|
+
auditId?: string;
|
|
5449
|
+
status?: string;
|
|
5450
|
+
result?: string;
|
|
5451
|
+
static names(): {
|
|
5452
|
+
[key: string]: string;
|
|
5453
|
+
};
|
|
5454
|
+
static types(): {
|
|
5455
|
+
[key: string]: any;
|
|
5456
|
+
};
|
|
5457
|
+
constructor(map?: {
|
|
5458
|
+
[key: string]: any;
|
|
5459
|
+
});
|
|
5460
|
+
}
|
|
5461
|
+
export declare class FinishInnerMermngcontractauditRequest extends $tea.Model {
|
|
5462
|
+
authToken?: string;
|
|
5463
|
+
productInstanceId?: string;
|
|
5464
|
+
traceId: string;
|
|
5465
|
+
tenantId: string;
|
|
5466
|
+
auditId: string;
|
|
5467
|
+
static names(): {
|
|
5468
|
+
[key: string]: string;
|
|
5469
|
+
};
|
|
5470
|
+
static types(): {
|
|
5471
|
+
[key: string]: any;
|
|
5472
|
+
};
|
|
5473
|
+
constructor(map?: {
|
|
5474
|
+
[key: string]: any;
|
|
5475
|
+
});
|
|
5476
|
+
}
|
|
5477
|
+
export declare class FinishInnerMermngcontractauditResponse extends $tea.Model {
|
|
5478
|
+
reqMsgId?: string;
|
|
5479
|
+
resultCode?: string;
|
|
5480
|
+
resultMsg?: string;
|
|
5481
|
+
static names(): {
|
|
5482
|
+
[key: string]: string;
|
|
5483
|
+
};
|
|
5484
|
+
static types(): {
|
|
5485
|
+
[key: string]: any;
|
|
5486
|
+
};
|
|
5487
|
+
constructor(map?: {
|
|
5488
|
+
[key: string]: any;
|
|
5489
|
+
});
|
|
5490
|
+
}
|
|
5491
|
+
export declare class EditInnerMermngcontractauditdetailRequest extends $tea.Model {
|
|
5492
|
+
authToken?: string;
|
|
5493
|
+
productInstanceId?: string;
|
|
5494
|
+
traceId: string;
|
|
5495
|
+
tenantId: string;
|
|
5496
|
+
auditId: string;
|
|
5497
|
+
auditDetailId: string;
|
|
5498
|
+
operateType: string;
|
|
5499
|
+
contentType: string;
|
|
5500
|
+
content?: string;
|
|
5501
|
+
static names(): {
|
|
5502
|
+
[key: string]: string;
|
|
5503
|
+
};
|
|
5504
|
+
static types(): {
|
|
5505
|
+
[key: string]: any;
|
|
5506
|
+
};
|
|
5507
|
+
constructor(map?: {
|
|
5508
|
+
[key: string]: any;
|
|
5509
|
+
});
|
|
5510
|
+
}
|
|
5511
|
+
export declare class EditInnerMermngcontractauditdetailResponse extends $tea.Model {
|
|
5512
|
+
reqMsgId?: string;
|
|
5513
|
+
resultCode?: string;
|
|
5514
|
+
resultMsg?: string;
|
|
5515
|
+
result?: string;
|
|
5516
|
+
static names(): {
|
|
5517
|
+
[key: string]: string;
|
|
5518
|
+
};
|
|
5519
|
+
static types(): {
|
|
5520
|
+
[key: string]: any;
|
|
5521
|
+
};
|
|
5522
|
+
constructor(map?: {
|
|
5523
|
+
[key: string]: any;
|
|
5524
|
+
});
|
|
5525
|
+
}
|
|
5526
|
+
export declare class FeedbackInnerMermngcontractauditRequest extends $tea.Model {
|
|
5527
|
+
authToken?: string;
|
|
5528
|
+
productInstanceId?: string;
|
|
5529
|
+
traceId: string;
|
|
5530
|
+
auditId: string;
|
|
5531
|
+
tenantId: string;
|
|
5532
|
+
revisionId: string;
|
|
5533
|
+
feedbackContent: string;
|
|
5534
|
+
buId: string;
|
|
5535
|
+
static names(): {
|
|
5536
|
+
[key: string]: string;
|
|
5537
|
+
};
|
|
5538
|
+
static types(): {
|
|
5539
|
+
[key: string]: any;
|
|
5540
|
+
};
|
|
5541
|
+
constructor(map?: {
|
|
5542
|
+
[key: string]: any;
|
|
5543
|
+
});
|
|
5544
|
+
}
|
|
5545
|
+
export declare class FeedbackInnerMermngcontractauditResponse extends $tea.Model {
|
|
5546
|
+
reqMsgId?: string;
|
|
5547
|
+
resultCode?: string;
|
|
5548
|
+
resultMsg?: string;
|
|
5549
|
+
feedbackId?: string;
|
|
5550
|
+
static names(): {
|
|
5551
|
+
[key: string]: string;
|
|
5552
|
+
};
|
|
5553
|
+
static types(): {
|
|
5554
|
+
[key: string]: any;
|
|
5555
|
+
};
|
|
5556
|
+
constructor(map?: {
|
|
5557
|
+
[key: string]: any;
|
|
5558
|
+
});
|
|
5559
|
+
}
|
|
5560
|
+
export declare class QueryInnerMermngcontractfeedbackRequest extends $tea.Model {
|
|
5561
|
+
authToken?: string;
|
|
5562
|
+
productInstanceId?: string;
|
|
5563
|
+
traceId: string;
|
|
5564
|
+
tenantId: string;
|
|
5565
|
+
auditId: string;
|
|
5566
|
+
type?: string;
|
|
5567
|
+
static names(): {
|
|
5568
|
+
[key: string]: string;
|
|
5569
|
+
};
|
|
5570
|
+
static types(): {
|
|
5571
|
+
[key: string]: any;
|
|
5572
|
+
};
|
|
5573
|
+
constructor(map?: {
|
|
5574
|
+
[key: string]: any;
|
|
5575
|
+
});
|
|
5576
|
+
}
|
|
5577
|
+
export declare class QueryInnerMermngcontractfeedbackResponse extends $tea.Model {
|
|
5578
|
+
reqMsgId?: string;
|
|
5579
|
+
resultCode?: string;
|
|
5580
|
+
resultMsg?: string;
|
|
5581
|
+
result?: string;
|
|
5582
|
+
static names(): {
|
|
5583
|
+
[key: string]: string;
|
|
5584
|
+
};
|
|
5585
|
+
static types(): {
|
|
5586
|
+
[key: string]: any;
|
|
5587
|
+
};
|
|
5588
|
+
constructor(map?: {
|
|
5589
|
+
[key: string]: any;
|
|
5590
|
+
});
|
|
5591
|
+
}
|
|
5592
|
+
export declare class FeedbackInnerMermngcontractauditincompleteRequest extends $tea.Model {
|
|
5593
|
+
authToken?: string;
|
|
5594
|
+
productInstanceId?: string;
|
|
5166
5595
|
traceId: string;
|
|
5596
|
+
tenantId: string;
|
|
5597
|
+
auditId: string;
|
|
5598
|
+
feedbacks: string;
|
|
5599
|
+
buId: string;
|
|
5167
5600
|
static names(): {
|
|
5168
5601
|
[key: string]: string;
|
|
5169
5602
|
};
|
|
@@ -5174,12 +5607,11 @@ export declare class QueryInnerFundassetpackagerepaymentRequest extends $tea.Mod
|
|
|
5174
5607
|
[key: string]: any;
|
|
5175
5608
|
});
|
|
5176
5609
|
}
|
|
5177
|
-
export declare class
|
|
5610
|
+
export declare class FeedbackInnerMermngcontractauditincompleteResponse extends $tea.Model {
|
|
5178
5611
|
reqMsgId?: string;
|
|
5179
5612
|
resultCode?: string;
|
|
5180
5613
|
resultMsg?: string;
|
|
5181
|
-
|
|
5182
|
-
total?: number;
|
|
5614
|
+
count?: number;
|
|
5183
5615
|
static names(): {
|
|
5184
5616
|
[key: string]: string;
|
|
5185
5617
|
};
|
|
@@ -5190,11 +5622,11 @@ export declare class QueryInnerFundassetpackagerepaymentResponse extends $tea.Mo
|
|
|
5190
5622
|
[key: string]: any;
|
|
5191
5623
|
});
|
|
5192
5624
|
}
|
|
5193
|
-
export declare class
|
|
5625
|
+
export declare class QueryInnerMermngcontractwebofficetokenRequest extends $tea.Model {
|
|
5194
5626
|
authToken?: string;
|
|
5195
5627
|
productInstanceId?: string;
|
|
5196
|
-
|
|
5197
|
-
|
|
5628
|
+
contractFile: FileInfo;
|
|
5629
|
+
tenantId: string;
|
|
5198
5630
|
traceId: string;
|
|
5199
5631
|
static names(): {
|
|
5200
5632
|
[key: string]: string;
|
|
@@ -5206,11 +5638,15 @@ export declare class QueryInnerAprepaymentdetailRequest extends $tea.Model {
|
|
|
5206
5638
|
[key: string]: any;
|
|
5207
5639
|
});
|
|
5208
5640
|
}
|
|
5209
|
-
export declare class
|
|
5641
|
+
export declare class QueryInnerMermngcontractwebofficetokenResponse extends $tea.Model {
|
|
5210
5642
|
reqMsgId?: string;
|
|
5211
5643
|
resultCode?: string;
|
|
5212
5644
|
resultMsg?: string;
|
|
5213
|
-
|
|
5645
|
+
accessToken?: string;
|
|
5646
|
+
accessTokenExpiredTime?: string;
|
|
5647
|
+
refreshToken?: string;
|
|
5648
|
+
refreshTokenExpiredTime?: string;
|
|
5649
|
+
webofficeUrl?: string;
|
|
5214
5650
|
static names(): {
|
|
5215
5651
|
[key: string]: string;
|
|
5216
5652
|
};
|
|
@@ -5221,16 +5657,13 @@ export declare class QueryInnerAprepaymentdetailResponse extends $tea.Model {
|
|
|
5221
5657
|
[key: string]: any;
|
|
5222
5658
|
});
|
|
5223
5659
|
}
|
|
5224
|
-
export declare class
|
|
5660
|
+
export declare class ResetInnerMermngcontractwebofficetokenRequest extends $tea.Model {
|
|
5225
5661
|
authToken?: string;
|
|
5226
5662
|
productInstanceId?: string;
|
|
5227
|
-
fundTenantId: string;
|
|
5228
|
-
assetPackageId: string;
|
|
5229
|
-
fundId: string;
|
|
5230
5663
|
tenantId: string;
|
|
5231
|
-
merchantId: string;
|
|
5232
|
-
periodNum: number;
|
|
5233
5664
|
traceId: string;
|
|
5665
|
+
accessToken: string;
|
|
5666
|
+
refreshToken: string;
|
|
5234
5667
|
static names(): {
|
|
5235
5668
|
[key: string]: string;
|
|
5236
5669
|
};
|
|
@@ -5241,11 +5674,14 @@ export declare class QueryInnerAprepaymentallocatedetailRequest extends $tea.Mod
|
|
|
5241
5674
|
[key: string]: any;
|
|
5242
5675
|
});
|
|
5243
5676
|
}
|
|
5244
|
-
export declare class
|
|
5677
|
+
export declare class ResetInnerMermngcontractwebofficetokenResponse extends $tea.Model {
|
|
5245
5678
|
reqMsgId?: string;
|
|
5246
5679
|
resultCode?: string;
|
|
5247
5680
|
resultMsg?: string;
|
|
5248
|
-
|
|
5681
|
+
accessToken?: string;
|
|
5682
|
+
accessTokenExpiredTime?: string;
|
|
5683
|
+
refreshToken?: string;
|
|
5684
|
+
refreshTokenExpiredTime?: string;
|
|
5249
5685
|
static names(): {
|
|
5250
5686
|
[key: string]: string;
|
|
5251
5687
|
};
|
|
@@ -5256,10 +5692,18 @@ export declare class QueryInnerAprepaymentallocatedetailResponse extends $tea.Mo
|
|
|
5256
5692
|
[key: string]: any;
|
|
5257
5693
|
});
|
|
5258
5694
|
}
|
|
5259
|
-
export declare class
|
|
5695
|
+
export declare class OpenInnerEnterpriseproductRequest extends $tea.Model {
|
|
5260
5696
|
authToken?: string;
|
|
5261
5697
|
productInstanceId?: string;
|
|
5698
|
+
enterpriseId: string;
|
|
5262
5699
|
tenantId: string;
|
|
5700
|
+
orderId: string;
|
|
5701
|
+
commodityCode: string;
|
|
5702
|
+
durationType: string;
|
|
5703
|
+
durationValue: string;
|
|
5704
|
+
payAmount: string;
|
|
5705
|
+
payerAlipayUid: string;
|
|
5706
|
+
callbackUrl: string;
|
|
5263
5707
|
static names(): {
|
|
5264
5708
|
[key: string]: string;
|
|
5265
5709
|
};
|
|
@@ -5270,11 +5714,12 @@ export declare class QueryInnerMermngdemoRequest extends $tea.Model {
|
|
|
5270
5714
|
[key: string]: any;
|
|
5271
5715
|
});
|
|
5272
5716
|
}
|
|
5273
|
-
export declare class
|
|
5717
|
+
export declare class OpenInnerEnterpriseproductResponse extends $tea.Model {
|
|
5274
5718
|
reqMsgId?: string;
|
|
5275
5719
|
resultCode?: string;
|
|
5276
5720
|
resultMsg?: string;
|
|
5277
|
-
|
|
5721
|
+
orderId?: string;
|
|
5722
|
+
tradeNo?: string;
|
|
5278
5723
|
static names(): {
|
|
5279
5724
|
[key: string]: string;
|
|
5280
5725
|
};
|
|
@@ -5285,12 +5730,44 @@ export declare class QueryInnerMermngdemoResponse extends $tea.Model {
|
|
|
5285
5730
|
[key: string]: any;
|
|
5286
5731
|
});
|
|
5287
5732
|
}
|
|
5288
|
-
export declare class
|
|
5733
|
+
export declare class CreateInnerEnterprisetenantRequest extends $tea.Model {
|
|
5289
5734
|
authToken?: string;
|
|
5290
5735
|
productInstanceId?: string;
|
|
5291
|
-
|
|
5736
|
+
enterpriseId: string;
|
|
5737
|
+
companyName: string;
|
|
5738
|
+
taxRegistrationNo: string;
|
|
5739
|
+
static names(): {
|
|
5740
|
+
[key: string]: string;
|
|
5741
|
+
};
|
|
5742
|
+
static types(): {
|
|
5743
|
+
[key: string]: any;
|
|
5744
|
+
};
|
|
5745
|
+
constructor(map?: {
|
|
5746
|
+
[key: string]: any;
|
|
5747
|
+
});
|
|
5748
|
+
}
|
|
5749
|
+
export declare class CreateInnerEnterprisetenantResponse extends $tea.Model {
|
|
5750
|
+
reqMsgId?: string;
|
|
5751
|
+
resultCode?: string;
|
|
5752
|
+
resultMsg?: string;
|
|
5753
|
+
enterpriseId?: string;
|
|
5754
|
+
tenantId?: string;
|
|
5755
|
+
static names(): {
|
|
5756
|
+
[key: string]: string;
|
|
5757
|
+
};
|
|
5758
|
+
static types(): {
|
|
5759
|
+
[key: string]: any;
|
|
5760
|
+
};
|
|
5761
|
+
constructor(map?: {
|
|
5762
|
+
[key: string]: any;
|
|
5763
|
+
});
|
|
5764
|
+
}
|
|
5765
|
+
export declare class QueryInnerEnterpriseeventRequest extends $tea.Model {
|
|
5766
|
+
authToken?: string;
|
|
5767
|
+
productInstanceId?: string;
|
|
5768
|
+
enterpriseId: string;
|
|
5292
5769
|
tenantId: string;
|
|
5293
|
-
|
|
5770
|
+
orderId: string;
|
|
5294
5771
|
static names(): {
|
|
5295
5772
|
[key: string]: string;
|
|
5296
5773
|
};
|
|
@@ -5301,15 +5778,12 @@ export declare class QueryInnerMermngcontractextractRequest extends $tea.Model {
|
|
|
5301
5778
|
[key: string]: any;
|
|
5302
5779
|
});
|
|
5303
5780
|
}
|
|
5304
|
-
export declare class
|
|
5781
|
+
export declare class QueryInnerEnterpriseeventResponse extends $tea.Model {
|
|
5305
5782
|
reqMsgId?: string;
|
|
5306
5783
|
resultCode?: string;
|
|
5307
5784
|
resultMsg?: string;
|
|
5308
|
-
|
|
5309
|
-
|
|
5310
|
-
bizId?: string;
|
|
5311
|
-
status?: string;
|
|
5312
|
-
extractResult?: string;
|
|
5785
|
+
orderId?: string;
|
|
5786
|
+
event?: string;
|
|
5313
5787
|
static names(): {
|
|
5314
5788
|
[key: string]: string;
|
|
5315
5789
|
};
|
|
@@ -5320,15 +5794,18 @@ export declare class QueryInnerMermngcontractextractResponse extends $tea.Model
|
|
|
5320
5794
|
[key: string]: any;
|
|
5321
5795
|
});
|
|
5322
5796
|
}
|
|
5323
|
-
export declare class
|
|
5797
|
+
export declare class OpenEnterpriseProductRequest extends $tea.Model {
|
|
5324
5798
|
authToken?: string;
|
|
5325
5799
|
productInstanceId?: string;
|
|
5326
|
-
|
|
5800
|
+
enterpriseId: string;
|
|
5327
5801
|
tenantId: string;
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5802
|
+
orderId: string;
|
|
5803
|
+
commodityCode: string;
|
|
5804
|
+
durationType: string;
|
|
5805
|
+
durationValue: string;
|
|
5806
|
+
payAmount: string;
|
|
5807
|
+
payerAlipayUid: string;
|
|
5808
|
+
callbackUrl: string;
|
|
5332
5809
|
static names(): {
|
|
5333
5810
|
[key: string]: string;
|
|
5334
5811
|
};
|
|
@@ -5339,11 +5816,81 @@ export declare class SumbitInnerMermngcontractextractRequest extends $tea.Model
|
|
|
5339
5816
|
[key: string]: any;
|
|
5340
5817
|
});
|
|
5341
5818
|
}
|
|
5342
|
-
export declare class
|
|
5819
|
+
export declare class OpenEnterpriseProductResponse extends $tea.Model {
|
|
5343
5820
|
reqMsgId?: string;
|
|
5344
5821
|
resultCode?: string;
|
|
5345
5822
|
resultMsg?: string;
|
|
5346
|
-
|
|
5823
|
+
orderId?: string;
|
|
5824
|
+
tradeNo?: string;
|
|
5825
|
+
static names(): {
|
|
5826
|
+
[key: string]: string;
|
|
5827
|
+
};
|
|
5828
|
+
static types(): {
|
|
5829
|
+
[key: string]: any;
|
|
5830
|
+
};
|
|
5831
|
+
constructor(map?: {
|
|
5832
|
+
[key: string]: any;
|
|
5833
|
+
});
|
|
5834
|
+
}
|
|
5835
|
+
export declare class CreateEnterpriseTenantRequest extends $tea.Model {
|
|
5836
|
+
authToken?: string;
|
|
5837
|
+
productInstanceId?: string;
|
|
5838
|
+
enterpriseId: string;
|
|
5839
|
+
companyName: string;
|
|
5840
|
+
taxRegistrationNo: string;
|
|
5841
|
+
static names(): {
|
|
5842
|
+
[key: string]: string;
|
|
5843
|
+
};
|
|
5844
|
+
static types(): {
|
|
5845
|
+
[key: string]: any;
|
|
5846
|
+
};
|
|
5847
|
+
constructor(map?: {
|
|
5848
|
+
[key: string]: any;
|
|
5849
|
+
});
|
|
5850
|
+
}
|
|
5851
|
+
export declare class CreateEnterpriseTenantResponse extends $tea.Model {
|
|
5852
|
+
reqMsgId?: string;
|
|
5853
|
+
resultCode?: string;
|
|
5854
|
+
resultMsg?: string;
|
|
5855
|
+
enterpriseId?: string;
|
|
5856
|
+
tenantId?: string;
|
|
5857
|
+
static names(): {
|
|
5858
|
+
[key: string]: string;
|
|
5859
|
+
};
|
|
5860
|
+
static types(): {
|
|
5861
|
+
[key: string]: any;
|
|
5862
|
+
};
|
|
5863
|
+
constructor(map?: {
|
|
5864
|
+
[key: string]: any;
|
|
5865
|
+
});
|
|
5866
|
+
}
|
|
5867
|
+
export declare class QueryEnterpriseProductRequest extends $tea.Model {
|
|
5868
|
+
authToken?: string;
|
|
5869
|
+
productInstanceId?: string;
|
|
5870
|
+
enterpriseId: string;
|
|
5871
|
+
tenantId: string;
|
|
5872
|
+
orderId: string;
|
|
5873
|
+
static names(): {
|
|
5874
|
+
[key: string]: string;
|
|
5875
|
+
};
|
|
5876
|
+
static types(): {
|
|
5877
|
+
[key: string]: any;
|
|
5878
|
+
};
|
|
5879
|
+
constructor(map?: {
|
|
5880
|
+
[key: string]: any;
|
|
5881
|
+
});
|
|
5882
|
+
}
|
|
5883
|
+
export declare class QueryEnterpriseProductResponse extends $tea.Model {
|
|
5884
|
+
reqMsgId?: string;
|
|
5885
|
+
resultCode?: string;
|
|
5886
|
+
resultMsg?: string;
|
|
5887
|
+
orderId?: string;
|
|
5888
|
+
event?: string;
|
|
5889
|
+
tradeNo?: string;
|
|
5890
|
+
orderType?: string;
|
|
5891
|
+
commodityCode?: string;
|
|
5892
|
+
durationType?: string;
|
|
5893
|
+
durationValue?: string;
|
|
5347
5894
|
static names(): {
|
|
5348
5895
|
[key: string]: string;
|
|
5349
5896
|
};
|
|
@@ -13331,6 +13878,7 @@ export declare class RegisterMerchantexpandMerchantRequest extends $tea.Model {
|
|
|
13331
13878
|
merchantSettleInfo?: MerchantSettleInfo;
|
|
13332
13879
|
payChannel?: string;
|
|
13333
13880
|
role?: string;
|
|
13881
|
+
needWithholding?: boolean;
|
|
13334
13882
|
static names(): {
|
|
13335
13883
|
[key: string]: string;
|
|
13336
13884
|
};
|
|
@@ -15930,6 +16478,20 @@ export default class Client {
|
|
|
15930
16478
|
createOnetimeRefundEx(request: CreateOnetimeRefundRequest, headers: {
|
|
15931
16479
|
[key: string]: string;
|
|
15932
16480
|
}, runtime: $Util.RuntimeOptions): Promise<CreateOnetimeRefundResponse>;
|
|
16481
|
+
/**
|
|
16482
|
+
* @remarks
|
|
16483
|
+
* Description: 新融资状态机资方主动重试接口
|
|
16484
|
+
* Summary: 新融资状态机资方主动重试接口
|
|
16485
|
+
*/
|
|
16486
|
+
execFundPlan(request: ExecFundPlanRequest): Promise<ExecFundPlanResponse>;
|
|
16487
|
+
/**
|
|
16488
|
+
* @remarks
|
|
16489
|
+
* Description: 新融资状态机资方主动重试接口
|
|
16490
|
+
* Summary: 新融资状态机资方主动重试接口
|
|
16491
|
+
*/
|
|
16492
|
+
execFundPlanEx(request: ExecFundPlanRequest, headers: {
|
|
16493
|
+
[key: string]: string;
|
|
16494
|
+
}, runtime: $Util.RuntimeOptions): Promise<ExecFundPlanResponse>;
|
|
15933
16495
|
/**
|
|
15934
16496
|
* @remarks
|
|
15935
16497
|
* Description: 资产包还款列表查询
|
|
@@ -16014,6 +16576,216 @@ export default class Client {
|
|
|
16014
16576
|
sumbitInnerMermngcontractextractEx(request: SumbitInnerMermngcontractextractRequest, headers: {
|
|
16015
16577
|
[key: string]: string;
|
|
16016
16578
|
}, runtime: $Util.RuntimeOptions): Promise<SumbitInnerMermngcontractextractResponse>;
|
|
16579
|
+
/**
|
|
16580
|
+
* @remarks
|
|
16581
|
+
* Description: 提交合同审核
|
|
16582
|
+
* Summary: 提交合同审核
|
|
16583
|
+
*/
|
|
16584
|
+
sumbitInnerMermngcontractaudit(request: SumbitInnerMermngcontractauditRequest): Promise<SumbitInnerMermngcontractauditResponse>;
|
|
16585
|
+
/**
|
|
16586
|
+
* @remarks
|
|
16587
|
+
* Description: 提交合同审核
|
|
16588
|
+
* Summary: 提交合同审核
|
|
16589
|
+
*/
|
|
16590
|
+
sumbitInnerMermngcontractauditEx(request: SumbitInnerMermngcontractauditRequest, headers: {
|
|
16591
|
+
[key: string]: string;
|
|
16592
|
+
}, runtime: $Util.RuntimeOptions): Promise<SumbitInnerMermngcontractauditResponse>;
|
|
16593
|
+
/**
|
|
16594
|
+
* @remarks
|
|
16595
|
+
* Description: 合同审核查询
|
|
16596
|
+
* Summary: 合同审核查询
|
|
16597
|
+
*/
|
|
16598
|
+
queryInnerMermngcontractaudit(request: QueryInnerMermngcontractauditRequest): Promise<QueryInnerMermngcontractauditResponse>;
|
|
16599
|
+
/**
|
|
16600
|
+
* @remarks
|
|
16601
|
+
* Description: 合同审核查询
|
|
16602
|
+
* Summary: 合同审核查询
|
|
16603
|
+
*/
|
|
16604
|
+
queryInnerMermngcontractauditEx(request: QueryInnerMermngcontractauditRequest, headers: {
|
|
16605
|
+
[key: string]: string;
|
|
16606
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerMermngcontractauditResponse>;
|
|
16607
|
+
/**
|
|
16608
|
+
* @remarks
|
|
16609
|
+
* Description: 审核完结
|
|
16610
|
+
* Summary: 审核完结
|
|
16611
|
+
*/
|
|
16612
|
+
finishInnerMermngcontractaudit(request: FinishInnerMermngcontractauditRequest): Promise<FinishInnerMermngcontractauditResponse>;
|
|
16613
|
+
/**
|
|
16614
|
+
* @remarks
|
|
16615
|
+
* Description: 审核完结
|
|
16616
|
+
* Summary: 审核完结
|
|
16617
|
+
*/
|
|
16618
|
+
finishInnerMermngcontractauditEx(request: FinishInnerMermngcontractauditRequest, headers: {
|
|
16619
|
+
[key: string]: string;
|
|
16620
|
+
}, runtime: $Util.RuntimeOptions): Promise<FinishInnerMermngcontractauditResponse>;
|
|
16621
|
+
/**
|
|
16622
|
+
* @remarks
|
|
16623
|
+
* Description: 审核详情编辑
|
|
16624
|
+
* Summary: 审核详情编辑
|
|
16625
|
+
*/
|
|
16626
|
+
editInnerMermngcontractauditdetail(request: EditInnerMermngcontractauditdetailRequest): Promise<EditInnerMermngcontractauditdetailResponse>;
|
|
16627
|
+
/**
|
|
16628
|
+
* @remarks
|
|
16629
|
+
* Description: 审核详情编辑
|
|
16630
|
+
* Summary: 审核详情编辑
|
|
16631
|
+
*/
|
|
16632
|
+
editInnerMermngcontractauditdetailEx(request: EditInnerMermngcontractauditdetailRequest, headers: {
|
|
16633
|
+
[key: string]: string;
|
|
16634
|
+
}, runtime: $Util.RuntimeOptions): Promise<EditInnerMermngcontractauditdetailResponse>;
|
|
16635
|
+
/**
|
|
16636
|
+
* @remarks
|
|
16637
|
+
* Description: 审核反馈
|
|
16638
|
+
* Summary: 审核反馈
|
|
16639
|
+
*/
|
|
16640
|
+
feedbackInnerMermngcontractaudit(request: FeedbackInnerMermngcontractauditRequest): Promise<FeedbackInnerMermngcontractauditResponse>;
|
|
16641
|
+
/**
|
|
16642
|
+
* @remarks
|
|
16643
|
+
* Description: 审核反馈
|
|
16644
|
+
* Summary: 审核反馈
|
|
16645
|
+
*/
|
|
16646
|
+
feedbackInnerMermngcontractauditEx(request: FeedbackInnerMermngcontractauditRequest, headers: {
|
|
16647
|
+
[key: string]: string;
|
|
16648
|
+
}, runtime: $Util.RuntimeOptions): Promise<FeedbackInnerMermngcontractauditResponse>;
|
|
16649
|
+
/**
|
|
16650
|
+
* @remarks
|
|
16651
|
+
* Description: 审核反馈查询
|
|
16652
|
+
* Summary: 审核反馈查询
|
|
16653
|
+
*/
|
|
16654
|
+
queryInnerMermngcontractfeedback(request: QueryInnerMermngcontractfeedbackRequest): Promise<QueryInnerMermngcontractfeedbackResponse>;
|
|
16655
|
+
/**
|
|
16656
|
+
* @remarks
|
|
16657
|
+
* Description: 审核反馈查询
|
|
16658
|
+
* Summary: 审核反馈查询
|
|
16659
|
+
*/
|
|
16660
|
+
queryInnerMermngcontractfeedbackEx(request: QueryInnerMermngcontractfeedbackRequest, headers: {
|
|
16661
|
+
[key: string]: string;
|
|
16662
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerMermngcontractfeedbackResponse>;
|
|
16663
|
+
/**
|
|
16664
|
+
* @remarks
|
|
16665
|
+
* Description: 提交漏审信息
|
|
16666
|
+
* Summary: 提交漏审信息
|
|
16667
|
+
*/
|
|
16668
|
+
feedbackInnerMermngcontractauditincomplete(request: FeedbackInnerMermngcontractauditincompleteRequest): Promise<FeedbackInnerMermngcontractauditincompleteResponse>;
|
|
16669
|
+
/**
|
|
16670
|
+
* @remarks
|
|
16671
|
+
* Description: 提交漏审信息
|
|
16672
|
+
* Summary: 提交漏审信息
|
|
16673
|
+
*/
|
|
16674
|
+
feedbackInnerMermngcontractauditincompleteEx(request: FeedbackInnerMermngcontractauditincompleteRequest, headers: {
|
|
16675
|
+
[key: string]: string;
|
|
16676
|
+
}, runtime: $Util.RuntimeOptions): Promise<FeedbackInnerMermngcontractauditincompleteResponse>;
|
|
16677
|
+
/**
|
|
16678
|
+
* @remarks
|
|
16679
|
+
* Description: 生成weboffice编辑token
|
|
16680
|
+
* Summary: 生成weboffice编辑token
|
|
16681
|
+
*/
|
|
16682
|
+
queryInnerMermngcontractwebofficetoken(request: QueryInnerMermngcontractwebofficetokenRequest): Promise<QueryInnerMermngcontractwebofficetokenResponse>;
|
|
16683
|
+
/**
|
|
16684
|
+
* @remarks
|
|
16685
|
+
* Description: 生成weboffice编辑token
|
|
16686
|
+
* Summary: 生成weboffice编辑token
|
|
16687
|
+
*/
|
|
16688
|
+
queryInnerMermngcontractwebofficetokenEx(request: QueryInnerMermngcontractwebofficetokenRequest, headers: {
|
|
16689
|
+
[key: string]: string;
|
|
16690
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerMermngcontractwebofficetokenResponse>;
|
|
16691
|
+
/**
|
|
16692
|
+
* @remarks
|
|
16693
|
+
* Description: 刷新编辑token
|
|
16694
|
+
* Summary: 刷新编辑token
|
|
16695
|
+
*/
|
|
16696
|
+
resetInnerMermngcontractwebofficetoken(request: ResetInnerMermngcontractwebofficetokenRequest): Promise<ResetInnerMermngcontractwebofficetokenResponse>;
|
|
16697
|
+
/**
|
|
16698
|
+
* @remarks
|
|
16699
|
+
* Description: 刷新编辑token
|
|
16700
|
+
* Summary: 刷新编辑token
|
|
16701
|
+
*/
|
|
16702
|
+
resetInnerMermngcontractwebofficetokenEx(request: ResetInnerMermngcontractwebofficetokenRequest, headers: {
|
|
16703
|
+
[key: string]: string;
|
|
16704
|
+
}, runtime: $Util.RuntimeOptions): Promise<ResetInnerMermngcontractwebofficetokenResponse>;
|
|
16705
|
+
/**
|
|
16706
|
+
* @remarks
|
|
16707
|
+
* Description: 企业码数科计收产品开通接口
|
|
16708
|
+
* Summary: 企业码数科计收产品开通接口
|
|
16709
|
+
*/
|
|
16710
|
+
openInnerEnterpriseproduct(request: OpenInnerEnterpriseproductRequest): Promise<OpenInnerEnterpriseproductResponse>;
|
|
16711
|
+
/**
|
|
16712
|
+
* @remarks
|
|
16713
|
+
* Description: 企业码数科计收产品开通接口
|
|
16714
|
+
* Summary: 企业码数科计收产品开通接口
|
|
16715
|
+
*/
|
|
16716
|
+
openInnerEnterpriseproductEx(request: OpenInnerEnterpriseproductRequest, headers: {
|
|
16717
|
+
[key: string]: string;
|
|
16718
|
+
}, runtime: $Util.RuntimeOptions): Promise<OpenInnerEnterpriseproductResponse>;
|
|
16719
|
+
/**
|
|
16720
|
+
* @remarks
|
|
16721
|
+
* Description: 企业码数科计收企业账户开通接口
|
|
16722
|
+
* Summary: 企业码数科计收企业账户开通接口
|
|
16723
|
+
*/
|
|
16724
|
+
createInnerEnterprisetenant(request: CreateInnerEnterprisetenantRequest): Promise<CreateInnerEnterprisetenantResponse>;
|
|
16725
|
+
/**
|
|
16726
|
+
* @remarks
|
|
16727
|
+
* Description: 企业码数科计收企业账户开通接口
|
|
16728
|
+
* Summary: 企业码数科计收企业账户开通接口
|
|
16729
|
+
*/
|
|
16730
|
+
createInnerEnterprisetenantEx(request: CreateInnerEnterprisetenantRequest, headers: {
|
|
16731
|
+
[key: string]: string;
|
|
16732
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateInnerEnterprisetenantResponse>;
|
|
16733
|
+
/**
|
|
16734
|
+
* @remarks
|
|
16735
|
+
* Description: 企业码数科计收支付结果&开通结果查询接口
|
|
16736
|
+
* Summary: 企业码数科计收支付结果&开通结果查询接口
|
|
16737
|
+
*/
|
|
16738
|
+
queryInnerEnterpriseevent(request: QueryInnerEnterpriseeventRequest): Promise<QueryInnerEnterpriseeventResponse>;
|
|
16739
|
+
/**
|
|
16740
|
+
* @remarks
|
|
16741
|
+
* Description: 企业码数科计收支付结果&开通结果查询接口
|
|
16742
|
+
* Summary: 企业码数科计收支付结果&开通结果查询接口
|
|
16743
|
+
*/
|
|
16744
|
+
queryInnerEnterpriseeventEx(request: QueryInnerEnterpriseeventRequest, headers: {
|
|
16745
|
+
[key: string]: string;
|
|
16746
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryInnerEnterpriseeventResponse>;
|
|
16747
|
+
/**
|
|
16748
|
+
* @remarks
|
|
16749
|
+
* Description: 企业码数科计收产品开通接口
|
|
16750
|
+
* Summary: 企业码数科计收产品开通接口
|
|
16751
|
+
*/
|
|
16752
|
+
openEnterpriseProduct(request: OpenEnterpriseProductRequest): Promise<OpenEnterpriseProductResponse>;
|
|
16753
|
+
/**
|
|
16754
|
+
* @remarks
|
|
16755
|
+
* Description: 企业码数科计收产品开通接口
|
|
16756
|
+
* Summary: 企业码数科计收产品开通接口
|
|
16757
|
+
*/
|
|
16758
|
+
openEnterpriseProductEx(request: OpenEnterpriseProductRequest, headers: {
|
|
16759
|
+
[key: string]: string;
|
|
16760
|
+
}, runtime: $Util.RuntimeOptions): Promise<OpenEnterpriseProductResponse>;
|
|
16761
|
+
/**
|
|
16762
|
+
* @remarks
|
|
16763
|
+
* Description: 企业码数科计收企业账户开通接口
|
|
16764
|
+
* Summary: 企业码数科计收企业账户开通接口
|
|
16765
|
+
*/
|
|
16766
|
+
createEnterpriseTenant(request: CreateEnterpriseTenantRequest): Promise<CreateEnterpriseTenantResponse>;
|
|
16767
|
+
/**
|
|
16768
|
+
* @remarks
|
|
16769
|
+
* Description: 企业码数科计收企业账户开通接口
|
|
16770
|
+
* Summary: 企业码数科计收企业账户开通接口
|
|
16771
|
+
*/
|
|
16772
|
+
createEnterpriseTenantEx(request: CreateEnterpriseTenantRequest, headers: {
|
|
16773
|
+
[key: string]: string;
|
|
16774
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateEnterpriseTenantResponse>;
|
|
16775
|
+
/**
|
|
16776
|
+
* @remarks
|
|
16777
|
+
* Description: 企业码数科计收支付结果&开通结果查询接口
|
|
16778
|
+
* Summary: 企业码数科计收支付结果&开通结果查询接口
|
|
16779
|
+
*/
|
|
16780
|
+
queryEnterpriseProduct(request: QueryEnterpriseProductRequest): Promise<QueryEnterpriseProductResponse>;
|
|
16781
|
+
/**
|
|
16782
|
+
* @remarks
|
|
16783
|
+
* Description: 企业码数科计收支付结果&开通结果查询接口
|
|
16784
|
+
* Summary: 企业码数科计收支付结果&开通结果查询接口
|
|
16785
|
+
*/
|
|
16786
|
+
queryEnterpriseProductEx(request: QueryEnterpriseProductRequest, headers: {
|
|
16787
|
+
[key: string]: string;
|
|
16788
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryEnterpriseProductResponse>;
|
|
16017
16789
|
/**
|
|
16018
16790
|
* @remarks
|
|
16019
16791
|
* Description: 数据提供方可以通过此接口传输数据,触达给消费方
|