@cobo/cobo-waas2 1.23.0 → 1.24.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.
Files changed (171) hide show
  1. package/README.md +45 -6
  2. package/dist/ApiClient.js +1 -1
  3. package/dist/api/AddressBooksApi.js +6 -6
  4. package/dist/api/FeeStationApi.js +47 -4
  5. package/dist/api/PaymentApi.js +194 -47
  6. package/dist/api/SwapsApi.js +374 -0
  7. package/dist/api/TransactionsApi.js +4 -4
  8. package/dist/index.js +224 -14
  9. package/dist/model/AddressInfo.js +13 -0
  10. package/dist/model/AddressesEventDataAllOfAddresses.js +18 -0
  11. package/dist/model/BridgingFee.js +136 -0
  12. package/dist/model/CommissionFee.js +110 -0
  13. package/dist/model/ContractCallDestination.js +48 -8
  14. package/dist/model/ContractCallDestinationType.js +5 -0
  15. package/dist/model/CreateMerchantRequest.js +13 -6
  16. package/dist/model/CreatePaymentOrderRequest.js +14 -1
  17. package/dist/model/CreateSettlement.js +2 -2
  18. package/dist/model/CreateSettlementRequestRequest.js +39 -0
  19. package/dist/model/CreateSwapActivityRequest.js +193 -0
  20. package/dist/model/CustodialTransferDestination.js +1 -1
  21. package/dist/model/EstimateContractCallFeeParams.js +1 -1
  22. package/dist/model/EstimateFeeParams.js +1 -1
  23. package/dist/model/EstimateTransferFeeParams.js +1 -1
  24. package/dist/model/EstimatedEvmEip1559Fee.js +1 -1
  25. package/dist/model/EstimatedEvmLegacyFee.js +1 -1
  26. package/dist/model/EstimatedFILFee.js +1 -1
  27. package/dist/model/EstimatedFixedFee.js +1 -1
  28. package/dist/model/EstimatedSOLFee.js +1 -1
  29. package/dist/model/EstimatedUtxoFee.js +1 -1
  30. package/dist/model/FeeStationCheckFeeStationUsage.js +186 -0
  31. package/dist/model/FeeStationCheckFeeStationUsageResponse.js +200 -0
  32. package/dist/model/FeeStationGasStationType.js +61 -0
  33. package/dist/model/ListSwapActivities200Response.js +123 -0
  34. package/dist/model/ListSwapEnabledTokens200Response.js +123 -0
  35. package/dist/model/ListTopUpPayerAccounts200Response.js +123 -0
  36. package/dist/model/Merchant.js +9 -0
  37. package/dist/model/MerchantBalance.js +3 -3
  38. package/dist/model/MessageSignDestination.js +8 -70
  39. package/dist/model/OtcFee.js +123 -0
  40. package/dist/model/PaymentEstimateFee.js +125 -0
  41. package/dist/model/PaymentEstimateFee201Response.js +107 -0
  42. package/dist/model/{RawMessageSignDestination.js → PaymentEstimateFeeRequest.js} +51 -37
  43. package/dist/model/PaymentEstimatedFee.js +173 -0
  44. package/dist/model/PaymentFeeType.js +71 -0
  45. package/dist/model/PaymentRefundEventData.js +22 -2
  46. package/dist/model/PaymentSettlementEvent.js +62 -6
  47. package/dist/model/PspBalance.js +3 -3
  48. package/dist/model/Refund.js +17 -1
  49. package/dist/model/SettleRequestStatus.js +5 -0
  50. package/dist/model/Settlement.js +45 -3
  51. package/dist/model/SettlementDetail.js +33 -1
  52. package/dist/model/SettlementInfo.js +7 -7
  53. package/dist/model/SolContractCallAddressLookupTableAccount.js +126 -0
  54. package/dist/model/SolContractCallDestination.js +30 -0
  55. package/dist/model/StellarContractCallContractParam.js +164 -0
  56. package/dist/model/StellarContractCallContractType.js +56 -0
  57. package/dist/model/StellarContractCallDestination.js +125 -0
  58. package/dist/model/StellarContractCallTrustLineOperationType.js +56 -0
  59. package/dist/model/StellarContractCallTrustLineParam.js +133 -0
  60. package/dist/model/SupportedToken.js +9 -0
  61. package/dist/model/SwapActivity.js +9 -9
  62. package/dist/model/SwapActivityApprovers.js +1 -1
  63. package/dist/model/SwapActivityDetail.js +34 -18
  64. package/dist/model/SwapActivitySigners.js +2 -2
  65. package/dist/model/SwapActivityTimeline.js +5 -5
  66. package/dist/model/SwapEstimateFee.js +147 -0
  67. package/dist/model/SwapQuote.js +18 -31
  68. package/dist/model/SwapReceivingTransaction.js +133 -0
  69. package/dist/model/SwapToken.js +9 -9
  70. package/dist/model/TransactionCoboCategory.js +5 -0
  71. package/dist/model/TransactionDestination.js +48 -8
  72. package/dist/model/TransactionDestinationType.js +5 -0
  73. package/dist/model/TransactionEvmEip1559Fee.js +1 -1
  74. package/dist/model/TransactionEvmLegacyFee.js +1 -1
  75. package/dist/model/TransactionFILFee.js +1 -1
  76. package/dist/model/TransactionFixedFee.js +1 -1
  77. package/dist/model/TransactionFuelingInfo.js +13 -0
  78. package/dist/model/TransactionRequestEvmEip1559Fee.js +1 -1
  79. package/dist/model/TransactionRequestEvmLegacyFee.js +1 -1
  80. package/dist/model/TransactionRequestFILFee.js +1 -1
  81. package/dist/model/TransactionRequestSOLFee.js +1 -1
  82. package/dist/model/TransactionRequestUtxoFee.js +1 -1
  83. package/dist/model/TransactionSOLFee.js +1 -1
  84. package/dist/model/TransactionSolContractAddressLookupTableAccount.js +126 -0
  85. package/dist/model/TransactionSolContractDestination.js +30 -0
  86. package/dist/model/TransactionStellarContractParam.js +164 -0
  87. package/dist/model/TransactionStellarContractType.js +56 -0
  88. package/dist/model/{BTCEIP191MessageSignDestination.js → TransactionStellarDestination.js} +38 -35
  89. package/dist/model/TransactionStellarTrustLineOperationType.js +56 -0
  90. package/dist/model/TransactionStellarTrustLineParam.js +133 -0
  91. package/dist/model/TransactionUtxoFee.js +1 -1
  92. package/dist/model/UpdateBankAccountByIdRequest.js +108 -0
  93. package/dist/model/UpdateTopUpAddress.js +4 -6
  94. package/dist/model/WalletSetup.js +66 -0
  95. package/dist/model/WebhookEventData.js +19 -1
  96. package/docs/AddressBooksApi.md +3 -3
  97. package/docs/AddressInfo.md +1 -0
  98. package/docs/AddressesEventDataAllOfAddresses.md +1 -0
  99. package/docs/BridgingFee.md +11 -0
  100. package/docs/CommissionFee.md +9 -0
  101. package/docs/ContractCallDestination.md +2 -0
  102. package/docs/ContractCallDestinationType.md +2 -0
  103. package/docs/CreateMerchantRequest.md +2 -1
  104. package/docs/CreatePaymentOrderRequest.md +2 -1
  105. package/docs/CreateSettlement.md +2 -2
  106. package/docs/CreateSettlementRequestRequest.md +3 -0
  107. package/docs/CreateSwapActivityRequest.md +15 -0
  108. package/docs/EstimateContractCallFeeParams.md +1 -1
  109. package/docs/EstimateFeeParams.md +1 -1
  110. package/docs/EstimateTransferFeeParams.md +1 -1
  111. package/docs/FeeStationApi.md +53 -0
  112. package/docs/FeeStationCheckFeeStationUsage.md +14 -0
  113. package/docs/FeeStationCheckFeeStationUsageResponse.md +16 -0
  114. package/docs/FeeStationGasStationType.md +12 -0
  115. package/docs/ListSwapActivities200Response.md +10 -0
  116. package/docs/ListSwapEnabledTokens200Response.md +10 -0
  117. package/docs/ListTopUpPayerAccounts200Response.md +10 -0
  118. package/docs/Merchant.md +1 -0
  119. package/docs/MerchantBalance.md +3 -3
  120. package/docs/MessageSignDestination.md +0 -1
  121. package/docs/OtcFee.md +10 -0
  122. package/docs/PaymentApi.md +196 -21
  123. package/docs/PaymentEstimateFee.md +10 -0
  124. package/docs/PaymentEstimateFee201Response.md +9 -0
  125. package/docs/PaymentEstimateFeeRequest.md +10 -0
  126. package/docs/PaymentEstimatedFee.md +13 -0
  127. package/docs/PaymentFeeType.md +16 -0
  128. package/docs/PaymentRefundEventData.md +2 -1
  129. package/docs/PaymentSettlementEvent.md +6 -3
  130. package/docs/PspBalance.md +3 -3
  131. package/docs/Refund.md +2 -1
  132. package/docs/SettleRequestStatus.md +2 -0
  133. package/docs/Settlement.md +6 -3
  134. package/docs/SettlementDetail.md +3 -1
  135. package/docs/SettlementInfo.md +6 -6
  136. package/docs/SolContractCallAddressLookupTableAccount.md +10 -0
  137. package/docs/SolContractCallDestination.md +1 -0
  138. package/docs/StellarContractCallContractParam.md +11 -0
  139. package/docs/StellarContractCallContractType.md +10 -0
  140. package/docs/StellarContractCallDestination.md +10 -0
  141. package/docs/StellarContractCallTrustLineOperationType.md +10 -0
  142. package/docs/StellarContractCallTrustLineParam.md +11 -0
  143. package/docs/SupportedToken.md +1 -0
  144. package/docs/SwapActivity.md +9 -9
  145. package/docs/SwapActivityDetail.md +10 -9
  146. package/docs/SwapActivitySigners.md +1 -1
  147. package/docs/SwapActivityTimeline.md +3 -3
  148. package/docs/SwapEstimateFee.md +12 -0
  149. package/docs/SwapQuote.md +10 -11
  150. package/docs/SwapReceivingTransaction.md +11 -0
  151. package/docs/SwapToken.md +6 -6
  152. package/docs/SwapsApi.md +356 -0
  153. package/docs/TransactionCoboCategory.md +2 -0
  154. package/docs/TransactionDestination.md +2 -0
  155. package/docs/TransactionDestinationType.md +2 -0
  156. package/docs/TransactionFuelingInfo.md +1 -0
  157. package/docs/TransactionSolContractAddressLookupTableAccount.md +10 -0
  158. package/docs/TransactionSolContractDestination.md +1 -0
  159. package/docs/TransactionStellarContractParam.md +11 -0
  160. package/docs/TransactionStellarContractType.md +10 -0
  161. package/docs/TransactionStellarDestination.md +10 -0
  162. package/docs/TransactionStellarTrustLineOperationType.md +10 -0
  163. package/docs/TransactionStellarTrustLineParam.md +11 -0
  164. package/docs/TransactionsApi.md +2 -2
  165. package/docs/UpdateBankAccountByIdRequest.md +9 -0
  166. package/docs/UpdateTopUpAddress.md +1 -1
  167. package/docs/WalletSetup.md +14 -0
  168. package/docs/WebhookEventData.md +4 -1
  169. package/package.json +1 -1
  170. package/docs/BTCEIP191MessageSignDestination.md +0 -10
  171. package/docs/RawMessageSignDestination.md +0 -10
