@antchain/insurance_saas 1.8.14 → 1.9.2
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 +356 -0
- package/dist/client.js +530 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +748 -1
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.GetEmbedoemautoinsuranceUrlResponse = exports.GetEmbedoemautoinsuranceUrlRequest = exports.IssueEmbedcardPaysucResponse = exports.IssueEmbedcardPaysucRequest = exports.GetEmbedcardUrlResponse = exports.GetEmbedcardUrlRequest = exports.QueryReverseCommissionResponse = exports.QueryReverseCommissionRequest = exports.SubmitInvestigateCaseResponse = exports.SubmitInvestigateCaseRequest = exports.ApplyInsureTestResponse = exports.ApplyInsureTestRequest = exports.QueryInsureResultResponse = exports.QueryInsureResultRequest = exports.SyncPolicyResultResponse = exports.SyncPolicyResultRequest = exports.ApplyEndorsementStrategyResponse = exports.ApplyEndorsementStrategyRequest = exports.FinishClaimSettleResponse = exports.FinishClaimSettleRequest = exports.ConfirmClaimSettleResponse = exports.ConfirmClaimSettleRequest = exports.UpdateClaimMaterialResponse = exports.UpdateClaimMaterialRequest = exports.CancelClaimResponse = exports.CancelClaimRequest = exports.ApplyClaimResponse = exports.ApplyClaimRequest = exports.NotifyPolicyResultResponse = exports.NotifyPolicyResultRequest = exports.ApplyInsureResponse = exports.ApplyInsureRequest = exports.QueryPolicyFileResponse = exports.QueryPolicyFileRequest = exports.QueryUnderwritingResponse = exports.QueryUnderwritingRequest = exports.ApplyUnderwritingResponse = exports.ApplyUnderwritingRequest = exports.SyncQuoteResponse = exports.SyncQuoteRequest = exports.QueryDataWeatherResponse = exports.QueryDataWeatherRequest = exports.QueryDataDisasterResponse = exports.QueryDataDisasterRequest = exports.SubmitInquiryResponse = exports.SubmitInquiryRequest = exports.QueryInquiryResponse = exports.QueryInquiryRequest = exports.EntrustGuaranteeProduct = exports.Applicant = exports.Insured = exports.FileNode = exports.Config = void 0;
|
|
25
|
+
exports.NotifyInterestSupplierorderResponse = exports.NotifyInterestSupplierorderRequest = exports.QueryInterestSceneorderResponse = exports.QueryInterestSceneorderRequest = exports.GetInterestUrlResponse = exports.GetInterestUrlRequest = exports.NotifyInterestSupplierpolicyResponse = exports.NotifyInterestSupplierpolicyRequest = exports.QueryInterestSuppliersubjectResponse = exports.QueryInterestSuppliersubjectRequest = exports.NotifyInterestScenesubjectResponse = exports.NotifyInterestScenesubjectRequest = exports.UpdateRightplatformApplyinfoResponse = exports.UpdateRightplatformApplyinfoRequest = exports.GetRightplatformUrlResponse = exports.GetRightplatformUrlRequest = exports.GetEmbedoemautoinsuranceUrlResponse = exports.GetEmbedoemautoinsuranceUrlRequest = exports.IssueEmbedcardPaysucResponse = exports.IssueEmbedcardPaysucRequest = exports.GetEmbedcardUrlResponse = exports.GetEmbedcardUrlRequest = exports.QueryReverseCommissionResponse = exports.QueryReverseCommissionRequest = exports.SubmitInvestigateCaseResponse = exports.SubmitInvestigateCaseRequest = exports.ApplyInsureTestResponse = exports.ApplyInsureTestRequest = exports.QueryInsureResultResponse = exports.QueryInsureResultRequest = exports.SyncPolicyResultResponse = exports.SyncPolicyResultRequest = exports.ApplyEndorsementStrategyResponse = exports.ApplyEndorsementStrategyRequest = exports.FinishClaimSettleResponse = exports.FinishClaimSettleRequest = exports.ConfirmClaimSettleResponse = exports.ConfirmClaimSettleRequest = exports.UpdateClaimMaterialResponse = exports.UpdateClaimMaterialRequest = exports.CancelClaimResponse = exports.CancelClaimRequest = exports.ApplyClaimResponse = exports.ApplyClaimRequest = exports.NotifyPolicyResultResponse = exports.NotifyPolicyResultRequest = exports.ApplyInsureResponse = exports.ApplyInsureRequest = exports.QueryPolicyFileResponse = exports.QueryPolicyFileRequest = exports.QueryUnderwritingResponse = exports.QueryUnderwritingRequest = exports.ApplyUnderwritingResponse = exports.ApplyUnderwritingRequest = exports.SyncQuoteResponse = exports.SyncQuoteRequest = exports.QueryDataWeatherResponse = exports.QueryDataWeatherRequest = exports.QueryDataDisasterResponse = exports.QueryDataDisasterRequest = exports.SubmitInquiryResponse = exports.SubmitInquiryRequest = exports.QueryInquiryResponse = exports.QueryInquiryRequest = exports.EntrustGuaranteeProduct = exports.Applicant = exports.Insured = exports.FileNode = 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;
|
|
@@ -1529,6 +1529,398 @@ class GetEmbedoemautoinsuranceUrlResponse extends $tea.Model {
|
|
|
1529
1529
|
}
|
|
1530
1530
|
}
|
|
1531
1531
|
exports.GetEmbedoemautoinsuranceUrlResponse = GetEmbedoemautoinsuranceUrlResponse;
|
|
1532
|
+
class GetRightplatformUrlRequest extends $tea.Model {
|
|
1533
|
+
constructor(map) {
|
|
1534
|
+
super(map);
|
|
1535
|
+
}
|
|
1536
|
+
static names() {
|
|
1537
|
+
return {
|
|
1538
|
+
authToken: 'auth_token',
|
|
1539
|
+
rightApplyNo: 'right_apply_no',
|
|
1540
|
+
applyLimitAmount: 'apply_limit_amount',
|
|
1541
|
+
dataLicensor: 'data_licensor',
|
|
1542
|
+
callbackUrl: 'callback_url',
|
|
1543
|
+
productCode: 'product_code',
|
|
1544
|
+
tbrName: 'tbr_name',
|
|
1545
|
+
tbrPhone: 'tbr_phone',
|
|
1546
|
+
tbrIdCard: 'tbr_id_card',
|
|
1547
|
+
};
|
|
1548
|
+
}
|
|
1549
|
+
static types() {
|
|
1550
|
+
return {
|
|
1551
|
+
authToken: 'string',
|
|
1552
|
+
rightApplyNo: 'string',
|
|
1553
|
+
applyLimitAmount: 'string',
|
|
1554
|
+
dataLicensor: 'string',
|
|
1555
|
+
callbackUrl: 'string',
|
|
1556
|
+
productCode: 'string',
|
|
1557
|
+
tbrName: 'string',
|
|
1558
|
+
tbrPhone: 'string',
|
|
1559
|
+
tbrIdCard: 'string',
|
|
1560
|
+
};
|
|
1561
|
+
}
|
|
1562
|
+
}
|
|
1563
|
+
exports.GetRightplatformUrlRequest = GetRightplatformUrlRequest;
|
|
1564
|
+
class GetRightplatformUrlResponse extends $tea.Model {
|
|
1565
|
+
constructor(map) {
|
|
1566
|
+
super(map);
|
|
1567
|
+
}
|
|
1568
|
+
static names() {
|
|
1569
|
+
return {
|
|
1570
|
+
reqMsgId: 'req_msg_id',
|
|
1571
|
+
resultCode: 'result_code',
|
|
1572
|
+
resultMsg: 'result_msg',
|
|
1573
|
+
rightApplyNo: 'right_apply_no',
|
|
1574
|
+
rightUrl: 'right_url',
|
|
1575
|
+
productId: 'product_id',
|
|
1576
|
+
};
|
|
1577
|
+
}
|
|
1578
|
+
static types() {
|
|
1579
|
+
return {
|
|
1580
|
+
reqMsgId: 'string',
|
|
1581
|
+
resultCode: 'string',
|
|
1582
|
+
resultMsg: 'string',
|
|
1583
|
+
rightApplyNo: 'string',
|
|
1584
|
+
rightUrl: 'string',
|
|
1585
|
+
productId: 'string',
|
|
1586
|
+
};
|
|
1587
|
+
}
|
|
1588
|
+
}
|
|
1589
|
+
exports.GetRightplatformUrlResponse = GetRightplatformUrlResponse;
|
|
1590
|
+
class UpdateRightplatformApplyinfoRequest extends $tea.Model {
|
|
1591
|
+
constructor(map) {
|
|
1592
|
+
super(map);
|
|
1593
|
+
}
|
|
1594
|
+
static names() {
|
|
1595
|
+
return {
|
|
1596
|
+
authToken: 'auth_token',
|
|
1597
|
+
rightApplyNo: 'right_apply_no',
|
|
1598
|
+
applyLimitAmount: 'apply_limit_amount',
|
|
1599
|
+
applyStatus: 'apply_status',
|
|
1600
|
+
applyInfo: 'apply_info',
|
|
1601
|
+
productCode: 'product_code',
|
|
1602
|
+
};
|
|
1603
|
+
}
|
|
1604
|
+
static types() {
|
|
1605
|
+
return {
|
|
1606
|
+
authToken: 'string',
|
|
1607
|
+
rightApplyNo: 'string',
|
|
1608
|
+
applyLimitAmount: 'string',
|
|
1609
|
+
applyStatus: 'string',
|
|
1610
|
+
applyInfo: 'string',
|
|
1611
|
+
productCode: 'string',
|
|
1612
|
+
};
|
|
1613
|
+
}
|
|
1614
|
+
}
|
|
1615
|
+
exports.UpdateRightplatformApplyinfoRequest = UpdateRightplatformApplyinfoRequest;
|
|
1616
|
+
class UpdateRightplatformApplyinfoResponse extends $tea.Model {
|
|
1617
|
+
constructor(map) {
|
|
1618
|
+
super(map);
|
|
1619
|
+
}
|
|
1620
|
+
static names() {
|
|
1621
|
+
return {
|
|
1622
|
+
reqMsgId: 'req_msg_id',
|
|
1623
|
+
resultCode: 'result_code',
|
|
1624
|
+
resultMsg: 'result_msg',
|
|
1625
|
+
rightApplyNo: 'right_apply_no',
|
|
1626
|
+
};
|
|
1627
|
+
}
|
|
1628
|
+
static types() {
|
|
1629
|
+
return {
|
|
1630
|
+
reqMsgId: 'string',
|
|
1631
|
+
resultCode: 'string',
|
|
1632
|
+
resultMsg: 'string',
|
|
1633
|
+
rightApplyNo: 'string',
|
|
1634
|
+
};
|
|
1635
|
+
}
|
|
1636
|
+
}
|
|
1637
|
+
exports.UpdateRightplatformApplyinfoResponse = UpdateRightplatformApplyinfoResponse;
|
|
1638
|
+
class NotifyInterestScenesubjectRequest extends $tea.Model {
|
|
1639
|
+
constructor(map) {
|
|
1640
|
+
super(map);
|
|
1641
|
+
}
|
|
1642
|
+
static names() {
|
|
1643
|
+
return {
|
|
1644
|
+
authToken: 'auth_token',
|
|
1645
|
+
requestNo: 'request_no',
|
|
1646
|
+
interestNo: 'interest_no',
|
|
1647
|
+
productCode: 'product_code',
|
|
1648
|
+
applyLimitAmount: 'apply_limit_amount',
|
|
1649
|
+
applyLimitStatus: 'apply_limit_status',
|
|
1650
|
+
interestSubjectInfo: 'interest_subject_info',
|
|
1651
|
+
};
|
|
1652
|
+
}
|
|
1653
|
+
static types() {
|
|
1654
|
+
return {
|
|
1655
|
+
authToken: 'string',
|
|
1656
|
+
requestNo: 'string',
|
|
1657
|
+
interestNo: 'string',
|
|
1658
|
+
productCode: 'string',
|
|
1659
|
+
applyLimitAmount: 'string',
|
|
1660
|
+
applyLimitStatus: 'string',
|
|
1661
|
+
interestSubjectInfo: 'string',
|
|
1662
|
+
};
|
|
1663
|
+
}
|
|
1664
|
+
}
|
|
1665
|
+
exports.NotifyInterestScenesubjectRequest = NotifyInterestScenesubjectRequest;
|
|
1666
|
+
class NotifyInterestScenesubjectResponse extends $tea.Model {
|
|
1667
|
+
constructor(map) {
|
|
1668
|
+
super(map);
|
|
1669
|
+
}
|
|
1670
|
+
static names() {
|
|
1671
|
+
return {
|
|
1672
|
+
reqMsgId: 'req_msg_id',
|
|
1673
|
+
resultCode: 'result_code',
|
|
1674
|
+
resultMsg: 'result_msg',
|
|
1675
|
+
bizResult: 'biz_result',
|
|
1676
|
+
};
|
|
1677
|
+
}
|
|
1678
|
+
static types() {
|
|
1679
|
+
return {
|
|
1680
|
+
reqMsgId: 'string',
|
|
1681
|
+
resultCode: 'string',
|
|
1682
|
+
resultMsg: 'string',
|
|
1683
|
+
bizResult: 'string',
|
|
1684
|
+
};
|
|
1685
|
+
}
|
|
1686
|
+
}
|
|
1687
|
+
exports.NotifyInterestScenesubjectResponse = NotifyInterestScenesubjectResponse;
|
|
1688
|
+
class QueryInterestSuppliersubjectRequest extends $tea.Model {
|
|
1689
|
+
constructor(map) {
|
|
1690
|
+
super(map);
|
|
1691
|
+
}
|
|
1692
|
+
static names() {
|
|
1693
|
+
return {
|
|
1694
|
+
authToken: 'auth_token',
|
|
1695
|
+
orderNo: 'order_no',
|
|
1696
|
+
interestNo: 'interest_no',
|
|
1697
|
+
};
|
|
1698
|
+
}
|
|
1699
|
+
static types() {
|
|
1700
|
+
return {
|
|
1701
|
+
authToken: 'string',
|
|
1702
|
+
orderNo: 'string',
|
|
1703
|
+
interestNo: 'string',
|
|
1704
|
+
};
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
exports.QueryInterestSuppliersubjectRequest = QueryInterestSuppliersubjectRequest;
|
|
1708
|
+
class QueryInterestSuppliersubjectResponse extends $tea.Model {
|
|
1709
|
+
constructor(map) {
|
|
1710
|
+
super(map);
|
|
1711
|
+
}
|
|
1712
|
+
static names() {
|
|
1713
|
+
return {
|
|
1714
|
+
reqMsgId: 'req_msg_id',
|
|
1715
|
+
resultCode: 'result_code',
|
|
1716
|
+
resultMsg: 'result_msg',
|
|
1717
|
+
bizResult: 'biz_result',
|
|
1718
|
+
};
|
|
1719
|
+
}
|
|
1720
|
+
static types() {
|
|
1721
|
+
return {
|
|
1722
|
+
reqMsgId: 'string',
|
|
1723
|
+
resultCode: 'string',
|
|
1724
|
+
resultMsg: 'string',
|
|
1725
|
+
bizResult: 'string',
|
|
1726
|
+
};
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
exports.QueryInterestSuppliersubjectResponse = QueryInterestSuppliersubjectResponse;
|
|
1730
|
+
class NotifyInterestSupplierpolicyRequest extends $tea.Model {
|
|
1731
|
+
constructor(map) {
|
|
1732
|
+
super(map);
|
|
1733
|
+
}
|
|
1734
|
+
static names() {
|
|
1735
|
+
return {
|
|
1736
|
+
authToken: 'auth_token',
|
|
1737
|
+
requestNo: 'request_no',
|
|
1738
|
+
orderNo: 'order_no',
|
|
1739
|
+
policyInfo: 'policy_info',
|
|
1740
|
+
};
|
|
1741
|
+
}
|
|
1742
|
+
static types() {
|
|
1743
|
+
return {
|
|
1744
|
+
authToken: 'string',
|
|
1745
|
+
requestNo: 'string',
|
|
1746
|
+
orderNo: 'string',
|
|
1747
|
+
policyInfo: 'string',
|
|
1748
|
+
};
|
|
1749
|
+
}
|
|
1750
|
+
}
|
|
1751
|
+
exports.NotifyInterestSupplierpolicyRequest = NotifyInterestSupplierpolicyRequest;
|
|
1752
|
+
class NotifyInterestSupplierpolicyResponse extends $tea.Model {
|
|
1753
|
+
constructor(map) {
|
|
1754
|
+
super(map);
|
|
1755
|
+
}
|
|
1756
|
+
static names() {
|
|
1757
|
+
return {
|
|
1758
|
+
reqMsgId: 'req_msg_id',
|
|
1759
|
+
resultCode: 'result_code',
|
|
1760
|
+
resultMsg: 'result_msg',
|
|
1761
|
+
bizResult: 'biz_result',
|
|
1762
|
+
};
|
|
1763
|
+
}
|
|
1764
|
+
static types() {
|
|
1765
|
+
return {
|
|
1766
|
+
reqMsgId: 'string',
|
|
1767
|
+
resultCode: 'string',
|
|
1768
|
+
resultMsg: 'string',
|
|
1769
|
+
bizResult: 'string',
|
|
1770
|
+
};
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
exports.NotifyInterestSupplierpolicyResponse = NotifyInterestSupplierpolicyResponse;
|
|
1774
|
+
class GetInterestUrlRequest extends $tea.Model {
|
|
1775
|
+
constructor(map) {
|
|
1776
|
+
super(map);
|
|
1777
|
+
}
|
|
1778
|
+
static names() {
|
|
1779
|
+
return {
|
|
1780
|
+
authToken: 'auth_token',
|
|
1781
|
+
rightApplyNo: 'right_apply_no',
|
|
1782
|
+
applyLimitAmount: 'apply_limit_amount',
|
|
1783
|
+
dataLicensor: 'data_licensor',
|
|
1784
|
+
callbackUrl: 'callback_url',
|
|
1785
|
+
productCode: 'product_code',
|
|
1786
|
+
tbrName: 'tbr_name',
|
|
1787
|
+
tbrPhone: 'tbr_phone',
|
|
1788
|
+
tbrIdCard: 'tbr_id_card',
|
|
1789
|
+
};
|
|
1790
|
+
}
|
|
1791
|
+
static types() {
|
|
1792
|
+
return {
|
|
1793
|
+
authToken: 'string',
|
|
1794
|
+
rightApplyNo: 'string',
|
|
1795
|
+
applyLimitAmount: 'string',
|
|
1796
|
+
dataLicensor: 'string',
|
|
1797
|
+
callbackUrl: 'string',
|
|
1798
|
+
productCode: 'string',
|
|
1799
|
+
tbrName: 'string',
|
|
1800
|
+
tbrPhone: 'string',
|
|
1801
|
+
tbrIdCard: 'string',
|
|
1802
|
+
};
|
|
1803
|
+
}
|
|
1804
|
+
}
|
|
1805
|
+
exports.GetInterestUrlRequest = GetInterestUrlRequest;
|
|
1806
|
+
class GetInterestUrlResponse extends $tea.Model {
|
|
1807
|
+
constructor(map) {
|
|
1808
|
+
super(map);
|
|
1809
|
+
}
|
|
1810
|
+
static names() {
|
|
1811
|
+
return {
|
|
1812
|
+
reqMsgId: 'req_msg_id',
|
|
1813
|
+
resultCode: 'result_code',
|
|
1814
|
+
resultMsg: 'result_msg',
|
|
1815
|
+
bizResult: 'biz_result',
|
|
1816
|
+
};
|
|
1817
|
+
}
|
|
1818
|
+
static types() {
|
|
1819
|
+
return {
|
|
1820
|
+
reqMsgId: 'string',
|
|
1821
|
+
resultCode: 'string',
|
|
1822
|
+
resultMsg: 'string',
|
|
1823
|
+
bizResult: 'string',
|
|
1824
|
+
};
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1827
|
+
exports.GetInterestUrlResponse = GetInterestUrlResponse;
|
|
1828
|
+
class QueryInterestSceneorderRequest extends $tea.Model {
|
|
1829
|
+
constructor(map) {
|
|
1830
|
+
super(map);
|
|
1831
|
+
}
|
|
1832
|
+
static names() {
|
|
1833
|
+
return {
|
|
1834
|
+
authToken: 'auth_token',
|
|
1835
|
+
requestNo: 'request_no',
|
|
1836
|
+
interestNo: 'interest_no',
|
|
1837
|
+
productCode: 'product_code',
|
|
1838
|
+
};
|
|
1839
|
+
}
|
|
1840
|
+
static types() {
|
|
1841
|
+
return {
|
|
1842
|
+
authToken: 'string',
|
|
1843
|
+
requestNo: 'string',
|
|
1844
|
+
interestNo: 'string',
|
|
1845
|
+
productCode: 'string',
|
|
1846
|
+
};
|
|
1847
|
+
}
|
|
1848
|
+
}
|
|
1849
|
+
exports.QueryInterestSceneorderRequest = QueryInterestSceneorderRequest;
|
|
1850
|
+
class QueryInterestSceneorderResponse extends $tea.Model {
|
|
1851
|
+
constructor(map) {
|
|
1852
|
+
super(map);
|
|
1853
|
+
}
|
|
1854
|
+
static names() {
|
|
1855
|
+
return {
|
|
1856
|
+
reqMsgId: 'req_msg_id',
|
|
1857
|
+
resultCode: 'result_code',
|
|
1858
|
+
resultMsg: 'result_msg',
|
|
1859
|
+
bizResult: 'biz_result',
|
|
1860
|
+
};
|
|
1861
|
+
}
|
|
1862
|
+
static types() {
|
|
1863
|
+
return {
|
|
1864
|
+
reqMsgId: 'string',
|
|
1865
|
+
resultCode: 'string',
|
|
1866
|
+
resultMsg: 'string',
|
|
1867
|
+
bizResult: 'string',
|
|
1868
|
+
};
|
|
1869
|
+
}
|
|
1870
|
+
}
|
|
1871
|
+
exports.QueryInterestSceneorderResponse = QueryInterestSceneorderResponse;
|
|
1872
|
+
class NotifyInterestSupplierorderRequest extends $tea.Model {
|
|
1873
|
+
constructor(map) {
|
|
1874
|
+
super(map);
|
|
1875
|
+
}
|
|
1876
|
+
static names() {
|
|
1877
|
+
return {
|
|
1878
|
+
authToken: 'auth_token',
|
|
1879
|
+
requestNo: 'request_no',
|
|
1880
|
+
orderNo: 'order_no',
|
|
1881
|
+
interestNo: 'interest_no',
|
|
1882
|
+
userPermitStatus: 'user_permit_status',
|
|
1883
|
+
orderStatus: 'order_status',
|
|
1884
|
+
refundAmount: 'refund_amount',
|
|
1885
|
+
refundTime: 'refund_time',
|
|
1886
|
+
};
|
|
1887
|
+
}
|
|
1888
|
+
static types() {
|
|
1889
|
+
return {
|
|
1890
|
+
authToken: 'string',
|
|
1891
|
+
requestNo: 'string',
|
|
1892
|
+
orderNo: 'string',
|
|
1893
|
+
interestNo: 'string',
|
|
1894
|
+
userPermitStatus: 'string',
|
|
1895
|
+
orderStatus: 'string',
|
|
1896
|
+
refundAmount: 'string',
|
|
1897
|
+
refundTime: 'string',
|
|
1898
|
+
};
|
|
1899
|
+
}
|
|
1900
|
+
}
|
|
1901
|
+
exports.NotifyInterestSupplierorderRequest = NotifyInterestSupplierorderRequest;
|
|
1902
|
+
class NotifyInterestSupplierorderResponse extends $tea.Model {
|
|
1903
|
+
constructor(map) {
|
|
1904
|
+
super(map);
|
|
1905
|
+
}
|
|
1906
|
+
static names() {
|
|
1907
|
+
return {
|
|
1908
|
+
reqMsgId: 'req_msg_id',
|
|
1909
|
+
resultCode: 'result_code',
|
|
1910
|
+
resultMsg: 'result_msg',
|
|
1911
|
+
bizResult: 'biz_result',
|
|
1912
|
+
};
|
|
1913
|
+
}
|
|
1914
|
+
static types() {
|
|
1915
|
+
return {
|
|
1916
|
+
reqMsgId: 'string',
|
|
1917
|
+
resultCode: 'string',
|
|
1918
|
+
resultMsg: 'string',
|
|
1919
|
+
bizResult: 'string',
|
|
1920
|
+
};
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
exports.NotifyInterestSupplierorderResponse = NotifyInterestSupplierorderResponse;
|
|
1532
1924
|
class Client {
|
|
1533
1925
|
/**
|
|
1534
1926
|
* Init client with Config
|
|
@@ -1617,7 +2009,7 @@ class Client {
|
|
|
1617
2009
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
1618
2010
|
access_key: this._accessKeyId,
|
|
1619
2011
|
base_sdk_version: "TeaSDK-2.0",
|
|
1620
|
-
sdk_version: "1.
|
|
2012
|
+
sdk_version: "1.9.2",
|
|
1621
2013
|
_prod_code: "INSURANCE_SAAS",
|
|
1622
2014
|
_prod_channel: "undefined",
|
|
1623
2015
|
};
|
|
@@ -2062,6 +2454,142 @@ class Client {
|
|
|
2062
2454
|
tea_util_1.default.validateModel(request);
|
|
2063
2455
|
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.embedoemautoinsurance.url.get", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new GetEmbedoemautoinsuranceUrlResponse({}));
|
|
2064
2456
|
}
|
|
2457
|
+
/**
|
|
2458
|
+
* Description: 场景方获取权益链接
|
|
2459
|
+
* Summary: 场景方获取权益链接
|
|
2460
|
+
*/
|
|
2461
|
+
async getRightplatformUrl(request) {
|
|
2462
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
2463
|
+
let headers = {};
|
|
2464
|
+
return await this.getRightplatformUrlEx(request, headers, runtime);
|
|
2465
|
+
}
|
|
2466
|
+
/**
|
|
2467
|
+
* Description: 场景方获取权益链接
|
|
2468
|
+
* Summary: 场景方获取权益链接
|
|
2469
|
+
*/
|
|
2470
|
+
async getRightplatformUrlEx(request, headers, runtime) {
|
|
2471
|
+
tea_util_1.default.validateModel(request);
|
|
2472
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.rightplatform.url.get", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new GetRightplatformUrlResponse({}));
|
|
2473
|
+
}
|
|
2474
|
+
/**
|
|
2475
|
+
* Description: 更新申请额度状态&投保人信息
|
|
2476
|
+
* Summary: 更新申请额度状态&投保人信息
|
|
2477
|
+
*/
|
|
2478
|
+
async updateRightplatformApplyinfo(request) {
|
|
2479
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
2480
|
+
let headers = {};
|
|
2481
|
+
return await this.updateRightplatformApplyinfoEx(request, headers, runtime);
|
|
2482
|
+
}
|
|
2483
|
+
/**
|
|
2484
|
+
* Description: 更新申请额度状态&投保人信息
|
|
2485
|
+
* Summary: 更新申请额度状态&投保人信息
|
|
2486
|
+
*/
|
|
2487
|
+
async updateRightplatformApplyinfoEx(request, headers, runtime) {
|
|
2488
|
+
tea_util_1.default.validateModel(request);
|
|
2489
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.rightplatform.applyinfo.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateRightplatformApplyinfoResponse({}));
|
|
2490
|
+
}
|
|
2491
|
+
/**
|
|
2492
|
+
* Description: 场景方标的信息通知
|
|
2493
|
+
* Summary: 场景方标的信息通知
|
|
2494
|
+
*/
|
|
2495
|
+
async notifyInterestScenesubject(request) {
|
|
2496
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
2497
|
+
let headers = {};
|
|
2498
|
+
return await this.notifyInterestScenesubjectEx(request, headers, runtime);
|
|
2499
|
+
}
|
|
2500
|
+
/**
|
|
2501
|
+
* Description: 场景方标的信息通知
|
|
2502
|
+
* Summary: 场景方标的信息通知
|
|
2503
|
+
*/
|
|
2504
|
+
async notifyInterestScenesubjectEx(request, headers, runtime) {
|
|
2505
|
+
tea_util_1.default.validateModel(request);
|
|
2506
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.interest.scenesubject.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyInterestScenesubjectResponse({}));
|
|
2507
|
+
}
|
|
2508
|
+
/**
|
|
2509
|
+
* Description: 权益服务商标的信息查询
|
|
2510
|
+
* Summary: 权益服务商标的信息查询
|
|
2511
|
+
*/
|
|
2512
|
+
async queryInterestSuppliersubject(request) {
|
|
2513
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
2514
|
+
let headers = {};
|
|
2515
|
+
return await this.queryInterestSuppliersubjectEx(request, headers, runtime);
|
|
2516
|
+
}
|
|
2517
|
+
/**
|
|
2518
|
+
* Description: 权益服务商标的信息查询
|
|
2519
|
+
* Summary: 权益服务商标的信息查询
|
|
2520
|
+
*/
|
|
2521
|
+
async queryInterestSuppliersubjectEx(request, headers, runtime) {
|
|
2522
|
+
tea_util_1.default.validateModel(request);
|
|
2523
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.interest.suppliersubject.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInterestSuppliersubjectResponse({}));
|
|
2524
|
+
}
|
|
2525
|
+
/**
|
|
2526
|
+
* Description: 权益服务商投保后通知保单信息
|
|
2527
|
+
* Summary: 权益服务商投保后通知保单信息
|
|
2528
|
+
*/
|
|
2529
|
+
async notifyInterestSupplierpolicy(request) {
|
|
2530
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
2531
|
+
let headers = {};
|
|
2532
|
+
return await this.notifyInterestSupplierpolicyEx(request, headers, runtime);
|
|
2533
|
+
}
|
|
2534
|
+
/**
|
|
2535
|
+
* Description: 权益服务商投保后通知保单信息
|
|
2536
|
+
* Summary: 权益服务商投保后通知保单信息
|
|
2537
|
+
*/
|
|
2538
|
+
async notifyInterestSupplierpolicyEx(request, headers, runtime) {
|
|
2539
|
+
tea_util_1.default.validateModel(request);
|
|
2540
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.interest.supplierpolicy.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyInterestSupplierpolicyResponse({}));
|
|
2541
|
+
}
|
|
2542
|
+
/**
|
|
2543
|
+
* Description: 场景方获取权益链接
|
|
2544
|
+
* Summary: 场景方获取权益链接
|
|
2545
|
+
*/
|
|
2546
|
+
async getInterestUrl(request) {
|
|
2547
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
2548
|
+
let headers = {};
|
|
2549
|
+
return await this.getInterestUrlEx(request, headers, runtime);
|
|
2550
|
+
}
|
|
2551
|
+
/**
|
|
2552
|
+
* Description: 场景方获取权益链接
|
|
2553
|
+
* Summary: 场景方获取权益链接
|
|
2554
|
+
*/
|
|
2555
|
+
async getInterestUrlEx(request, headers, runtime) {
|
|
2556
|
+
tea_util_1.default.validateModel(request);
|
|
2557
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.interest.url.get", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new GetInterestUrlResponse({}));
|
|
2558
|
+
}
|
|
2559
|
+
/**
|
|
2560
|
+
* Description: 场景方订单信息查询
|
|
2561
|
+
* Summary: 场景方订单信息查询
|
|
2562
|
+
*/
|
|
2563
|
+
async queryInterestSceneorder(request) {
|
|
2564
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
2565
|
+
let headers = {};
|
|
2566
|
+
return await this.queryInterestSceneorderEx(request, headers, runtime);
|
|
2567
|
+
}
|
|
2568
|
+
/**
|
|
2569
|
+
* Description: 场景方订单信息查询
|
|
2570
|
+
* Summary: 场景方订单信息查询
|
|
2571
|
+
*/
|
|
2572
|
+
async queryInterestSceneorderEx(request, headers, runtime) {
|
|
2573
|
+
tea_util_1.default.validateModel(request);
|
|
2574
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.interest.sceneorder.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInterestSceneorderResponse({}));
|
|
2575
|
+
}
|
|
2576
|
+
/**
|
|
2577
|
+
* Description: 权益服务商订单状态通知
|
|
2578
|
+
* Summary: 权益服务商订单状态通知
|
|
2579
|
+
*/
|
|
2580
|
+
async notifyInterestSupplierorder(request) {
|
|
2581
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
2582
|
+
let headers = {};
|
|
2583
|
+
return await this.notifyInterestSupplierorderEx(request, headers, runtime);
|
|
2584
|
+
}
|
|
2585
|
+
/**
|
|
2586
|
+
* Description: 权益服务商订单状态通知
|
|
2587
|
+
* Summary: 权益服务商订单状态通知
|
|
2588
|
+
*/
|
|
2589
|
+
async notifyInterestSupplierorderEx(request, headers, runtime) {
|
|
2590
|
+
tea_util_1.default.validateModel(request);
|
|
2591
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.interest.supplierorder.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyInterestSupplierorderResponse({}));
|
|
2592
|
+
}
|
|
2065
2593
|
}
|
|
2066
2594
|
exports.default = Client;
|
|
2067
2595
|
//# sourceMappingURL=client.js.map
|