@antchain/riskplus 1.26.5 → 1.26.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 +214 -0
- package/dist/client.js +331 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +530 -2
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -1574,6 +1574,122 @@ export class RiskLabelInfo extends $tea.Model {
|
|
|
1574
1574
|
}
|
|
1575
1575
|
}
|
|
1576
1576
|
|
|
1577
|
+
// 二级商户入驻结果
|
|
1578
|
+
export class SubMerchantOrder extends $tea.Model {
|
|
1579
|
+
// 是否开通线上预授权,
|
|
1580
|
+
// TRUE/FALSE
|
|
1581
|
+
appPreAuth?: string;
|
|
1582
|
+
// 申请单创建时间
|
|
1583
|
+
applyTime: string;
|
|
1584
|
+
// 本申请单的请求类型,
|
|
1585
|
+
// 商户预校验: ZHIFUTONG_CONSULT
|
|
1586
|
+
// 商户创建: ZHIFUTONG_CREATE
|
|
1587
|
+
// 商户修改: ZHIFUTONG_MODIFY
|
|
1588
|
+
//
|
|
1589
|
+
applyType: string;
|
|
1590
|
+
// 进件生成的卡编号,在发起结算时可以作为结算账号
|
|
1591
|
+
cardAliasNo?: string;
|
|
1592
|
+
// 外部商户id
|
|
1593
|
+
externalId: string;
|
|
1594
|
+
// 是否开通线下预授权,
|
|
1595
|
+
// TRUE/FALSE
|
|
1596
|
+
facePreAuth?: string;
|
|
1597
|
+
// 风控审核状态,
|
|
1598
|
+
// CREATE: 已创建待审批
|
|
1599
|
+
// SKIP: 跳过风控审批步骤
|
|
1600
|
+
// PASS: 风控审核通过
|
|
1601
|
+
// REJECT: 风控审批拒绝
|
|
1602
|
+
//
|
|
1603
|
+
fkAudit?: string;
|
|
1604
|
+
// 风控审批备注
|
|
1605
|
+
fkAuditMemo?: string;
|
|
1606
|
+
// 判断个人当面付权限版本,
|
|
1607
|
+
// TRUE: 表示是标准版
|
|
1608
|
+
// FALSE: 表示受限版
|
|
1609
|
+
//
|
|
1610
|
+
isFaceLimit?: string;
|
|
1611
|
+
// 客资审核状态,
|
|
1612
|
+
// CREATE: 已创建待审批
|
|
1613
|
+
// SKIP: 跳过客资审批步骤
|
|
1614
|
+
// PASS: 客资审核通过
|
|
1615
|
+
// REJECT: 客资审批拒绝
|
|
1616
|
+
kzAudit?: string;
|
|
1617
|
+
// 客资审批备注
|
|
1618
|
+
kzAuditMemo?: string;
|
|
1619
|
+
// 进件时填写的商户名称
|
|
1620
|
+
merchantName?: string;
|
|
1621
|
+
// 入驻申请单号
|
|
1622
|
+
orderId: string;
|
|
1623
|
+
// 申请单处理失败时,通过此此段返回具体的失败理由,
|
|
1624
|
+
// 与kf_audit_memo和kz_audit_memo配合使用
|
|
1625
|
+
reason?: string;
|
|
1626
|
+
// 签约支付宝账号(脱敏)
|
|
1627
|
+
safeBindingLogonId?: string;
|
|
1628
|
+
// 二级商户id,当总体申请状态status为99时,smid才算进件完成
|
|
1629
|
+
smid?: string;
|
|
1630
|
+
// 申请总体状态,
|
|
1631
|
+
// 99: 已完结
|
|
1632
|
+
// -1: 失败
|
|
1633
|
+
// 031: 审核中
|
|
1634
|
+
status: string;
|
|
1635
|
+
// 二级商户确认状态,
|
|
1636
|
+
// CREATE: 已发起二级商户确认
|
|
1637
|
+
// SKIP: 无需确认
|
|
1638
|
+
// FAIL: 签约失败
|
|
1639
|
+
// NOT_CONFIRM: 商户未确认
|
|
1640
|
+
// FINISH: 签约完成
|
|
1641
|
+
subConfirm?: string;
|
|
1642
|
+
static names(): { [key: string]: string } {
|
|
1643
|
+
return {
|
|
1644
|
+
appPreAuth: 'app_pre_auth',
|
|
1645
|
+
applyTime: 'apply_time',
|
|
1646
|
+
applyType: 'apply_type',
|
|
1647
|
+
cardAliasNo: 'card_alias_no',
|
|
1648
|
+
externalId: 'external_id',
|
|
1649
|
+
facePreAuth: 'face_pre_auth',
|
|
1650
|
+
fkAudit: 'fk_audit',
|
|
1651
|
+
fkAuditMemo: 'fk_audit_memo',
|
|
1652
|
+
isFaceLimit: 'is_face_limit',
|
|
1653
|
+
kzAudit: 'kz_audit',
|
|
1654
|
+
kzAuditMemo: 'kz_audit_memo',
|
|
1655
|
+
merchantName: 'merchant_name',
|
|
1656
|
+
orderId: 'order_id',
|
|
1657
|
+
reason: 'reason',
|
|
1658
|
+
safeBindingLogonId: 'safe_binding_logon_id',
|
|
1659
|
+
smid: 'smid',
|
|
1660
|
+
status: 'status',
|
|
1661
|
+
subConfirm: 'sub_confirm',
|
|
1662
|
+
};
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
static types(): { [key: string]: any } {
|
|
1666
|
+
return {
|
|
1667
|
+
appPreAuth: 'string',
|
|
1668
|
+
applyTime: 'string',
|
|
1669
|
+
applyType: 'string',
|
|
1670
|
+
cardAliasNo: 'string',
|
|
1671
|
+
externalId: 'string',
|
|
1672
|
+
facePreAuth: 'string',
|
|
1673
|
+
fkAudit: 'string',
|
|
1674
|
+
fkAuditMemo: 'string',
|
|
1675
|
+
isFaceLimit: 'string',
|
|
1676
|
+
kzAudit: 'string',
|
|
1677
|
+
kzAuditMemo: 'string',
|
|
1678
|
+
merchantName: 'string',
|
|
1679
|
+
orderId: 'string',
|
|
1680
|
+
reason: 'string',
|
|
1681
|
+
safeBindingLogonId: 'string',
|
|
1682
|
+
smid: 'string',
|
|
1683
|
+
status: 'string',
|
|
1684
|
+
subConfirm: 'string',
|
|
1685
|
+
};
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
constructor(map?: { [key: string]: any }) {
|
|
1689
|
+
super(map);
|
|
1690
|
+
}
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1577
1693
|
// 企业反馈
|
|
1578
1694
|
export class RtopCompanyFeedback extends $tea.Model {
|
|
1579
1695
|
// 主键
|
|
@@ -4259,6 +4375,14 @@ export class DefinInnerChannelNotifyResult extends $tea.Model {
|
|
|
4259
4375
|
export class StoreInfo extends $tea.Model {
|
|
4260
4376
|
// 品牌
|
|
4261
4377
|
storeBrand: string;
|
|
4378
|
+
// 品牌,商户入驻时需填写,
|
|
4379
|
+
// TBJHF: 赛鸽出行
|
|
4380
|
+
// AIJNBJ: 智迈电动车
|
|
4381
|
+
// KJOKJBO: 金箭出行
|
|
4382
|
+
// IFJRJTIJ: 骑士智行
|
|
4383
|
+
// KVMPOH: 巨龙智行
|
|
4384
|
+
// NPGBRVBO: 摩生态A
|
|
4385
|
+
trafficPlatform?: string;
|
|
4262
4386
|
// 门店ID
|
|
4263
4387
|
storeId: string;
|
|
4264
4388
|
// 门店名称
|
|
@@ -4267,10 +4391,16 @@ export class StoreInfo extends $tea.Model {
|
|
|
4267
4391
|
usci: string;
|
|
4268
4392
|
// 门店-省,浙江省
|
|
4269
4393
|
province: string;
|
|
4394
|
+
// 省编码
|
|
4395
|
+
provinceCode?: string;
|
|
4270
4396
|
// 门店-市,杭州市
|
|
4271
4397
|
city: string;
|
|
4398
|
+
// 市编码
|
|
4399
|
+
cityCode?: string;
|
|
4272
4400
|
// 门店-区,滨江区
|
|
4273
4401
|
district: string;
|
|
4402
|
+
// 区编码
|
|
4403
|
+
districtCode?: string;
|
|
4274
4404
|
// 门店-详细地址,
|
|
4275
4405
|
// 望江路万达广场一层001号
|
|
4276
4406
|
address: string;
|
|
@@ -4279,7 +4409,7 @@ export class StoreInfo extends $tea.Model {
|
|
|
4279
4409
|
// 营业执照-结束时间,yyyy-MM-dd,长期上送:9999-12-31
|
|
4280
4410
|
storeEndDate: string;
|
|
4281
4411
|
// 门店类型,
|
|
4282
|
-
//
|
|
4412
|
+
// 个体: 个体工商户;企业
|
|
4283
4413
|
storeType: string;
|
|
4284
4414
|
// 法人-姓名
|
|
4285
4415
|
legalPersonName: string;
|
|
@@ -4311,15 +4441,25 @@ export class StoreInfo extends $tea.Model {
|
|
|
4311
4441
|
loginTenant?: string;
|
|
4312
4442
|
// 入驻时间
|
|
4313
4443
|
loginDate?: string;
|
|
4444
|
+
// 结算支付宝账户,交易资金结算的具体支付宝账号,商户入驻时需填写
|
|
4445
|
+
alipayLogonId?: string;
|
|
4446
|
+
// 支付宝openId,商户入驻时(非必填)
|
|
4447
|
+
infoSourceOpenId?: string;
|
|
4448
|
+
// 签约支付宝账户,商户入驻时(非必填)
|
|
4449
|
+
bindingAlipayLogonId?: string;
|
|
4314
4450
|
static names(): { [key: string]: string } {
|
|
4315
4451
|
return {
|
|
4316
4452
|
storeBrand: 'store_brand',
|
|
4453
|
+
trafficPlatform: 'traffic_platform',
|
|
4317
4454
|
storeId: 'store_id',
|
|
4318
4455
|
storeName: 'store_name',
|
|
4319
4456
|
usci: 'usci',
|
|
4320
4457
|
province: 'province',
|
|
4458
|
+
provinceCode: 'province_code',
|
|
4321
4459
|
city: 'city',
|
|
4460
|
+
cityCode: 'city_code',
|
|
4322
4461
|
district: 'district',
|
|
4462
|
+
districtCode: 'district_code',
|
|
4323
4463
|
address: 'address',
|
|
4324
4464
|
storeStartDate: 'store_start_date',
|
|
4325
4465
|
storeEndDate: 'store_end_date',
|
|
@@ -4339,18 +4479,25 @@ export class StoreInfo extends $tea.Model {
|
|
|
4339
4479
|
payeeBankName: 'payee_bank_name',
|
|
4340
4480
|
loginTenant: 'login_tenant',
|
|
4341
4481
|
loginDate: 'login_date',
|
|
4482
|
+
alipayLogonId: 'alipay_logon_id',
|
|
4483
|
+
infoSourceOpenId: 'info_source_open_id',
|
|
4484
|
+
bindingAlipayLogonId: 'binding_alipay_logon_id',
|
|
4342
4485
|
};
|
|
4343
4486
|
}
|
|
4344
4487
|
|
|
4345
4488
|
static types(): { [key: string]: any } {
|
|
4346
4489
|
return {
|
|
4347
4490
|
storeBrand: 'string',
|
|
4491
|
+
trafficPlatform: 'string',
|
|
4348
4492
|
storeId: 'string',
|
|
4349
4493
|
storeName: 'string',
|
|
4350
4494
|
usci: 'string',
|
|
4351
4495
|
province: 'string',
|
|
4496
|
+
provinceCode: 'string',
|
|
4352
4497
|
city: 'string',
|
|
4498
|
+
cityCode: 'string',
|
|
4353
4499
|
district: 'string',
|
|
4500
|
+
districtCode: 'string',
|
|
4354
4501
|
address: 'string',
|
|
4355
4502
|
storeStartDate: 'string',
|
|
4356
4503
|
storeEndDate: 'string',
|
|
@@ -4370,6 +4517,9 @@ export class StoreInfo extends $tea.Model {
|
|
|
4370
4517
|
payeeBankName: 'string',
|
|
4371
4518
|
loginTenant: 'string',
|
|
4372
4519
|
loginDate: 'string',
|
|
4520
|
+
alipayLogonId: 'string',
|
|
4521
|
+
infoSourceOpenId: 'string',
|
|
4522
|
+
bindingAlipayLogonId: 'string',
|
|
4373
4523
|
};
|
|
4374
4524
|
}
|
|
4375
4525
|
|
|
@@ -12588,6 +12738,308 @@ export class QueryDubbridgeInstallmentTrialResponse extends $tea.Model {
|
|
|
12588
12738
|
}
|
|
12589
12739
|
}
|
|
12590
12740
|
|
|
12741
|
+
export class UploadDubbridgeAlipayImageRequest extends $tea.Model {
|
|
12742
|
+
// OAuth模式下的授权token
|
|
12743
|
+
authToken?: string;
|
|
12744
|
+
productInstanceId?: string;
|
|
12745
|
+
// request请求单号,每次请求唯一,如uuid
|
|
12746
|
+
orderNo: string;
|
|
12747
|
+
// 门店Id
|
|
12748
|
+
storeId: string;
|
|
12749
|
+
// 门店所属子品牌,
|
|
12750
|
+
// TBJHF: 赛鸽出行-
|
|
12751
|
+
// AIJNBJ: 智迈电动车
|
|
12752
|
+
// KJOKJBO: 金箭出行
|
|
12753
|
+
// IFJRJTIJ: 骑士智行
|
|
12754
|
+
// KVMPOH: 巨龙智行
|
|
12755
|
+
// NPGBRVBO: 摩生态A
|
|
12756
|
+
trafficPlatform: string;
|
|
12757
|
+
// 图片种类,
|
|
12758
|
+
// 10: 营业执照
|
|
12759
|
+
// 20: 门头照
|
|
12760
|
+
// 21: 内景照
|
|
12761
|
+
imageCategory: string;
|
|
12762
|
+
// 文件base64字符串,最大10M;(建议)
|
|
12763
|
+
imageContent?: string;
|
|
12764
|
+
// 图片文件路径
|
|
12765
|
+
imagePath?: string;
|
|
12766
|
+
// 图片格式,
|
|
12767
|
+
// 支持格式:bmp、jpg、jpeg、png、gif
|
|
12768
|
+
imageType: string;
|
|
12769
|
+
static names(): { [key: string]: string } {
|
|
12770
|
+
return {
|
|
12771
|
+
authToken: 'auth_token',
|
|
12772
|
+
productInstanceId: 'product_instance_id',
|
|
12773
|
+
orderNo: 'order_no',
|
|
12774
|
+
storeId: 'store_id',
|
|
12775
|
+
trafficPlatform: 'traffic_platform',
|
|
12776
|
+
imageCategory: 'image_category',
|
|
12777
|
+
imageContent: 'image_content',
|
|
12778
|
+
imagePath: 'image_path',
|
|
12779
|
+
imageType: 'image_type',
|
|
12780
|
+
};
|
|
12781
|
+
}
|
|
12782
|
+
|
|
12783
|
+
static types(): { [key: string]: any } {
|
|
12784
|
+
return {
|
|
12785
|
+
authToken: 'string',
|
|
12786
|
+
productInstanceId: 'string',
|
|
12787
|
+
orderNo: 'string',
|
|
12788
|
+
storeId: 'string',
|
|
12789
|
+
trafficPlatform: 'string',
|
|
12790
|
+
imageCategory: 'string',
|
|
12791
|
+
imageContent: 'string',
|
|
12792
|
+
imagePath: 'string',
|
|
12793
|
+
imageType: 'string',
|
|
12794
|
+
};
|
|
12795
|
+
}
|
|
12796
|
+
|
|
12797
|
+
constructor(map?: { [key: string]: any }) {
|
|
12798
|
+
super(map);
|
|
12799
|
+
}
|
|
12800
|
+
}
|
|
12801
|
+
|
|
12802
|
+
export class UploadDubbridgeAlipayImageResponse extends $tea.Model {
|
|
12803
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
12804
|
+
reqMsgId?: string;
|
|
12805
|
+
// 结果码,一般OK表示调用成功
|
|
12806
|
+
resultCode?: string;
|
|
12807
|
+
// 异常信息的文本描述
|
|
12808
|
+
resultMsg?: string;
|
|
12809
|
+
// 图片上传后的标识
|
|
12810
|
+
imageId?: string;
|
|
12811
|
+
static names(): { [key: string]: string } {
|
|
12812
|
+
return {
|
|
12813
|
+
reqMsgId: 'req_msg_id',
|
|
12814
|
+
resultCode: 'result_code',
|
|
12815
|
+
resultMsg: 'result_msg',
|
|
12816
|
+
imageId: 'image_id',
|
|
12817
|
+
};
|
|
12818
|
+
}
|
|
12819
|
+
|
|
12820
|
+
static types(): { [key: string]: any } {
|
|
12821
|
+
return {
|
|
12822
|
+
reqMsgId: 'string',
|
|
12823
|
+
resultCode: 'string',
|
|
12824
|
+
resultMsg: 'string',
|
|
12825
|
+
imageId: 'string',
|
|
12826
|
+
};
|
|
12827
|
+
}
|
|
12828
|
+
|
|
12829
|
+
constructor(map?: { [key: string]: any }) {
|
|
12830
|
+
super(map);
|
|
12831
|
+
}
|
|
12832
|
+
}
|
|
12833
|
+
|
|
12834
|
+
export class CreateDubbridgeAlipayMerchantRequest extends $tea.Model {
|
|
12835
|
+
// OAuth模式下的授权token
|
|
12836
|
+
authToken?: string;
|
|
12837
|
+
productInstanceId?: string;
|
|
12838
|
+
// request请求单号,每次请求唯一,如uuid
|
|
12839
|
+
orderNo: string;
|
|
12840
|
+
// 门店详情
|
|
12841
|
+
storeInfo: StoreInfo;
|
|
12842
|
+
static names(): { [key: string]: string } {
|
|
12843
|
+
return {
|
|
12844
|
+
authToken: 'auth_token',
|
|
12845
|
+
productInstanceId: 'product_instance_id',
|
|
12846
|
+
orderNo: 'order_no',
|
|
12847
|
+
storeInfo: 'store_info',
|
|
12848
|
+
};
|
|
12849
|
+
}
|
|
12850
|
+
|
|
12851
|
+
static types(): { [key: string]: any } {
|
|
12852
|
+
return {
|
|
12853
|
+
authToken: 'string',
|
|
12854
|
+
productInstanceId: 'string',
|
|
12855
|
+
orderNo: 'string',
|
|
12856
|
+
storeInfo: StoreInfo,
|
|
12857
|
+
};
|
|
12858
|
+
}
|
|
12859
|
+
|
|
12860
|
+
constructor(map?: { [key: string]: any }) {
|
|
12861
|
+
super(map);
|
|
12862
|
+
}
|
|
12863
|
+
}
|
|
12864
|
+
|
|
12865
|
+
export class CreateDubbridgeAlipayMerchantResponse extends $tea.Model {
|
|
12866
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
12867
|
+
reqMsgId?: string;
|
|
12868
|
+
// 结果码,一般OK表示调用成功
|
|
12869
|
+
resultCode?: string;
|
|
12870
|
+
// 异常信息的文本描述
|
|
12871
|
+
resultMsg?: string;
|
|
12872
|
+
// 入驻申请单号
|
|
12873
|
+
orderId?: string;
|
|
12874
|
+
static names(): { [key: string]: string } {
|
|
12875
|
+
return {
|
|
12876
|
+
reqMsgId: 'req_msg_id',
|
|
12877
|
+
resultCode: 'result_code',
|
|
12878
|
+
resultMsg: 'result_msg',
|
|
12879
|
+
orderId: 'order_id',
|
|
12880
|
+
};
|
|
12881
|
+
}
|
|
12882
|
+
|
|
12883
|
+
static types(): { [key: string]: any } {
|
|
12884
|
+
return {
|
|
12885
|
+
reqMsgId: 'string',
|
|
12886
|
+
resultCode: 'string',
|
|
12887
|
+
resultMsg: 'string',
|
|
12888
|
+
orderId: 'string',
|
|
12889
|
+
};
|
|
12890
|
+
}
|
|
12891
|
+
|
|
12892
|
+
constructor(map?: { [key: string]: any }) {
|
|
12893
|
+
super(map);
|
|
12894
|
+
}
|
|
12895
|
+
}
|
|
12896
|
+
|
|
12897
|
+
export class QueryDubbridgeAlipayMerchantRequest extends $tea.Model {
|
|
12898
|
+
// OAuth模式下的授权token
|
|
12899
|
+
authToken?: string;
|
|
12900
|
+
productInstanceId?: string;
|
|
12901
|
+
// request请求单号,每次请求唯一,如uuid
|
|
12902
|
+
orderNo: string;
|
|
12903
|
+
// 门店id
|
|
12904
|
+
storeId: string;
|
|
12905
|
+
// 入驻申请单号
|
|
12906
|
+
orderId: string;
|
|
12907
|
+
static names(): { [key: string]: string } {
|
|
12908
|
+
return {
|
|
12909
|
+
authToken: 'auth_token',
|
|
12910
|
+
productInstanceId: 'product_instance_id',
|
|
12911
|
+
orderNo: 'order_no',
|
|
12912
|
+
storeId: 'store_id',
|
|
12913
|
+
orderId: 'order_id',
|
|
12914
|
+
};
|
|
12915
|
+
}
|
|
12916
|
+
|
|
12917
|
+
static types(): { [key: string]: any } {
|
|
12918
|
+
return {
|
|
12919
|
+
authToken: 'string',
|
|
12920
|
+
productInstanceId: 'string',
|
|
12921
|
+
orderNo: 'string',
|
|
12922
|
+
storeId: 'string',
|
|
12923
|
+
orderId: 'string',
|
|
12924
|
+
};
|
|
12925
|
+
}
|
|
12926
|
+
|
|
12927
|
+
constructor(map?: { [key: string]: any }) {
|
|
12928
|
+
super(map);
|
|
12929
|
+
}
|
|
12930
|
+
}
|
|
12931
|
+
|
|
12932
|
+
export class QueryDubbridgeAlipayMerchantResponse extends $tea.Model {
|
|
12933
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
12934
|
+
reqMsgId?: string;
|
|
12935
|
+
// 结果码,一般OK表示调用成功
|
|
12936
|
+
resultCode?: string;
|
|
12937
|
+
// 异常信息的文本描述
|
|
12938
|
+
resultMsg?: string;
|
|
12939
|
+
// 入驻结果信息
|
|
12940
|
+
subMerchantOrder?: SubMerchantOrder;
|
|
12941
|
+
static names(): { [key: string]: string } {
|
|
12942
|
+
return {
|
|
12943
|
+
reqMsgId: 'req_msg_id',
|
|
12944
|
+
resultCode: 'result_code',
|
|
12945
|
+
resultMsg: 'result_msg',
|
|
12946
|
+
subMerchantOrder: 'sub_merchant_order',
|
|
12947
|
+
};
|
|
12948
|
+
}
|
|
12949
|
+
|
|
12950
|
+
static types(): { [key: string]: any } {
|
|
12951
|
+
return {
|
|
12952
|
+
reqMsgId: 'string',
|
|
12953
|
+
resultCode: 'string',
|
|
12954
|
+
resultMsg: 'string',
|
|
12955
|
+
subMerchantOrder: SubMerchantOrder,
|
|
12956
|
+
};
|
|
12957
|
+
}
|
|
12958
|
+
|
|
12959
|
+
constructor(map?: { [key: string]: any }) {
|
|
12960
|
+
super(map);
|
|
12961
|
+
}
|
|
12962
|
+
}
|
|
12963
|
+
|
|
12964
|
+
export class CreateDubbridgeAlipayTradeRequest extends $tea.Model {
|
|
12965
|
+
// OAuth模式下的授权token
|
|
12966
|
+
authToken?: string;
|
|
12967
|
+
productInstanceId?: string;
|
|
12968
|
+
// request请求单号,每次请求唯一,如uuid
|
|
12969
|
+
orderNo: string;
|
|
12970
|
+
// 订单归属门店id
|
|
12971
|
+
storeId: string;
|
|
12972
|
+
// 订单车辆信息
|
|
12973
|
+
vehicleInfo: VehicleInfo;
|
|
12974
|
+
// 订单绝对超时时间 yyyy-MM-dd HH:mm:ss,支付宝结算生成订单二维码时传值(非必填,优先于 timeout_express)
|
|
12975
|
+
timeExpire?: string;
|
|
12976
|
+
// 订单相对超时时间,从预下单请求时间开始计算,该笔订单允许的最晚付款时间,逾期将关闭交易(非必填)
|
|
12977
|
+
timeoutExpress?: string;
|
|
12978
|
+
static names(): { [key: string]: string } {
|
|
12979
|
+
return {
|
|
12980
|
+
authToken: 'auth_token',
|
|
12981
|
+
productInstanceId: 'product_instance_id',
|
|
12982
|
+
orderNo: 'order_no',
|
|
12983
|
+
storeId: 'store_id',
|
|
12984
|
+
vehicleInfo: 'vehicle_info',
|
|
12985
|
+
timeExpire: 'time_expire',
|
|
12986
|
+
timeoutExpress: 'timeout_express',
|
|
12987
|
+
};
|
|
12988
|
+
}
|
|
12989
|
+
|
|
12990
|
+
static types(): { [key: string]: any } {
|
|
12991
|
+
return {
|
|
12992
|
+
authToken: 'string',
|
|
12993
|
+
productInstanceId: 'string',
|
|
12994
|
+
orderNo: 'string',
|
|
12995
|
+
storeId: 'string',
|
|
12996
|
+
vehicleInfo: VehicleInfo,
|
|
12997
|
+
timeExpire: 'string',
|
|
12998
|
+
timeoutExpress: 'string',
|
|
12999
|
+
};
|
|
13000
|
+
}
|
|
13001
|
+
|
|
13002
|
+
constructor(map?: { [key: string]: any }) {
|
|
13003
|
+
super(map);
|
|
13004
|
+
}
|
|
13005
|
+
}
|
|
13006
|
+
|
|
13007
|
+
export class CreateDubbridgeAlipayTradeResponse extends $tea.Model {
|
|
13008
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
13009
|
+
reqMsgId?: string;
|
|
13010
|
+
// 结果码,一般OK表示调用成功
|
|
13011
|
+
resultCode?: string;
|
|
13012
|
+
// 异常信息的文本描述
|
|
13013
|
+
resultMsg?: string;
|
|
13014
|
+
// 资产方购物订单号
|
|
13015
|
+
bizOrderNo?: string;
|
|
13016
|
+
// 订单二维码码串,支付宝预下单生成的二维码码串,有效时间2小时
|
|
13017
|
+
qrCode?: string;
|
|
13018
|
+
static names(): { [key: string]: string } {
|
|
13019
|
+
return {
|
|
13020
|
+
reqMsgId: 'req_msg_id',
|
|
13021
|
+
resultCode: 'result_code',
|
|
13022
|
+
resultMsg: 'result_msg',
|
|
13023
|
+
bizOrderNo: 'biz_order_no',
|
|
13024
|
+
qrCode: 'qr_code',
|
|
13025
|
+
};
|
|
13026
|
+
}
|
|
13027
|
+
|
|
13028
|
+
static types(): { [key: string]: any } {
|
|
13029
|
+
return {
|
|
13030
|
+
reqMsgId: 'string',
|
|
13031
|
+
resultCode: 'string',
|
|
13032
|
+
resultMsg: 'string',
|
|
13033
|
+
bizOrderNo: 'string',
|
|
13034
|
+
qrCode: 'string',
|
|
13035
|
+
};
|
|
13036
|
+
}
|
|
13037
|
+
|
|
13038
|
+
constructor(map?: { [key: string]: any }) {
|
|
13039
|
+
super(map);
|
|
13040
|
+
}
|
|
13041
|
+
}
|
|
13042
|
+
|
|
12591
13043
|
export class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
12592
13044
|
// OAuth模式下的授权token
|
|
12593
13045
|
authToken?: string;
|
|
@@ -24922,7 +25374,7 @@ export default class Client {
|
|
|
24922
25374
|
req_msg_id: AntchainUtil.getNonce(),
|
|
24923
25375
|
access_key: this._accessKeyId,
|
|
24924
25376
|
base_sdk_version: "TeaSDK-2.0",
|
|
24925
|
-
sdk_version: "1.26.
|
|
25377
|
+
sdk_version: "1.26.6",
|
|
24926
25378
|
_prod_code: "RISKPLUS",
|
|
24927
25379
|
_prod_channel: "undefined",
|
|
24928
25380
|
};
|
|
@@ -26569,6 +27021,82 @@ export default class Client {
|
|
|
26569
27021
|
return $tea.cast<QueryDubbridgeInstallmentTrialResponse>(await this.doRequest("1.0", "riskplus.dubbridge.installment.trial.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeInstallmentTrialResponse({}));
|
|
26570
27022
|
}
|
|
26571
27023
|
|
|
27024
|
+
/**
|
|
27025
|
+
* Description: 天枢系统二级商户入驻图片上传-分期付
|
|
27026
|
+
* Summary: 天枢系统二级商户入驻图片上传-分期付
|
|
27027
|
+
*/
|
|
27028
|
+
async uploadDubbridgeAlipayImage(request: UploadDubbridgeAlipayImageRequest): Promise<UploadDubbridgeAlipayImageResponse> {
|
|
27029
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
27030
|
+
let headers : {[key: string ]: string} = { };
|
|
27031
|
+
return await this.uploadDubbridgeAlipayImageEx(request, headers, runtime);
|
|
27032
|
+
}
|
|
27033
|
+
|
|
27034
|
+
/**
|
|
27035
|
+
* Description: 天枢系统二级商户入驻图片上传-分期付
|
|
27036
|
+
* Summary: 天枢系统二级商户入驻图片上传-分期付
|
|
27037
|
+
*/
|
|
27038
|
+
async uploadDubbridgeAlipayImageEx(request: UploadDubbridgeAlipayImageRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UploadDubbridgeAlipayImageResponse> {
|
|
27039
|
+
Util.validateModel(request);
|
|
27040
|
+
return $tea.cast<UploadDubbridgeAlipayImageResponse>(await this.doRequest("1.0", "riskplus.dubbridge.alipay.image.upload", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UploadDubbridgeAlipayImageResponse({}));
|
|
27041
|
+
}
|
|
27042
|
+
|
|
27043
|
+
/**
|
|
27044
|
+
* Description: 天枢系统二级商户入驻-分期付
|
|
27045
|
+
* Summary: 天枢系统二级商户入驻-分期付
|
|
27046
|
+
*/
|
|
27047
|
+
async createDubbridgeAlipayMerchant(request: CreateDubbridgeAlipayMerchantRequest): Promise<CreateDubbridgeAlipayMerchantResponse> {
|
|
27048
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
27049
|
+
let headers : {[key: string ]: string} = { };
|
|
27050
|
+
return await this.createDubbridgeAlipayMerchantEx(request, headers, runtime);
|
|
27051
|
+
}
|
|
27052
|
+
|
|
27053
|
+
/**
|
|
27054
|
+
* Description: 天枢系统二级商户入驻-分期付
|
|
27055
|
+
* Summary: 天枢系统二级商户入驻-分期付
|
|
27056
|
+
*/
|
|
27057
|
+
async createDubbridgeAlipayMerchantEx(request: CreateDubbridgeAlipayMerchantRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateDubbridgeAlipayMerchantResponse> {
|
|
27058
|
+
Util.validateModel(request);
|
|
27059
|
+
return $tea.cast<CreateDubbridgeAlipayMerchantResponse>(await this.doRequest("1.0", "riskplus.dubbridge.alipay.merchant.create", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CreateDubbridgeAlipayMerchantResponse({}));
|
|
27060
|
+
}
|
|
27061
|
+
|
|
27062
|
+
/**
|
|
27063
|
+
* Description: 天枢系统二级商户入驻结果查询-分期付
|
|
27064
|
+
* Summary: 天枢系统二级商户入驻结果查询-分期付
|
|
27065
|
+
*/
|
|
27066
|
+
async queryDubbridgeAlipayMerchant(request: QueryDubbridgeAlipayMerchantRequest): Promise<QueryDubbridgeAlipayMerchantResponse> {
|
|
27067
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
27068
|
+
let headers : {[key: string ]: string} = { };
|
|
27069
|
+
return await this.queryDubbridgeAlipayMerchantEx(request, headers, runtime);
|
|
27070
|
+
}
|
|
27071
|
+
|
|
27072
|
+
/**
|
|
27073
|
+
* Description: 天枢系统二级商户入驻结果查询-分期付
|
|
27074
|
+
* Summary: 天枢系统二级商户入驻结果查询-分期付
|
|
27075
|
+
*/
|
|
27076
|
+
async queryDubbridgeAlipayMerchantEx(request: QueryDubbridgeAlipayMerchantRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeAlipayMerchantResponse> {
|
|
27077
|
+
Util.validateModel(request);
|
|
27078
|
+
return $tea.cast<QueryDubbridgeAlipayMerchantResponse>(await this.doRequest("1.0", "riskplus.dubbridge.alipay.merchant.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeAlipayMerchantResponse({}));
|
|
27079
|
+
}
|
|
27080
|
+
|
|
27081
|
+
/**
|
|
27082
|
+
* Description: 天枢系统二级商户支付宝订单码创建-分期付
|
|
27083
|
+
* Summary: 天枢系统二级商户支付宝订单码创建-分期付
|
|
27084
|
+
*/
|
|
27085
|
+
async createDubbridgeAlipayTrade(request: CreateDubbridgeAlipayTradeRequest): Promise<CreateDubbridgeAlipayTradeResponse> {
|
|
27086
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
27087
|
+
let headers : {[key: string ]: string} = { };
|
|
27088
|
+
return await this.createDubbridgeAlipayTradeEx(request, headers, runtime);
|
|
27089
|
+
}
|
|
27090
|
+
|
|
27091
|
+
/**
|
|
27092
|
+
* Description: 天枢系统二级商户支付宝订单码创建-分期付
|
|
27093
|
+
* Summary: 天枢系统二级商户支付宝订单码创建-分期付
|
|
27094
|
+
*/
|
|
27095
|
+
async createDubbridgeAlipayTradeEx(request: CreateDubbridgeAlipayTradeRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateDubbridgeAlipayTradeResponse> {
|
|
27096
|
+
Util.validateModel(request);
|
|
27097
|
+
return $tea.cast<CreateDubbridgeAlipayTradeResponse>(await this.doRequest("1.0", "riskplus.dubbridge.alipay.trade.create", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CreateDubbridgeAlipayTradeResponse({}));
|
|
27098
|
+
}
|
|
27099
|
+
|
|
26572
27100
|
/**
|
|
26573
27101
|
* Description: 四要素认证首先调用此接口
|
|
26574
27102
|
* Summary: 芝麻四要素接口
|