@@ -55,6 +55,11 @@ var TransactionDestinationType = exports["default"] = /*#__PURE__*/function () {
55
55
  * @const
56
56
  */
57
57
  _defineProperty(this, "SOL_Contract", "SOL_Contract");
58
+ /**
59
+ * value: "STELLAR_Contract"
60
+ * @const
61
+ */
62
+ _defineProperty(this, "STELLAR_Contract", "STELLAR_Contract");
58
63
  /**
59
64
  * value: "COSMOS_Contract"
60
65
  * @const
@@ -34,7 +34,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
34
34
  var TransactionEvmEip1559Fee = /*#__PURE__*/function () {
35
35
  /**
36
36
  * Constructs a new <code>TransactionEvmEip1559Fee</code>.
37
- * The transaction fee actually charged by the chain that uses the EIP-1559 fee model. The transaction fee is calculated by multiplying the gas price by the used gas units. This can be expressed as: Transaction fee &#x3D; gas price * used gas units. Switch between the tabs to display the properties for different transaction fee models.
37
+ * The transaction fee actually charged by the chain that uses the EIP-1559 fee model. For more information about the EIP-1559 fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). Switch between the tabs to display the properties for different transaction fee models.
38
38
  * @alias module:model/TransactionEvmEip1559Fee
39
39
  * @implements module:model/EvmEip1559FeeBasePrice
40
40
  * @implements module:model/FeeGasLimit
@@ -34,7 +34,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
34
34
  var TransactionEvmLegacyFee = /*#__PURE__*/function () {
35
35
  /**
36
36
  * Constructs a new <code>TransactionEvmLegacyFee</code>.
37
- * The transaction fee actually charged by the chain that uses the legacy fee model. The transaction fee is calculated by multiplying the gas price by the used gas. This can be expressed as: Transaction fee &#x3D; gas price * used gas units. Switch between the tabs to display the properties for different transaction fee models.
37
+ * The transaction fee actually charged by the chain that uses the legacy fee model. For more information about the Legacy fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). Switch between the tabs to display the properties for different transaction fee models.
38
38
  * @alias module:model/TransactionEvmLegacyFee
39
39
  * @implements module:model/EvmLegacyFeeBasePrice
40
40
  * @implements module:model/FeeGasLimit
@@ -34,7 +34,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
34
34
  var TransactionFILFee = /*#__PURE__*/function () {
35
35
  /**
36
36
  * Constructs a new <code>TransactionFILFee</code>.
37
- * The transaction fee actually charged by the chain that uses the Filecoin fee model. In this model, the fee is calculated as: fee &#x3D; base fee * gas used + gas premium * gas limit. For more details, refer to [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). Switch between the tabs to display the properties for different transaction fee models.
37
+ * The transaction fee actually charged by the chain that uses the Filecoin fee model. For more details about the Filecoin fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). Switch between the tabs to display the properties for different transaction fee models.
38
38
  * @alias module:model/TransactionFILFee
39
39
  * @implements module:model/FILBase
40
40
  * @implements module:model/FILPrice
@@ -33,7 +33,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
33
33
  var TransactionFixedFee = /*#__PURE__*/function () {
34
34
  /**
35
35
  * Constructs a new <code>TransactionFixedFee</code>.
36
- * The transaction fee actually charged by the chain that uses the fixed fee model. Switch between the tabs to display the properties for different transaction fee models.
36
+ * The transaction fee actually charged by the chain that uses the fixed fee model. For more information about the fixed fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). Switch between the tabs to display the properties for different transaction fee models.
37
37
  * @alias module:model/TransactionFixedFee
38
38
  * @implements module:model/MaxFeeAmount
39
39
  * @param fee_type {module:model/FeeType}
@@ -63,6 +63,9 @@ var TransactionFuelingInfo = /*#__PURE__*/function () {
63
63
  if (data.hasOwnProperty('transaction_id')) {
64
64
  obj['transaction_id'] = _ApiClient["default"].convertToType(data['transaction_id'], 'String');
65
65
  }
66
+ if (data.hasOwnProperty('main_transaction_id')) {
67
+ obj['main_transaction_id'] = _ApiClient["default"].convertToType(data['main_transaction_id'], 'String');
68
+ }
66
69
  }
67
70
  return obj;
68
71
  }
@@ -83,6 +86,10 @@ var TransactionFuelingInfo = /*#__PURE__*/function () {
83
86
  if (data['transaction_id'] && !(typeof data['transaction_id'] === 'string' || data['transaction_id'] instanceof String)) {
84
87
  throw new Error("Expected the field `transaction_id` to be a primitive type in the JSON string but got " + data['transaction_id']);
85
88
  }
89
+ // ensure the json data is a string
90
+ if (data['main_transaction_id'] && !(typeof data['main_transaction_id'] === 'string' || data['main_transaction_id'] instanceof String)) {
91
+ throw new Error("Expected the field `main_transaction_id` to be a primitive type in the JSON string but got " + data['main_transaction_id']);
92
+ }
86
93
  return true;
87
94
  }
88
95
  }]);
@@ -98,4 +105,10 @@ TransactionFuelingInfo.prototype['request_id'] = undefined;
98
105
  * @member {String} transaction_id
99
106
  */
100
107
  TransactionFuelingInfo.prototype['transaction_id'] = undefined;
108
+
109
+ /**
110
+ * The UUID of the parent (main) transaction that this record is associated with. Set only when the current record is a gas/fee transaction initiated by Fee Station; omit for main transactions.
111
+ * @member {String} main_transaction_id
112
+ */
113
+ TransactionFuelingInfo.prototype['main_transaction_id'] = undefined;
101
114
  var _default = exports["default"] = TransactionFuelingInfo;
@@ -33,7 +33,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
33
33
  var TransactionRequestEvmEip1559Fee = /*#__PURE__*/function () {
34
34
  /**
35
35
  * Constructs a new <code>TransactionRequestEvmEip1559Fee</code>.
36
- * The preset properties to limit transaction fee. In the EIP-1559 fee model, the transaction fee is calculated by multiplying the gas price and the gas units used by the transaction. This can be expressed as: Transaction fee &#x3D; gas price * gas units used. For more information about the EIP-1559 fee model, refer to [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify the maximum gas fee per gas unit, maximum priority fee per gas unit, and the gas limit to limit the gas price, priority fee per gas unit, gas units used in the transaction. Switch between the tabs to display the properties for different transaction fee models.
36
+ * The preset properties to limit transaction fee. For more information about the EIP-1559 fee model, refer to [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify the maximum gas fee per gas unit, maximum priority fee per gas unit, and the gas limit to limit the gas price, priority fee per gas unit, gas units used in the transaction. Switch between the tabs to display the properties for different transaction fee models.
37
37
  * @alias module:model/TransactionRequestEvmEip1559Fee
38
38
  * @implements module:model/EvmEip1559FeeBasePrice
39
39
  * @param max_fee_per_gas {String} The maximum gas fee per gas unit used on the chain, in wei.
@@ -33,7 +33,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
33
33
  var TransactionRequestEvmLegacyFee = /*#__PURE__*/function () {
34
34
  /**
35
35
  * Constructs a new <code>TransactionRequestEvmLegacyFee</code>.
36
- * The preset properties to limit transaction fee. In the legacy fee model, the transaction fee is calculated by multiplying the gas price by the gas units used by the transaction. This can be expressed as: Transaction fee &#x3D; (gas price * gas units used). For more information about the legacy fee model, refer to [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify the gas limit to limit the gas units used in the transaction. Switch between the tabs to display the properties for different transaction fee models.
36
+ * The preset properties to limit transaction fee. For more information about the Legacy fee model, refer to [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify the gas limit to limit the gas units used in the transaction. Switch between the tabs to display the properties for different transaction fee models.
37
37
  * @alias module:model/TransactionRequestEvmLegacyFee
38
38
  * @implements module:model/EvmLegacyFeeBasePrice
39
39
  * @param gas_price {String} The gas price, in wei. The gas price represents the amount of ETH that must be paid to validators for processing transactions per gas unit used.
@@ -33,7 +33,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
33
33
  var TransactionRequestFILFee = /*#__PURE__*/function () {
34
34
  /**
35
35
  * Constructs a new <code>TransactionRequestFILFee</code>.
36
- * The preset properties to limit transaction fee. In the Filecoin fee model, the transaction fee is calculated using the minimum of your specified gas fee cap and the sum of the base fee and gas premium, then multiplied by the gas limit. This can be expressed as: Transaction fee &#x3D; min(gas fee cap, base fee + gas premium) * gas limit. For more information about the Filecoin fee model, refer to [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify the gas fee cap, gas premium, and gas limit to control fee behavior and prioritization. Switch between the tabs to display the properties for different transaction fee models.
36
+ * The preset properties to limit transaction fee. For more information about the FIL fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify the gas fee cap, gas premium, and gas limit to control fee behavior and prioritization. Switch between the tabs to display the properties for different transaction fee models.
37
37
  * @alias module:model/TransactionRequestFILFee
38
38
  * @implements module:model/FILPrice
39
39
  * @param gas_premium {String} An optional tip you can include to prioritize your transaction. The gas premium incentivizes miners to include your transaction sooner than those offering only the base fee.
@@ -33,7 +33,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
33
33
  var TransactionRequestSOLFee = /*#__PURE__*/function () {
34
34
  /**
35
35
  * Constructs a new <code>TransactionRequestSOLFee</code>.
36
- * The preset properties to limit transaction fee. In the Solana fee model, the transaction fee is calculated by adding the base fee to the product of the compute unit limit and the compute unit price. This can be expressed as: Transaction fee &#x3D; base fee + (CU limit * CU price). For more information about the Solana fee model, refer to [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify CU price and CU limit to adjust the priority and resource allocation of your transaction. Switch between the tabs to display the properties for different transaction fee models.
36
+ * The preset properties to limit transaction fee. For more information about the SOL fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify CU price and CU limit to adjust the priority and resource allocation of your transaction. Switch between the tabs to display the properties for different transaction fee models.
37
37
  * @alias module:model/TransactionRequestSOLFee
38
38
  * @implements module:model/SOLComputeUnit
39
39
  * @param compute_unit_price {String} The price paid per compute unit. This value determines the priority fee for the transaction, allowing you to increase inclusion probability in congested conditions.
@@ -33,7 +33,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
33
33
  var TransactionRequestUtxoFee = /*#__PURE__*/function () {
34
34
  /**
35
35
  * Constructs a new <code>TransactionRequestUtxoFee</code>.
36
- * The preset properties to limit transaction fee. In the UTXO fee model, the transaction fee is calculated by multiplying the fee rate by the transaction size. This can be expressed as: Transaction fee &#x3D; fee rate * transaction size. For more information about the UTXO fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify the maximum fee amount to limit the transaction fee. The transaction will fail if the transaction fee exceeds the specified maximum fee amount. Switch between the tabs to display the properties for different transaction fee models.
36
+ * The preset properties to limit transaction fee. For more information about the UTXO fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). You can specify the maximum fee amount to limit the transaction fee. The transaction will fail if the transaction fee exceeds the specified maximum fee amount. Switch between the tabs to display the properties for different transaction fee models.
37
37
  * @alias module:model/TransactionRequestUtxoFee
38
38
  * @implements module:model/UtxoFeeBasePrice
39
39
  * @param fee_type {module:model/FeeType}
@@ -34,7 +34,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
34
34
  var TransactionSOLFee = /*#__PURE__*/function () {
35
35
  /**
36
36
  * Constructs a new <code>TransactionSOLFee</code>.
37
- * The transaction fee actually charged by the chain that uses the Solana fee model. In this model, the fee is calculated as: fee &#x3D; base fee + (compute unit price * compute unit limit) + rent (if applicable). For more details, refer to [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). Switch between the tabs to display the properties for different transaction fee models.
37
+ * The transaction fee actually charged by the chain that uses the Solana fee model. For more details about the Solana fee model, see [Fee models](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees#fee-models). Switch between the tabs to display the properties for different transaction fee models.
38
38
  * @alias module:model/TransactionSOLFee
39
39
  * @implements module:model/SOLBase
40
40
  * @implements module:model/SOLComputeUnit
@@ -0,0 +1,126 @@
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
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ 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); }
10
+ 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; } } }; }
11
+ 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; } }
12
+ 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; }
13
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
14
+ 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); } }
15
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
16
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
+ 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); } /**
18
+ * Cobo Wallet as a Service 2.0
19
+ *
20
+ * Contact: help@cobo.com
21
+ *
22
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
23
+ * https://openapi-generator.tech
24
+ * Do not edit the class manually.
25
+ *
26
+ */
27
+ /**
28
+ * The TransactionSolContractAddressLookupTableAccount model module.
29
+ * @module model/TransactionSolContractAddressLookupTableAccount
30
+ */
31
+ var TransactionSolContractAddressLookupTableAccount = /*#__PURE__*/function () {
32
+ /**
33
+ * Constructs a new <code>TransactionSolContractAddressLookupTableAccount</code>.
34
+ * The information about a Solana Address Lookup Table account.
35
+ * @alias module:model/TransactionSolContractAddressLookupTableAccount
36
+ * @param alt_account_key {String} The on-chain public key of the Address Lookup Table (ALT) account, identifying the specific lookup table.
37
+ * @param addresses {Array.<String>} An array of stored account addresses within the lookup table, which can be referenced in transactions by index.
38
+ */
39
+ function TransactionSolContractAddressLookupTableAccount(alt_account_key, addresses) {
40
+ _classCallCheck(this, TransactionSolContractAddressLookupTableAccount);
41
+ TransactionSolContractAddressLookupTableAccount.initialize(this, alt_account_key, addresses);
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(TransactionSolContractAddressLookupTableAccount, null, [{
50
+ key: "initialize",
51
+ value: function initialize(obj, alt_account_key, addresses) {
52
+ obj['alt_account_key'] = alt_account_key;
53
+ obj['addresses'] = addresses;
54
+ }
55
+
56
+ /**
57
+ * Constructs a <code>TransactionSolContractAddressLookupTableAccount</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/TransactionSolContractAddressLookupTableAccount} obj Optional instance to populate.
61
+ * @return {module:model/TransactionSolContractAddressLookupTableAccount} The populated <code>TransactionSolContractAddressLookupTableAccount</code> instance.
62
+ */
63
+ }, {
64
+ key: "constructFromObject",
65
+ value: function constructFromObject(data, obj) {
66
+ if (data) {
67
+ obj = obj || new TransactionSolContractAddressLookupTableAccount();
68
+ if (data.hasOwnProperty('alt_account_key')) {
69
+ obj['alt_account_key'] = _ApiClient["default"].convertToType(data['alt_account_key'], 'String');
70
+ }
71
+ if (data.hasOwnProperty('addresses')) {
72
+ obj['addresses'] = _ApiClient["default"].convertToType(data['addresses'], ['String']);
73
+ }
74
+ }
75
+ return obj;
76
+ }
77
+
78
+ /**
79
+ * Validates the JSON data with respect to <code>TransactionSolContractAddressLookupTableAccount</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>TransactionSolContractAddressLookupTableAccount</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(TransactionSolContractAddressLookupTableAccount.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 a string
97
+ } catch (err) {
98
+ _iterator.e(err);
99
+ } finally {
100
+ _iterator.f();
101
+ }
102
+ if (data['alt_account_key'] && !(typeof data['alt_account_key'] === 'string' || data['alt_account_key'] instanceof String)) {
103
+ throw new Error("Expected the field `alt_account_key` to be a primitive type in the JSON string but got " + data['alt_account_key']);
104
+ }
105
+ // ensure the json data is an array
106
+ if (!Array.isArray(data['addresses'])) {
107
+ throw new Error("Expected the field `addresses` to be an array in the JSON data but got " + data['addresses']);
108
+ }
109
+ return true;
110
+ }
111
+ }]);
112
+ }();
113
+ TransactionSolContractAddressLookupTableAccount.RequiredProperties = ["alt_account_key", "addresses"];
114
+
115
+ /**
116
+ * The on-chain public key of the Address Lookup Table (ALT) account, identifying the specific lookup table.
117
+ * @member {String} alt_account_key
118
+ */
119
+ TransactionSolContractAddressLookupTableAccount.prototype['alt_account_key'] = undefined;
120
+
121
+ /**
122
+ * An array of stored account addresses within the lookup table, which can be referenced in transactions by index.
123
+ * @member {Array.<String>} addresses
124
+ */
125
+ TransactionSolContractAddressLookupTableAccount.prototype['addresses'] = undefined;
126
+ var _default = exports["default"] = TransactionSolContractAddressLookupTableAccount;
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports["default"] = void 0;
7
7
  var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
8
  var _TransactionDestinationType = _interopRequireDefault(require("./TransactionDestinationType"));
9
+ var _TransactionSolContractAddressLookupTableAccount = _interopRequireDefault(require("./TransactionSolContractAddressLookupTableAccount"));
9
10
  var _TransactionSolContractInstruction = _interopRequireDefault(require("./TransactionSolContractInstruction"));
10
11
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
11
12
  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); }
@@ -71,6 +72,9 @@ var TransactionSolContractDestination = /*#__PURE__*/function () {
71
72
  if (data.hasOwnProperty('instructions')) {
72
73
  obj['instructions'] = _ApiClient["default"].convertToType(data['instructions'], [_TransactionSolContractInstruction["default"]]);
73
74
  }
75
+ if (data.hasOwnProperty('address_lookup_table_accounts')) {
76
+ obj['address_lookup_table_accounts'] = _ApiClient["default"].convertToType(data['address_lookup_table_accounts'], [_TransactionSolContractAddressLookupTableAccount["default"]]);
77
+ }
74
78
  }
75
79
  return obj;
76
80
  }
@@ -119,6 +123,27 @@ var TransactionSolContractDestination = /*#__PURE__*/function () {
119
123
  }
120
124
  ;
121
125
  }
126
+ if (data['address_lookup_table_accounts']) {
127
+ // data not null
128
+ // ensure the json data is an array
129
+ if (!Array.isArray(data['address_lookup_table_accounts'])) {
130
+ throw new Error("Expected the field `address_lookup_table_accounts` to be an array in the JSON data but got " + data['address_lookup_table_accounts']);
131
+ }
132
+ // validate the optional field `address_lookup_table_accounts` (array)
133
+ var _iterator3 = _createForOfIteratorHelper(data['address_lookup_table_accounts']),
134
+ _step3;
135
+ try {
136
+ for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {
137
+ var _item = _step3.value;
138
+ _TransactionSolContractAddressLookupTableAccount["default"].validateJSON(_item);
139
+ }
140
+ } catch (err) {
141
+ _iterator3.e(err);
142
+ } finally {
143
+ _iterator3.f();
144
+ }
145
+ ;
146
+ }
122
147
  return true;
123
148
  }
124
149
  }]);
@@ -134,4 +159,9 @@ TransactionSolContractDestination.prototype['destination_type'] = undefined;
134
159
  * @member {Array.<module:model/TransactionSolContractInstruction>} instructions
135
160
  */
136
161
  TransactionSolContractDestination.prototype['instructions'] = undefined;
162
+
163
+ /**
164
+ * @member {Array.<module:model/TransactionSolContractAddressLookupTableAccount>} address_lookup_table_accounts
165
+ */
166
+ TransactionSolContractDestination.prototype['address_lookup_table_accounts'] = undefined;
137
167
  var _default = exports["default"] = TransactionSolContractDestination;
@@ -0,0 +1,164 @@
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 _TransactionStellarContractType = _interopRequireDefault(require("./TransactionStellarContractType"));
9
+ var _TransactionStellarTrustLineOperationType = _interopRequireDefault(require("./TransactionStellarTrustLineOperationType"));
10
+ var _TransactionStellarTrustLineParam = _interopRequireDefault(require("./TransactionStellarTrustLineParam"));
11
+ var _TransactionStellarContractParam;
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 TransactionStellarContractParam model module.
31
+ * @module model/TransactionStellarContractParam
32
+ */
33
+ var TransactionStellarContractParam = /*#__PURE__*/function () {
34
+ /**
35
+ * Constructs a new <code>TransactionStellarContractParam</code>.
36
+ * @alias module:model/TransactionStellarContractParam
37
+ * @param {(module:model/TransactionStellarTrustLineParam)} instance The actual instance to initialize TransactionStellarContractParam.
38
+ */
39
+ function TransactionStellarContractParam() {
40
+ var instance = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
41
+ _classCallCheck(this, TransactionStellarContractParam);
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["contract_type"];
56
+ if (discriminatorValue) {
57
+ switch (discriminatorValue) {
58
+ case "TrustLine":
59
+ this.actualInstance = _TransactionStellarTrustLineParam["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 _TransactionStellarTrustLineParam["default"]) {
70
+ this.actualInstance = instance;
71
+ } else if (!!_TransactionStellarTrustLineParam["default"].validateJSON && _TransactionStellarTrustLineParam["default"].validateJSON(instance)) {
72
+ // plain JS object
73
+ // create TransactionStellarTrustLineParam from JS object
74
+ this.actualInstance = _TransactionStellarTrustLineParam["default"].constructFromObject(instance);
75
+ } else {
76
+ if (_TransactionStellarTrustLineParam["default"].constructFromObject(instance)) {
77
+ if (!!_TransactionStellarTrustLineParam["default"].constructFromObject(instance).toJSON) {
78
+ if (_TransactionStellarTrustLineParam["default"].constructFromObject(instance).toJSON()) {
79
+ this.actualInstance = _TransactionStellarTrustLineParam["default"].constructFromObject(instance);
80
+ }
81
+ } else {
82
+ this.actualInstance = _TransactionStellarTrustLineParam["default"].constructFromObject(instance);
83
+ }
84
+ }
85
+ }
86
+ match++;
87
+ } catch (err) {
88
+ // json data failed to deserialize into TransactionStellarTrustLineParam
89
+ errorMessages.push("Failed to construct TransactionStellarTrustLineParam: " + err);
90
+ }
91
+
92
+ // if (match > 1) {
93
+ // throw new Error("Multiple matches found constructing `TransactionStellarContractParam` with oneOf schemas TransactionStellarTrustLineParam. 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 `TransactionStellarContractParam` with oneOf schemas TransactionStellarTrustLineParam. Details: " +
98
+ // errorMessages.join(", "));
99
+ return;
100
+ } else {// only 1 match
101
+ // the input is valid
102
+ }
103
+ }
104
+
105
+ /**
106
+ * Constructs a <code>TransactionStellarContractParam</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/TransactionStellarContractParam} obj Optional instance to populate.
110
+ * @return {module:model/TransactionStellarContractParam} The populated <code>TransactionStellarContractParam</code> instance.
111
+ */
112
+ return _createClass(TransactionStellarContractParam, [{
113
+ key: "getActualInstance",
114
+ value:
115
+ /**
116
+ * Gets the actual instance, which can be <code>TransactionStellarTrustLineParam</code>.
117
+ * @return {(module:model/TransactionStellarTrustLineParam)} The actual instance.
118
+ */
119
+ function getActualInstance() {
120
+ return this.actualInstance;
121
+ }
122
+
123
+ /**
124
+ * Sets the actual instance, which can be <code>TransactionStellarTrustLineParam</code>.
125
+ * @param {(module:model/TransactionStellarTrustLineParam)} obj The actual instance.
126
+ */
127
+ }, {
128
+ key: "setActualInstance",
129
+ value: function setActualInstance(obj) {
130
+ this.actualInstance = TransactionStellarContractParam.constructFromObject(obj).getActualInstance();
131
+ }
132
+ }], [{
133
+ key: "constructFromObject",
134
+ value: function constructFromObject(data, obj) {
135
+ return new TransactionStellarContractParam(data);
136
+ }
137
+ }]);
138
+ }();
139
+ /**
140
+ * @member {module:model/TransactionStellarContractType} contract_type
141
+ */
142
+ _TransactionStellarContractParam = TransactionStellarContractParam;
143
+ /**
144
+ * Create an instance of TransactionStellarContractParam from a JSON string.
145
+ * @param {string} json_string JSON string.
146
+ * @return {module:model/TransactionStellarContractParam} An instance of TransactionStellarContractParam.
147
+ */
148
+ _defineProperty(TransactionStellarContractParam, "fromJSON", function (json_string) {
149
+ return _TransactionStellarContractParam.constructFromObject(JSON.parse(json_string));
150
+ });
151
+ TransactionStellarContractParam.prototype['contract_type'] = undefined;
152
+
153
+ /**
154
+ * The token ID, which is the unique identifier of a token.
155
+ * @member {String} token_id
156
+ */
157
+ TransactionStellarContractParam.prototype['token_id'] = undefined;
158
+
159
+ /**
160
+ * @member {module:model/TransactionStellarTrustLineOperationType} operation_type
161
+ */
162
+ TransactionStellarContractParam.prototype['operation_type'] = undefined;
163
+ TransactionStellarContractParam.OneOf = ["TransactionStellarTrustLineParam"];
164
+ var _default = exports["default"] = TransactionStellarContractParam;
@@ -0,0 +1,56 @@
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
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ 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); }
10
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
11
+ 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); } }
12
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
13
+ 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; }
14
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
15
+ 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); } /**
16
+ * Cobo Wallet as a Service 2.0
17
+ *
18
+ * Contact: help@cobo.com
19
+ *
20
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
21
+ * https://openapi-generator.tech
22
+ * Do not edit the class manually.
23
+ *
24
+ */
25
+ /**
26
+ * Enum class TransactionStellarContractType.
27
+ * @enum {}
28
+ * @readonly
29
+ */
30
+ var TransactionStellarContractType = exports["default"] = /*#__PURE__*/function () {
31
+ function TransactionStellarContractType() {
32
+ _classCallCheck(this, TransactionStellarContractType);
33
+ /**
34
+ * value: "TrustLine"
35
+ * @const
36
+ */
37
+ _defineProperty(this, "TrustLine", "TrustLine");
38
+ /**
39
+ * value: "unknown_default_open_api"
40
+ * @const
41
+ */
42
+ _defineProperty(this, "unknown_default_open_api", "unknown_default_open_api");
43
+ }
44
+ return _createClass(TransactionStellarContractType, null, [{
45
+ key: "constructFromObject",
46
+ value:
47
+ /**
48
+ * Returns a <code>TransactionStellarContractType</code> enum value from a Javascript object name.
49
+ * @param {Object} data The plain JavaScript object containing the name of the enum value.
50
+ * @return {module:model/TransactionStellarContractType} The enum <code>TransactionStellarContractType</code> value.
51
+ */
52
+ function constructFromObject(object) {
53
+ return object;
54
+ }
55
+ }]);
56
+ }();