@cobo/cobo-waas2 1.18.0 → 1.19.0
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/README.md +78 -4
- package/dist/ApiClient.js +1 -1
- package/dist/api/OAuthApi.js +2 -2
- package/dist/api/TransactionsApi.js +0 -92
- package/dist/api/WalletsApi.js +50 -0
- package/dist/index.js +518 -7
- package/dist/model/AddressesEventData.js +13 -8
- package/dist/model/ApprovalDetail.js +160 -0
- package/dist/model/ApprovalResult.js +66 -0
- package/dist/model/ApprovalShowInfo.js +140 -0
- package/dist/model/ApprovalTemplate.js +114 -0
- package/dist/model/ApprovalTransactionResult.js +66 -0
- package/dist/model/ApprovalUserDetail.js +196 -0
- package/dist/model/AutoFuelType.js +5 -0
- package/dist/model/BalanceUpdateInfoEventData.js +13 -8
- package/dist/model/ChainsEventData.js +13 -8
- package/dist/model/CreatePaymentOrderRequest.js +7 -6
- package/dist/model/CreateSettlement.js +1 -2
- package/dist/model/CustodialWeb3TransferSource.js +2 -2
- package/dist/model/EstimatedEvmEip1559Fee.js +2 -2
- package/dist/model/EstimatedEvmLegacyFee.js +2 -2
- package/dist/model/EstimatedFILFee.js +2 -2
- package/dist/model/EstimatedFILFeeSlow.js +12 -12
- package/dist/model/EstimatedFee.js +1 -1
- package/dist/model/EstimatedFixedFee.js +2 -2
- package/dist/model/EstimatedSOLFee.js +2 -2
- package/dist/model/EstimatedSOLFeeSlow.js +11 -11
- package/dist/model/EstimatedUtxoFee.js +2 -2
- package/dist/model/EvmEip1559FeeBasePrice.js +0 -1
- package/dist/model/EvmEip1559FeeRate.js +2 -2
- package/dist/model/EvmLegacyFeeBasePrice.js +0 -1
- package/dist/model/EvmLegacyFeeRate.js +2 -2
- package/dist/model/FILBase.js +1 -1
- package/dist/model/FILPrice.js +3 -4
- package/dist/model/FeeRate.js +1 -1
- package/dist/model/FixedFeeRate.js +2 -2
- package/dist/model/GetMaxTransferableValueWithFeeModelRequest.js +156 -0
- package/dist/model/MPCVaultEventData.js +13 -8
- package/dist/model/MaxFeeAmount.js +0 -1
- package/dist/model/MaxTransferableValue.js +2 -2
- package/dist/model/MpcTransferSource.js +2 -2
- package/dist/model/PaymentOrderEventData.js +13 -8
- package/dist/model/PaymentRefundEventData.js +13 -8
- package/dist/model/PaymentSettlementEvent.js +13 -8
- package/dist/model/{ListTransactionApprovalDetails200Response.js → RoleDetail.js} +46 -27
- package/dist/model/SOLBase.js +2 -2
- package/dist/model/SOLComputeUnit.js +2 -3
- package/dist/model/SuspendedTokenEventData.js +225 -0
- package/dist/model/SuspendedTokenOperationType.js +61 -0
- package/dist/model/SwapActivity.js +29 -0
- package/dist/model/SwapActivityDetail.js +38 -0
- package/dist/model/TSSRequestWebhookEventData.js +13 -8
- package/dist/model/TokenListingEventData.js +13 -8
- package/dist/model/TokenizationActivityInfo.js +224 -0
- package/dist/model/TokenizationActivityStatus.js +66 -0
- package/dist/model/TokenizationAddressPermission.js +135 -0
- package/dist/model/TokenizationAllowlistActivationParams.js +124 -0
- package/dist/model/TokenizationAllowlistActivationRequest.js +180 -0
- package/dist/model/TokenizationAllowlistAddressNote.js +132 -0
- package/dist/model/TokenizationAppInitiator.js +87 -0
- package/dist/model/TokenizationBlocklistAddressNote.js +132 -0
- package/dist/model/TokenizationBurnEstimateFeeParams.js +187 -0
- package/dist/model/TokenizationBurnTokenParams.js +146 -0
- package/dist/model/TokenizationBurnTokenParamsBurnsInner.js +125 -0
- package/dist/model/TokenizationBurnTokenRequest.js +202 -0
- package/dist/model/TokenizationContractCallEstimateFeeParams.js +167 -0
- package/dist/model/TokenizationContractCallParams.js +107 -0
- package/dist/model/TokenizationContractCallParamsData.js +164 -0
- package/dist/model/TokenizationContractCallRequest.js +182 -0
- package/dist/model/TokenizationContractCallType.js +56 -0
- package/dist/model/TokenizationERC20TokenParams.js +173 -0
- package/dist/model/TokenizationEstimateFeeRequest.js +113 -0
- package/dist/model/TokenizationEstimateFeeRequestOperationParams.js +439 -0
- package/dist/model/TokenizationEvmContractCallParams.js +133 -0
- package/dist/model/TokenizationHoldingInfo.js +166 -0
- package/dist/model/TokenizationIssueEstimateFeeParams.js +176 -0
- package/dist/model/TokenizationIssueTokenParams.js +146 -0
- package/dist/model/TokenizationIssueTokenParamsTokenParams.js +183 -0
- package/dist/model/TokenizationIssuedTokenRequest.js +206 -0
- package/dist/model/TokenizationListActivitiesResponse.js +146 -0
- package/dist/model/TokenizationListEnabledChainsResponse.js +128 -0
- package/dist/model/TokenizationListHoldingsResponse.js +146 -0
- package/dist/model/TokenizationListTokenInfoResponse.js +146 -0
- package/dist/model/TokenizationMintEstimateFeeParams.js +187 -0
- package/dist/model/TokenizationMintTokenParams.js +146 -0
- package/dist/model/TokenizationMintTokenParamsMintsInner.js +125 -0
- package/dist/model/TokenizationMintTokenRequest.js +202 -0
- package/dist/model/TokenizationMpcOperationSource.js +136 -0
- package/dist/model/TokenizationOperationResponse.js +110 -0
- package/dist/model/TokenizationOperationSourceType.js +61 -0
- package/dist/model/TokenizationOperationType.js +96 -0
- package/dist/model/TokenizationPauseEstimateFeeParams.js +149 -0
- package/dist/model/TokenizationPauseTokenParams.js +113 -0
- package/dist/model/TokenizationPauseTokenRequest.js +164 -0
- package/dist/model/TokenizationStatus.js +71 -0
- package/dist/model/TokenizationToggleAllowlistEstimateFeeParams.js +165 -0
- package/dist/model/TokenizationTokenDetailInfo.js +309 -0
- package/dist/model/TokenizationTokenInfo.js +223 -0
- package/dist/model/TokenizationTokenOperationSource.js +192 -0
- package/dist/model/TokenizationTokenPermission.js +147 -0
- package/dist/model/TokenizationTokenPermissionParams.js +166 -0
- package/dist/model/TokenizationTokenPermissionType.js +86 -0
- package/dist/model/TokenizationTokenPermissionsResponse.js +139 -0
- package/dist/model/TokenizationTokenStandard.js +56 -0
- package/dist/model/TokenizationUnpauseEstimateFeeParams.js +149 -0
- package/dist/model/TokenizationUnpauseTokenParams.js +113 -0
- package/dist/model/TokenizationUnpauseTokenRequest.js +164 -0
- package/dist/model/TokenizationUpdateAddressAction.js +61 -0
- package/dist/model/TokenizationUpdateAllowlistAddressesEstimateFeeParams.js +202 -0
- package/dist/model/TokenizationUpdateAllowlistAddressesParams.js +157 -0
- package/dist/model/TokenizationUpdateAllowlistAddressesParamsAddressesInner.js +123 -0
- package/dist/model/TokenizationUpdateAllowlistAddressesRequest.js +217 -0
- package/dist/model/TokenizationUpdateBlocklistAddressesEstimateFeeParams.js +202 -0
- package/dist/model/TokenizationUpdateBlocklistAddressesParams.js +157 -0
- package/dist/model/TokenizationUpdateBlocklistAddressesParamsAddressesInner.js +123 -0
- package/dist/model/TokenizationUpdateBlocklistAddressesRequest.js +217 -0
- package/dist/model/TokenizationWeb3OperationSource.js +136 -0
- package/dist/model/TokensEventData.js +13 -8
- package/dist/model/TopUpAddress.js +2 -2
- package/dist/model/TransactionEvmEip1559Fee.js +2 -2
- package/dist/model/TransactionEvmLegacyFee.js +2 -2
- package/dist/model/TransactionFILFee.js +11 -11
- package/dist/model/TransactionFee.js +10 -10
- package/dist/model/TransactionFixedFee.js +2 -2
- package/dist/model/TransactionRbfSource.js +1 -1
- package/dist/model/TransactionRequestEvmEip1559Fee.js +2 -2
- package/dist/model/TransactionRequestEvmLegacyFee.js +2 -2
- package/dist/model/TransactionRequestFILFee.js +11 -11
- package/dist/model/TransactionRequestFee.js +6 -6
- package/dist/model/TransactionRequestFixedFee.js +2 -2
- package/dist/model/TransactionRequestSOLFee.js +9 -9
- package/dist/model/TransactionRequestUtxoFee.js +2 -2
- package/dist/model/TransactionSOLFee.js +11 -11
- package/dist/model/TransactionSubStatus.js +5 -0
- package/dist/model/TransactionUtxoFee.js +2 -2
- package/dist/model/TransactionWebhookEventData.js +13 -8
- package/dist/model/UtxoFeeBasePrice.js +0 -1
- package/dist/model/UtxoFeeRate.js +2 -2
- package/dist/model/WalletInfoEventData.js +13 -8
- package/dist/model/WebhookEvent.js +2 -2
- package/dist/model/WebhookEventData.js +49 -9
- package/dist/model/WebhookEventDataType.js +12 -7
- package/dist/model/WebhookEventLog.js +2 -2
- package/dist/model/WebhookEventType.js +20 -0
- package/docs/AddressesEventData.md +5 -3
- package/docs/ApprovalDetail.md +14 -0
- package/docs/ApprovalResult.md +14 -0
- package/docs/ApprovalShowInfo.md +13 -0
- package/docs/ApprovalTemplate.md +11 -0
- package/docs/ApprovalTransactionResult.md +14 -0
- package/docs/ApprovalUserDetail.md +18 -0
- package/docs/AutoFuelType.md +2 -0
- package/docs/BalanceUpdateInfoEventData.md +5 -3
- package/docs/ChainsEventData.md +5 -3
- package/docs/CreatePaymentOrderRequest.md +4 -4
- package/docs/CreateSettlement.md +2 -2
- package/docs/CustodialWeb3TransferSource.md +1 -1
- package/docs/EstimatedEvmEip1559Fee.md +1 -1
- package/docs/EstimatedEvmLegacyFee.md +1 -1
- package/docs/EstimatedFILFee.md +1 -1
- package/docs/EstimatedFILFeeSlow.md +4 -4
- package/docs/EstimatedFee.md +1 -1
- package/docs/EstimatedFixedFee.md +1 -1
- package/docs/EstimatedSOLFee.md +1 -1
- package/docs/EstimatedSOLFeeSlow.md +4 -4
- package/docs/EstimatedUtxoFee.md +1 -1
- package/docs/EvmEip1559FeeRate.md +1 -1
- package/docs/EvmLegacyFeeRate.md +1 -1
- package/docs/FILBase.md +1 -1
- package/docs/FILPrice.md +3 -3
- package/docs/FeeRate.md +1 -1
- package/docs/FixedFeeRate.md +1 -1
- package/docs/GetMaxTransferableValueWithFeeModelRequest.md +12 -0
- package/docs/MPCVaultEventData.md +5 -3
- package/docs/MaxTransferableValue.md +1 -1
- package/docs/MpcTransferSource.md +1 -1
- package/docs/OAuthApi.md +1 -1
- package/docs/PaymentOrderEventData.md +5 -3
- package/docs/PaymentRefundEventData.md +5 -3
- package/docs/PaymentSettlementEvent.md +5 -3
- package/docs/RoleDetail.md +11 -0
- package/docs/SOLBase.md +2 -2
- package/docs/SOLComputeUnit.md +2 -2
- package/docs/SuspendedTokenEventData.md +46 -0
- package/docs/SuspendedTokenOperationType.md +12 -0
- package/docs/SwapActivity.md +2 -0
- package/docs/SwapActivityDetail.md +2 -0
- package/docs/TSSRequestWebhookEventData.md +5 -3
- package/docs/TokenListingEventData.md +5 -3
- package/docs/TokenizationActivityInfo.md +18 -0
- package/docs/TokenizationActivityStatus.md +14 -0
- package/docs/TokenizationAddressPermission.md +11 -0
- package/docs/TokenizationAllowlistActivationParams.md +10 -0
- package/docs/TokenizationAllowlistActivationRequest.md +12 -0
- package/docs/TokenizationAllowlistAddressNote.md +11 -0
- package/docs/TokenizationAppInitiator.md +9 -0
- package/docs/TokenizationBlocklistAddressNote.md +11 -0
- package/docs/TokenizationBurnEstimateFeeParams.md +12 -0
- package/docs/TokenizationBurnTokenParams.md +10 -0
- package/docs/TokenizationBurnTokenParamsBurnsInner.md +10 -0
- package/docs/TokenizationBurnTokenRequest.md +12 -0
- package/docs/TokenizationContractCallEstimateFeeParams.md +12 -0
- package/docs/TokenizationContractCallParams.md +10 -0
- package/docs/TokenizationContractCallParamsData.md +11 -0
- package/docs/TokenizationContractCallRequest.md +12 -0
- package/docs/TokenizationContractCallType.md +10 -0
- package/docs/TokenizationERC20TokenParams.md +14 -0
- package/docs/TokenizationEstimateFeeRequest.md +9 -0
- package/docs/TokenizationEstimateFeeRequestOperationParams.md +19 -0
- package/docs/TokenizationEvmContractCallParams.md +11 -0
- package/docs/TokenizationHoldingInfo.md +13 -0
- package/docs/TokenizationIssueEstimateFeeParams.md +12 -0
- package/docs/TokenizationIssueTokenParams.md +11 -0
- package/docs/TokenizationIssueTokenParamsTokenParams.md +14 -0
- package/docs/TokenizationIssuedTokenRequest.md +13 -0
- package/docs/TokenizationListActivitiesResponse.md +10 -0
- package/docs/TokenizationListEnabledChainsResponse.md +10 -0
- package/docs/TokenizationListHoldingsResponse.md +10 -0
- package/docs/TokenizationListTokenInfoResponse.md +10 -0
- package/docs/TokenizationMintEstimateFeeParams.md +12 -0
- package/docs/TokenizationMintTokenParams.md +10 -0
- package/docs/TokenizationMintTokenParamsMintsInner.md +10 -0
- package/docs/TokenizationMintTokenRequest.md +12 -0
- package/docs/TokenizationMpcOperationSource.md +11 -0
- package/docs/TokenizationOperationResponse.md +9 -0
- package/docs/TokenizationOperationSourceType.md +12 -0
- package/docs/TokenizationOperationType.md +26 -0
- package/docs/TokenizationPauseEstimateFeeParams.md +11 -0
- package/docs/TokenizationPauseTokenParams.md +9 -0
- package/docs/TokenizationPauseTokenRequest.md +11 -0
- package/docs/TokenizationStatus.md +16 -0
- package/docs/TokenizationToggleAllowlistEstimateFeeParams.md +12 -0
- package/docs/TokenizationTokenDetailInfo.md +19 -0
- package/docs/TokenizationTokenInfo.md +18 -0
- package/docs/TokenizationTokenOperationSource.md +11 -0
- package/docs/TokenizationTokenPermission.md +12 -0
- package/docs/TokenizationTokenPermissionParams.md +15 -0
- package/docs/TokenizationTokenPermissionType.md +22 -0
- package/docs/TokenizationTokenPermissionsResponse.md +10 -0
- package/docs/TokenizationTokenStandard.md +10 -0
- package/docs/TokenizationUnpauseEstimateFeeParams.md +11 -0
- package/docs/TokenizationUnpauseTokenParams.md +9 -0
- package/docs/TokenizationUnpauseTokenRequest.md +11 -0
- package/docs/TokenizationUpdateAddressAction.md +12 -0
- package/docs/TokenizationUpdateAllowlistAddressesEstimateFeeParams.md +13 -0
- package/docs/TokenizationUpdateAllowlistAddressesParams.md +11 -0
- package/docs/TokenizationUpdateAllowlistAddressesParamsAddressesInner.md +10 -0
- package/docs/TokenizationUpdateAllowlistAddressesRequest.md +13 -0
- package/docs/TokenizationUpdateBlocklistAddressesEstimateFeeParams.md +13 -0
- package/docs/TokenizationUpdateBlocklistAddressesParams.md +11 -0
- package/docs/TokenizationUpdateBlocklistAddressesParamsAddressesInner.md +10 -0
- package/docs/TokenizationUpdateBlocklistAddressesRequest.md +13 -0
- package/docs/TokenizationWeb3OperationSource.md +11 -0
- package/docs/TokensEventData.md +5 -3
- package/docs/TopUpAddress.md +1 -1
- package/docs/TransactionEvmEip1559Fee.md +2 -2
- package/docs/TransactionEvmLegacyFee.md +2 -2
- package/docs/TransactionFILFee.md +6 -6
- package/docs/TransactionFee.md +10 -10
- package/docs/TransactionFixedFee.md +2 -2
- package/docs/TransactionRbfSource.md +1 -1
- package/docs/TransactionRequestEvmEip1559Fee.md +1 -1
- package/docs/TransactionRequestEvmLegacyFee.md +1 -1
- package/docs/TransactionRequestFILFee.md +4 -4
- package/docs/TransactionRequestFee.md +6 -6
- package/docs/TransactionRequestFixedFee.md +1 -1
- package/docs/TransactionRequestSOLFee.md +3 -3
- package/docs/TransactionRequestUtxoFee.md +1 -1
- package/docs/TransactionSOLFee.md +6 -6
- package/docs/TransactionSubStatus.md +2 -0
- package/docs/TransactionUtxoFee.md +2 -2
- package/docs/TransactionWebhookEventData.md +5 -3
- package/docs/TransactionsApi.md +0 -106
- package/docs/UtxoFeeRate.md +1 -1
- package/docs/WalletInfoEventData.md +5 -3
- package/docs/WalletsApi.md +55 -0
- package/docs/WebhookEvent.md +1 -1
- package/docs/WebhookEventData.md +7 -3
- package/docs/WebhookEventDataType.md +5 -3
- package/docs/WebhookEventLog.md +1 -1
- package/docs/WebhookEventType.md +8 -0
- package/package.json +1 -1
- package/docs/ListTransactionApprovalDetails200Response.md +0 -9
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _TokenizationERC20TokenParams = _interopRequireDefault(require("./TokenizationERC20TokenParams"));
|
|
9
|
+
var _TokenizationTokenPermissionParams = _interopRequireDefault(require("./TokenizationTokenPermissionParams"));
|
|
10
|
+
var _TokenizationTokenStandard = _interopRequireDefault(require("./TokenizationTokenStandard"));
|
|
11
|
+
var _TokenizationIssueTokenParamsTokenParams;
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
13
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
14
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
15
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
16
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
17
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
18
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
19
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
20
|
+
* Cobo Wallet as a Service 2.0
|
|
21
|
+
*
|
|
22
|
+
* Contact: help@cobo.com
|
|
23
|
+
*
|
|
24
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
25
|
+
* https://openapi-generator.tech
|
|
26
|
+
* Do not edit the class manually.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
/**
|
|
30
|
+
* The TokenizationIssueTokenParamsTokenParams model module.
|
|
31
|
+
* @module model/TokenizationIssueTokenParamsTokenParams
|
|
32
|
+
*/
|
|
33
|
+
var TokenizationIssueTokenParamsTokenParams = /*#__PURE__*/function () {
|
|
34
|
+
/**
|
|
35
|
+
* Constructs a new <code>TokenizationIssueTokenParamsTokenParams</code>.
|
|
36
|
+
* @alias module:model/TokenizationIssueTokenParamsTokenParams
|
|
37
|
+
* @param {(module:model/TokenizationERC20TokenParams)} instance The actual instance to initialize TokenizationIssueTokenParamsTokenParams.
|
|
38
|
+
*/
|
|
39
|
+
function TokenizationIssueTokenParamsTokenParams() {
|
|
40
|
+
var instance = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
|
|
41
|
+
_classCallCheck(this, TokenizationIssueTokenParamsTokenParams);
|
|
42
|
+
/**
|
|
43
|
+
* Returns the JSON representation of the actual instance.
|
|
44
|
+
* @return {string}
|
|
45
|
+
*/
|
|
46
|
+
_defineProperty(this, "toJSON", function () {
|
|
47
|
+
return this.getActualInstance();
|
|
48
|
+
});
|
|
49
|
+
if (instance === null) {
|
|
50
|
+
this.actualInstance = null;
|
|
51
|
+
return;
|
|
52
|
+
}
|
|
53
|
+
var match = 0;
|
|
54
|
+
var errorMessages = [];
|
|
55
|
+
var discriminatorValue = instance["standard"];
|
|
56
|
+
if (discriminatorValue) {
|
|
57
|
+
switch (discriminatorValue) {
|
|
58
|
+
case "ERC20":
|
|
59
|
+
this.actualInstance = _TokenizationERC20TokenParams["default"].constructFromObject(instance);
|
|
60
|
+
match++;
|
|
61
|
+
break;
|
|
62
|
+
default:
|
|
63
|
+
errorMessages.push("Unrecognized discriminator value: " + discriminatorValue);
|
|
64
|
+
break;
|
|
65
|
+
}
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
try {
|
|
69
|
+
if (instance instanceof _TokenizationERC20TokenParams["default"]) {
|
|
70
|
+
this.actualInstance = instance;
|
|
71
|
+
} else if (!!_TokenizationERC20TokenParams["default"].validateJSON && _TokenizationERC20TokenParams["default"].validateJSON(instance)) {
|
|
72
|
+
// plain JS object
|
|
73
|
+
// create TokenizationERC20TokenParams from JS object
|
|
74
|
+
this.actualInstance = _TokenizationERC20TokenParams["default"].constructFromObject(instance);
|
|
75
|
+
} else {
|
|
76
|
+
if (_TokenizationERC20TokenParams["default"].constructFromObject(instance)) {
|
|
77
|
+
if (!!_TokenizationERC20TokenParams["default"].constructFromObject(instance).toJSON) {
|
|
78
|
+
if (_TokenizationERC20TokenParams["default"].constructFromObject(instance).toJSON()) {
|
|
79
|
+
this.actualInstance = _TokenizationERC20TokenParams["default"].constructFromObject(instance);
|
|
80
|
+
}
|
|
81
|
+
} else {
|
|
82
|
+
this.actualInstance = _TokenizationERC20TokenParams["default"].constructFromObject(instance);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
match++;
|
|
87
|
+
} catch (err) {
|
|
88
|
+
// json data failed to deserialize into TokenizationERC20TokenParams
|
|
89
|
+
errorMessages.push("Failed to construct TokenizationERC20TokenParams: " + err);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// if (match > 1) {
|
|
93
|
+
// throw new Error("Multiple matches found constructing `TokenizationIssueTokenParamsTokenParams` with oneOf schemas TokenizationERC20TokenParams. Input: " + JSON.stringify(instance));
|
|
94
|
+
// } else
|
|
95
|
+
if (match === 0) {
|
|
96
|
+
// this.actualInstance = null; // clear the actual instance in case there are multiple matches
|
|
97
|
+
// throw new Error("No match found constructing `TokenizationIssueTokenParamsTokenParams` with oneOf schemas TokenizationERC20TokenParams. Details: " +
|
|
98
|
+
// errorMessages.join(", "));
|
|
99
|
+
return;
|
|
100
|
+
} else {// only 1 match
|
|
101
|
+
// the input is valid
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Constructs a <code>TokenizationIssueTokenParamsTokenParams</code> from a plain JavaScript object, optionally creating a new instance.
|
|
107
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
108
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
109
|
+
* @param {module:model/TokenizationIssueTokenParamsTokenParams} obj Optional instance to populate.
|
|
110
|
+
* @return {module:model/TokenizationIssueTokenParamsTokenParams} The populated <code>TokenizationIssueTokenParamsTokenParams</code> instance.
|
|
111
|
+
*/
|
|
112
|
+
return _createClass(TokenizationIssueTokenParamsTokenParams, [{
|
|
113
|
+
key: "getActualInstance",
|
|
114
|
+
value:
|
|
115
|
+
/**
|
|
116
|
+
* Gets the actual instance, which can be <code>TokenizationERC20TokenParams</code>.
|
|
117
|
+
* @return {(module:model/TokenizationERC20TokenParams)} The actual instance.
|
|
118
|
+
*/
|
|
119
|
+
function getActualInstance() {
|
|
120
|
+
return this.actualInstance;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Sets the actual instance, which can be <code>TokenizationERC20TokenParams</code>.
|
|
125
|
+
* @param {(module:model/TokenizationERC20TokenParams)} obj The actual instance.
|
|
126
|
+
*/
|
|
127
|
+
}, {
|
|
128
|
+
key: "setActualInstance",
|
|
129
|
+
value: function setActualInstance(obj) {
|
|
130
|
+
this.actualInstance = TokenizationIssueTokenParamsTokenParams.constructFromObject(obj).getActualInstance();
|
|
131
|
+
}
|
|
132
|
+
}], [{
|
|
133
|
+
key: "constructFromObject",
|
|
134
|
+
value: function constructFromObject(data, obj) {
|
|
135
|
+
return new TokenizationIssueTokenParamsTokenParams(data);
|
|
136
|
+
}
|
|
137
|
+
}]);
|
|
138
|
+
}();
|
|
139
|
+
/**
|
|
140
|
+
* @member {module:model/TokenizationTokenStandard} standard
|
|
141
|
+
*/
|
|
142
|
+
_TokenizationIssueTokenParamsTokenParams = TokenizationIssueTokenParamsTokenParams;
|
|
143
|
+
/**
|
|
144
|
+
* Create an instance of TokenizationIssueTokenParamsTokenParams from a JSON string.
|
|
145
|
+
* @param {string} json_string JSON string.
|
|
146
|
+
* @return {module:model/TokenizationIssueTokenParamsTokenParams} An instance of TokenizationIssueTokenParamsTokenParams.
|
|
147
|
+
*/
|
|
148
|
+
_defineProperty(TokenizationIssueTokenParamsTokenParams, "fromJSON", function (json_string) {
|
|
149
|
+
return _TokenizationIssueTokenParamsTokenParams.constructFromObject(JSON.parse(json_string));
|
|
150
|
+
});
|
|
151
|
+
TokenizationIssueTokenParamsTokenParams.prototype['standard'] = undefined;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* The name of the token.
|
|
155
|
+
* @member {String} name
|
|
156
|
+
*/
|
|
157
|
+
TokenizationIssueTokenParamsTokenParams.prototype['name'] = undefined;
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* The symbol of the token.
|
|
161
|
+
* @member {String} symbol
|
|
162
|
+
*/
|
|
163
|
+
TokenizationIssueTokenParamsTokenParams.prototype['symbol'] = undefined;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* The number of decimals for the token (0-18).
|
|
167
|
+
* @member {Number} decimals
|
|
168
|
+
*/
|
|
169
|
+
TokenizationIssueTokenParamsTokenParams.prototype['decimals'] = undefined;
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* Whether the allowlist feature is activated for the token. When activated, only addresses in the allowlist can perform token operations.
|
|
173
|
+
* @member {Boolean} allowlist_activated
|
|
174
|
+
* @default false
|
|
175
|
+
*/
|
|
176
|
+
TokenizationIssueTokenParamsTokenParams.prototype['allowlist_activated'] = false;
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* @member {module:model/TokenizationTokenPermissionParams} permissions
|
|
180
|
+
*/
|
|
181
|
+
TokenizationIssueTokenParamsTokenParams.prototype['permissions'] = undefined;
|
|
182
|
+
TokenizationIssueTokenParamsTokenParams.OneOf = ["TokenizationERC20TokenParams"];
|
|
183
|
+
var _default = exports["default"] = TokenizationIssueTokenParamsTokenParams;
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _TokenizationAppInitiator = _interopRequireDefault(require("./TokenizationAppInitiator"));
|
|
9
|
+
var _TokenizationIssueTokenParams = _interopRequireDefault(require("./TokenizationIssueTokenParams"));
|
|
10
|
+
var _TokenizationIssueTokenParamsTokenParams = _interopRequireDefault(require("./TokenizationIssueTokenParamsTokenParams"));
|
|
11
|
+
var _TokenizationTokenOperationSource = _interopRequireDefault(require("./TokenizationTokenOperationSource"));
|
|
12
|
+
var _TransactionRequestFee = _interopRequireDefault(require("./TransactionRequestFee"));
|
|
13
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
14
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
15
|
+
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
16
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
17
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
18
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
19
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
20
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
21
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
22
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
23
|
+
* Cobo Wallet as a Service 2.0
|
|
24
|
+
*
|
|
25
|
+
* Contact: help@cobo.com
|
|
26
|
+
*
|
|
27
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
28
|
+
* https://openapi-generator.tech
|
|
29
|
+
* Do not edit the class manually.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
/**
|
|
33
|
+
* The TokenizationIssuedTokenRequest model module.
|
|
34
|
+
* @module model/TokenizationIssuedTokenRequest
|
|
35
|
+
*/
|
|
36
|
+
var TokenizationIssuedTokenRequest = /*#__PURE__*/function () {
|
|
37
|
+
/**
|
|
38
|
+
* Constructs a new <code>TokenizationIssuedTokenRequest</code>.
|
|
39
|
+
* @alias module:model/TokenizationIssuedTokenRequest
|
|
40
|
+
* @implements module:model/TokenizationIssueTokenParams
|
|
41
|
+
* @implements module:model/TokenizationAppInitiator
|
|
42
|
+
* @param chain_id {String} The chain ID where the token will be issued.
|
|
43
|
+
* @param source {module:model/TokenizationTokenOperationSource}
|
|
44
|
+
* @param token_params {module:model/TokenizationIssueTokenParamsTokenParams}
|
|
45
|
+
* @param fee {module:model/TransactionRequestFee}
|
|
46
|
+
*/
|
|
47
|
+
function TokenizationIssuedTokenRequest(chain_id, source, token_params, fee) {
|
|
48
|
+
_classCallCheck(this, TokenizationIssuedTokenRequest);
|
|
49
|
+
_TokenizationIssueTokenParams["default"].initialize(this, chain_id, source, token_params);
|
|
50
|
+
_TokenizationAppInitiator["default"].initialize(this);
|
|
51
|
+
TokenizationIssuedTokenRequest.initialize(this, chain_id, source, token_params, fee);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Initializes the fields of this object.
|
|
56
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
57
|
+
* Only for internal use.
|
|
58
|
+
*/
|
|
59
|
+
return _createClass(TokenizationIssuedTokenRequest, null, [{
|
|
60
|
+
key: "initialize",
|
|
61
|
+
value: function initialize(obj, chain_id, source, token_params, fee) {
|
|
62
|
+
obj['chain_id'] = chain_id;
|
|
63
|
+
obj['source'] = source;
|
|
64
|
+
obj['token_params'] = token_params;
|
|
65
|
+
obj['fee'] = fee;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Constructs a <code>TokenizationIssuedTokenRequest</code> from a plain JavaScript object, optionally creating a new instance.
|
|
70
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
71
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
72
|
+
* @param {module:model/TokenizationIssuedTokenRequest} obj Optional instance to populate.
|
|
73
|
+
* @return {module:model/TokenizationIssuedTokenRequest} The populated <code>TokenizationIssuedTokenRequest</code> instance.
|
|
74
|
+
*/
|
|
75
|
+
}, {
|
|
76
|
+
key: "constructFromObject",
|
|
77
|
+
value: function constructFromObject(data, obj) {
|
|
78
|
+
if (data) {
|
|
79
|
+
obj = obj || new TokenizationIssuedTokenRequest();
|
|
80
|
+
_TokenizationIssueTokenParams["default"].constructFromObject(data, obj);
|
|
81
|
+
_TokenizationAppInitiator["default"].constructFromObject(data, obj);
|
|
82
|
+
if (data.hasOwnProperty('chain_id')) {
|
|
83
|
+
obj['chain_id'] = _ApiClient["default"].convertToType(data['chain_id'], 'String');
|
|
84
|
+
}
|
|
85
|
+
if (data.hasOwnProperty('source')) {
|
|
86
|
+
obj['source'] = _TokenizationTokenOperationSource["default"].constructFromObject(data['source']);
|
|
87
|
+
}
|
|
88
|
+
if (data.hasOwnProperty('token_params')) {
|
|
89
|
+
obj['token_params'] = _TokenizationIssueTokenParamsTokenParams["default"].constructFromObject(data['token_params']);
|
|
90
|
+
}
|
|
91
|
+
if (data.hasOwnProperty('app_initiator')) {
|
|
92
|
+
obj['app_initiator'] = _ApiClient["default"].convertToType(data['app_initiator'], 'String');
|
|
93
|
+
}
|
|
94
|
+
if (data.hasOwnProperty('fee')) {
|
|
95
|
+
obj['fee'] = _TransactionRequestFee["default"].constructFromObject(data['fee']);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
return obj;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Validates the JSON data with respect to <code>TokenizationIssuedTokenRequest</code>.
|
|
103
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
104
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>TokenizationIssuedTokenRequest</code>.
|
|
105
|
+
*/
|
|
106
|
+
}, {
|
|
107
|
+
key: "validateJSON",
|
|
108
|
+
value: function validateJSON(data) {
|
|
109
|
+
// check to make sure all required properties are present in the JSON string
|
|
110
|
+
var _iterator = _createForOfIteratorHelper(TokenizationIssuedTokenRequest.RequiredProperties),
|
|
111
|
+
_step;
|
|
112
|
+
try {
|
|
113
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
114
|
+
var property = _step.value;
|
|
115
|
+
if (!data.hasOwnProperty(property)) {
|
|
116
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
// ensure the json data is a string
|
|
120
|
+
} catch (err) {
|
|
121
|
+
_iterator.e(err);
|
|
122
|
+
} finally {
|
|
123
|
+
_iterator.f();
|
|
124
|
+
}
|
|
125
|
+
if (data['chain_id'] && !(typeof data['chain_id'] === 'string' || data['chain_id'] instanceof String)) {
|
|
126
|
+
throw new Error("Expected the field `chain_id` to be a primitive type in the JSON string but got " + data['chain_id']);
|
|
127
|
+
}
|
|
128
|
+
// validate the optional field `source`
|
|
129
|
+
if (data['source']) {
|
|
130
|
+
// data not null
|
|
131
|
+
if (!!_TokenizationTokenOperationSource["default"].validateJSON) {
|
|
132
|
+
_TokenizationTokenOperationSource["default"].validateJSON(data['source']);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
// validate the optional field `token_params`
|
|
136
|
+
if (data['token_params']) {
|
|
137
|
+
// data not null
|
|
138
|
+
if (!!_TokenizationIssueTokenParamsTokenParams["default"].validateJSON) {
|
|
139
|
+
_TokenizationIssueTokenParamsTokenParams["default"].validateJSON(data['token_params']);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
// ensure the json data is a string
|
|
143
|
+
if (data['app_initiator'] && !(typeof data['app_initiator'] === 'string' || data['app_initiator'] instanceof String)) {
|
|
144
|
+
throw new Error("Expected the field `app_initiator` to be a primitive type in the JSON string but got " + data['app_initiator']);
|
|
145
|
+
}
|
|
146
|
+
// validate the optional field `fee`
|
|
147
|
+
if (data['fee']) {
|
|
148
|
+
// data not null
|
|
149
|
+
if (!!_TransactionRequestFee["default"].validateJSON) {
|
|
150
|
+
_TransactionRequestFee["default"].validateJSON(data['fee']);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
return true;
|
|
154
|
+
}
|
|
155
|
+
}]);
|
|
156
|
+
}();
|
|
157
|
+
TokenizationIssuedTokenRequest.RequiredProperties = ["chain_id", "source", "token_params", "fee"];
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* The chain ID where the token will be issued.
|
|
161
|
+
* @member {String} chain_id
|
|
162
|
+
*/
|
|
163
|
+
TokenizationIssuedTokenRequest.prototype['chain_id'] = undefined;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* @member {module:model/TokenizationTokenOperationSource} source
|
|
167
|
+
*/
|
|
168
|
+
TokenizationIssuedTokenRequest.prototype['source'] = undefined;
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* @member {module:model/TokenizationIssueTokenParamsTokenParams} token_params
|
|
172
|
+
*/
|
|
173
|
+
TokenizationIssuedTokenRequest.prototype['token_params'] = undefined;
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* The address of the app initiator.
|
|
177
|
+
* @member {String} app_initiator
|
|
178
|
+
*/
|
|
179
|
+
TokenizationIssuedTokenRequest.prototype['app_initiator'] = undefined;
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* @member {module:model/TransactionRequestFee} fee
|
|
183
|
+
*/
|
|
184
|
+
TokenizationIssuedTokenRequest.prototype['fee'] = undefined;
|
|
185
|
+
|
|
186
|
+
// Implement TokenizationIssueTokenParams interface:
|
|
187
|
+
/**
|
|
188
|
+
* The chain ID where the token will be issued.
|
|
189
|
+
* @member {String} chain_id
|
|
190
|
+
*/
|
|
191
|
+
_TokenizationIssueTokenParams["default"].prototype['chain_id'] = undefined;
|
|
192
|
+
/**
|
|
193
|
+
* @member {module:model/TokenizationTokenOperationSource} source
|
|
194
|
+
*/
|
|
195
|
+
_TokenizationIssueTokenParams["default"].prototype['source'] = undefined;
|
|
196
|
+
/**
|
|
197
|
+
* @member {module:model/TokenizationIssueTokenParamsTokenParams} token_params
|
|
198
|
+
*/
|
|
199
|
+
_TokenizationIssueTokenParams["default"].prototype['token_params'] = undefined;
|
|
200
|
+
// Implement TokenizationAppInitiator interface:
|
|
201
|
+
/**
|
|
202
|
+
* The initiator of the tokenization activity. If you do not specify this property, the WaaS service will automatically designate the API key as the initiator.
|
|
203
|
+
* @member {String} app_initiator
|
|
204
|
+
*/
|
|
205
|
+
_TokenizationAppInitiator["default"].prototype['app_initiator'] = undefined;
|
|
206
|
+
var _default = exports["default"] = TokenizationIssuedTokenRequest;
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _Pagination = _interopRequireDefault(require("./Pagination"));
|
|
9
|
+
var _TokenizationActivityInfo = _interopRequireDefault(require("./TokenizationActivityInfo"));
|
|
10
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
11
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
12
|
+
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
13
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
14
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
15
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
16
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
17
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
18
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
19
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
20
|
+
* Cobo Wallet as a Service 2.0
|
|
21
|
+
*
|
|
22
|
+
* Contact: help@cobo.com
|
|
23
|
+
*
|
|
24
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
25
|
+
* https://openapi-generator.tech
|
|
26
|
+
* Do not edit the class manually.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
/**
|
|
30
|
+
* The TokenizationListActivitiesResponse model module.
|
|
31
|
+
* @module model/TokenizationListActivitiesResponse
|
|
32
|
+
*/
|
|
33
|
+
var TokenizationListActivitiesResponse = /*#__PURE__*/function () {
|
|
34
|
+
/**
|
|
35
|
+
* Constructs a new <code>TokenizationListActivitiesResponse</code>.
|
|
36
|
+
* @alias module:model/TokenizationListActivitiesResponse
|
|
37
|
+
* @param data {Array.<module:model/TokenizationActivityInfo>} The list of tokenization activities.
|
|
38
|
+
* @param pagination {module:model/Pagination}
|
|
39
|
+
*/
|
|
40
|
+
function TokenizationListActivitiesResponse(data, pagination) {
|
|
41
|
+
_classCallCheck(this, TokenizationListActivitiesResponse);
|
|
42
|
+
TokenizationListActivitiesResponse.initialize(this, data, pagination);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Initializes the fields of this object.
|
|
47
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
48
|
+
* Only for internal use.
|
|
49
|
+
*/
|
|
50
|
+
return _createClass(TokenizationListActivitiesResponse, null, [{
|
|
51
|
+
key: "initialize",
|
|
52
|
+
value: function initialize(obj, data, pagination) {
|
|
53
|
+
obj['data'] = data;
|
|
54
|
+
obj['pagination'] = pagination;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Constructs a <code>TokenizationListActivitiesResponse</code> from a plain JavaScript object, optionally creating a new instance.
|
|
59
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
60
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
61
|
+
* @param {module:model/TokenizationListActivitiesResponse} obj Optional instance to populate.
|
|
62
|
+
* @return {module:model/TokenizationListActivitiesResponse} The populated <code>TokenizationListActivitiesResponse</code> instance.
|
|
63
|
+
*/
|
|
64
|
+
}, {
|
|
65
|
+
key: "constructFromObject",
|
|
66
|
+
value: function constructFromObject(data, obj) {
|
|
67
|
+
if (data) {
|
|
68
|
+
obj = obj || new TokenizationListActivitiesResponse();
|
|
69
|
+
if (data.hasOwnProperty('data')) {
|
|
70
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], [_TokenizationActivityInfo["default"]]);
|
|
71
|
+
}
|
|
72
|
+
if (data.hasOwnProperty('pagination')) {
|
|
73
|
+
obj['pagination'] = _Pagination["default"].constructFromObject(data['pagination']);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
return obj;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Validates the JSON data with respect to <code>TokenizationListActivitiesResponse</code>.
|
|
81
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
82
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>TokenizationListActivitiesResponse</code>.
|
|
83
|
+
*/
|
|
84
|
+
}, {
|
|
85
|
+
key: "validateJSON",
|
|
86
|
+
value: function validateJSON(data) {
|
|
87
|
+
// check to make sure all required properties are present in the JSON string
|
|
88
|
+
var _iterator = _createForOfIteratorHelper(TokenizationListActivitiesResponse.RequiredProperties),
|
|
89
|
+
_step;
|
|
90
|
+
try {
|
|
91
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
92
|
+
var property = _step.value;
|
|
93
|
+
if (!data.hasOwnProperty(property)) {
|
|
94
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
} catch (err) {
|
|
98
|
+
_iterator.e(err);
|
|
99
|
+
} finally {
|
|
100
|
+
_iterator.f();
|
|
101
|
+
}
|
|
102
|
+
if (data['data']) {
|
|
103
|
+
// data not null
|
|
104
|
+
// ensure the json data is an array
|
|
105
|
+
if (!Array.isArray(data['data'])) {
|
|
106
|
+
throw new Error("Expected the field `data` to be an array in the JSON data but got " + data['data']);
|
|
107
|
+
}
|
|
108
|
+
// validate the optional field `data` (array)
|
|
109
|
+
var _iterator2 = _createForOfIteratorHelper(data['data']),
|
|
110
|
+
_step2;
|
|
111
|
+
try {
|
|
112
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
113
|
+
var item = _step2.value;
|
|
114
|
+
_TokenizationActivityInfo["default"].validateJSON(item);
|
|
115
|
+
}
|
|
116
|
+
} catch (err) {
|
|
117
|
+
_iterator2.e(err);
|
|
118
|
+
} finally {
|
|
119
|
+
_iterator2.f();
|
|
120
|
+
}
|
|
121
|
+
;
|
|
122
|
+
}
|
|
123
|
+
// validate the optional field `pagination`
|
|
124
|
+
if (data['pagination']) {
|
|
125
|
+
// data not null
|
|
126
|
+
if (!!_Pagination["default"].validateJSON) {
|
|
127
|
+
_Pagination["default"].validateJSON(data['pagination']);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
return true;
|
|
131
|
+
}
|
|
132
|
+
}]);
|
|
133
|
+
}();
|
|
134
|
+
TokenizationListActivitiesResponse.RequiredProperties = ["data", "pagination"];
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* The list of tokenization activities.
|
|
138
|
+
* @member {Array.<module:model/TokenizationActivityInfo>} data
|
|
139
|
+
*/
|
|
140
|
+
TokenizationListActivitiesResponse.prototype['data'] = undefined;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* @member {module:model/Pagination} pagination
|
|
144
|
+
*/
|
|
145
|
+
TokenizationListActivitiesResponse.prototype['pagination'] = undefined;
|
|
146
|
+
var _default = exports["default"] = TokenizationListActivitiesResponse;
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _Pagination = _interopRequireDefault(require("./Pagination"));
|
|
9
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
10
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
|
+
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
12
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
13
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
14
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
15
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
16
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
17
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
18
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
19
|
+
* Cobo Wallet as a Service 2.0
|
|
20
|
+
*
|
|
21
|
+
* Contact: help@cobo.com
|
|
22
|
+
*
|
|
23
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
24
|
+
* https://openapi-generator.tech
|
|
25
|
+
* Do not edit the class manually.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
/**
|
|
29
|
+
* The TokenizationListEnabledChainsResponse model module.
|
|
30
|
+
* @module model/TokenizationListEnabledChainsResponse
|
|
31
|
+
*/
|
|
32
|
+
var TokenizationListEnabledChainsResponse = /*#__PURE__*/function () {
|
|
33
|
+
/**
|
|
34
|
+
* Constructs a new <code>TokenizationListEnabledChainsResponse</code>.
|
|
35
|
+
* @alias module:model/TokenizationListEnabledChainsResponse
|
|
36
|
+
* @param data {Array.<String>} The list of tokenization supported chains.
|
|
37
|
+
* @param pagination {module:model/Pagination}
|
|
38
|
+
*/
|
|
39
|
+
function TokenizationListEnabledChainsResponse(data, pagination) {
|
|
40
|
+
_classCallCheck(this, TokenizationListEnabledChainsResponse);
|
|
41
|
+
TokenizationListEnabledChainsResponse.initialize(this, data, pagination);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Initializes the fields of this object.
|
|
46
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
47
|
+
* Only for internal use.
|
|
48
|
+
*/
|
|
49
|
+
return _createClass(TokenizationListEnabledChainsResponse, null, [{
|
|
50
|
+
key: "initialize",
|
|
51
|
+
value: function initialize(obj, data, pagination) {
|
|
52
|
+
obj['data'] = data;
|
|
53
|
+
obj['pagination'] = pagination;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Constructs a <code>TokenizationListEnabledChainsResponse</code> from a plain JavaScript object, optionally creating a new instance.
|
|
58
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
59
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
60
|
+
* @param {module:model/TokenizationListEnabledChainsResponse} obj Optional instance to populate.
|
|
61
|
+
* @return {module:model/TokenizationListEnabledChainsResponse} The populated <code>TokenizationListEnabledChainsResponse</code> instance.
|
|
62
|
+
*/
|
|
63
|
+
}, {
|
|
64
|
+
key: "constructFromObject",
|
|
65
|
+
value: function constructFromObject(data, obj) {
|
|
66
|
+
if (data) {
|
|
67
|
+
obj = obj || new TokenizationListEnabledChainsResponse();
|
|
68
|
+
if (data.hasOwnProperty('data')) {
|
|
69
|
+
obj['data'] = _ApiClient["default"].convertToType(data['data'], ['String']);
|
|
70
|
+
}
|
|
71
|
+
if (data.hasOwnProperty('pagination')) {
|
|
72
|
+
obj['pagination'] = _Pagination["default"].constructFromObject(data['pagination']);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
return obj;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Validates the JSON data with respect to <code>TokenizationListEnabledChainsResponse</code>.
|
|
80
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
81
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>TokenizationListEnabledChainsResponse</code>.
|
|
82
|
+
*/
|
|
83
|
+
}, {
|
|
84
|
+
key: "validateJSON",
|
|
85
|
+
value: function validateJSON(data) {
|
|
86
|
+
// check to make sure all required properties are present in the JSON string
|
|
87
|
+
var _iterator = _createForOfIteratorHelper(TokenizationListEnabledChainsResponse.RequiredProperties),
|
|
88
|
+
_step;
|
|
89
|
+
try {
|
|
90
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
91
|
+
var property = _step.value;
|
|
92
|
+
if (!data.hasOwnProperty(property)) {
|
|
93
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
// ensure the json data is an array
|
|
97
|
+
} catch (err) {
|
|
98
|
+
_iterator.e(err);
|
|
99
|
+
} finally {
|
|
100
|
+
_iterator.f();
|
|
101
|
+
}
|
|
102
|
+
if (!Array.isArray(data['data'])) {
|
|
103
|
+
throw new Error("Expected the field `data` to be an array in the JSON data but got " + data['data']);
|
|
104
|
+
}
|
|
105
|
+
// validate the optional field `pagination`
|
|
106
|
+
if (data['pagination']) {
|
|
107
|
+
// data not null
|
|
108
|
+
if (!!_Pagination["default"].validateJSON) {
|
|
109
|
+
_Pagination["default"].validateJSON(data['pagination']);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
return true;
|
|
113
|
+
}
|
|
114
|
+
}]);
|
|
115
|
+
}();
|
|
116
|
+
TokenizationListEnabledChainsResponse.RequiredProperties = ["data", "pagination"];
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* The list of tokenization supported chains.
|
|
120
|
+
* @member {Array.<String>} data
|
|
121
|
+
*/
|
|
122
|
+
TokenizationListEnabledChainsResponse.prototype['data'] = undefined;
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* @member {module:model/Pagination} pagination
|
|
126
|
+
*/
|
|
127
|
+
TokenizationListEnabledChainsResponse.prototype['pagination'] = undefined;
|
|
128
|
+
var _default = exports["default"] = TokenizationListEnabledChainsResponse;
|