@cobo/cobo-waas2 1.28.0 → 1.30.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 (238) hide show
  1. package/README.md +88 -16
  2. package/dist/ApiClient.js +1 -1
  3. package/dist/api/AutoSweepApi.js +2 -2
  4. package/dist/api/ComplianceApi.js +144 -4
  5. package/dist/api/FeeStationApi.js +2 -2
  6. package/dist/api/GraphQLApi.js +85 -0
  7. package/dist/api/PaymentApi.js +1161 -154
  8. package/dist/api/StakingsApi.js +2 -2
  9. package/dist/api/SwapsApi.js +3 -0
  10. package/dist/api/TransactionsApi.js +6 -6
  11. package/dist/api/WalletsApi.js +18 -18
  12. package/dist/index.js +357 -28
  13. package/dist/model/AddressRiskLevel.js +71 -0
  14. package/dist/model/AddressesEventData.js +13 -3
  15. package/dist/model/{AllocationRecord.js → AllocationItem.js} +38 -35
  16. package/dist/model/{AllocationRequest.js → AllocationParam.js} +29 -26
  17. package/dist/model/BalanceUpdateInfoEventData.js +13 -3
  18. package/dist/model/BatchAllocation.js +12 -12
  19. package/dist/model/BatchAllocationDetail.js +15 -17
  20. package/dist/model/BridgingFee.js +3 -3
  21. package/dist/model/ChainsEventData.js +13 -3
  22. package/dist/model/CommissionFee.js +2 -2
  23. package/dist/model/ComplianceDispositionUpdateEventData.js +13 -3
  24. package/dist/model/ComplianceKyaScreeningsUpdateEventData.js +346 -0
  25. package/dist/model/ComplianceKytScreeningsUpdateEventData.js +13 -3
  26. package/dist/model/ContractCallParams.js +3 -3
  27. package/dist/model/CounterpartyWalletAddressDetail.js +2 -2
  28. package/dist/model/CreateBatchAllocationRequest.js +19 -19
  29. package/dist/model/CreateBulkSendRequest.js +167 -0
  30. package/dist/model/CreateBulkSendRequestPayoutParamsInner.js +153 -0
  31. package/dist/model/CreateCounterpartyEntry201Response.js +143 -0
  32. package/dist/model/CreateCounterpartyEntryRequest.js +141 -0
  33. package/dist/model/CreateDestinationEntry201Response.js +172 -0
  34. package/dist/model/CreateDestinationEntryRequest.js +172 -0
  35. package/dist/model/CreateKyaScreeningsBody.js +129 -0
  36. package/dist/model/CreateMerchantRequest.js +1 -1
  37. package/dist/model/CreatePaymentOrderRequest.js +17 -15
  38. package/dist/model/CreatePayoutRequest.js +35 -28
  39. package/dist/model/CreateRefundRequest.js +2 -2
  40. package/dist/model/CreateReportRequest.js +156 -0
  41. package/dist/model/CreateTopUpAddresses.js +139 -0
  42. package/dist/model/CreateTopUpAddresses201Response.js +107 -0
  43. package/dist/model/CreateWalletAddress.js +2 -2
  44. package/dist/model/DeleteCounterpartyById200Response.js +110 -0
  45. package/dist/model/DeleteCounterpartyEntry200Response.js +110 -0
  46. package/dist/model/DeleteDestinationById200Response.js +110 -0
  47. package/dist/model/DeleteDestinationEntry200Response.js +110 -0
  48. package/dist/model/EntryType.js +61 -0
  49. package/dist/model/GetCounterpartyEntry200Response.js +90 -0
  50. package/dist/model/GetDestinationEntry200Response.js +106 -0
  51. package/dist/model/{ListPayoutItems200Response.js → GetReports200Response.js} +22 -22
  52. package/dist/model/KyaRiskAssessment.js +151 -0
  53. package/dist/model/KyaRiskDetail.js +126 -0
  54. package/dist/model/KyaRiskLevel.js +66 -0
  55. package/dist/model/KyaScreeningRequest.js +154 -0
  56. package/dist/model/KyaScreeningResult.js +222 -0
  57. package/dist/model/KyaScreeningResultRiskAssessment.js +171 -0
  58. package/dist/model/KyaScreeningStatus.js +71 -0
  59. package/dist/model/KyaScreeningsEventData.js +174 -0
  60. package/dist/model/LinkDisplayInfo.js +1 -1
  61. package/dist/model/{ListAllocations200Response.js → ListAllocationItems200Response.js} +22 -22
  62. package/dist/model/ListBulkSendItems200Response.js +123 -0
  63. package/dist/model/ListCounterpartyEntries200Response.js +123 -0
  64. package/dist/model/ListDestinationEntries200Response.js +153 -0
  65. package/dist/model/ListKyaScreenings200Response.js +145 -0
  66. package/dist/model/MPCVaultEventData.js +13 -3
  67. package/dist/model/MerchantBalance.js +4 -4
  68. package/dist/model/Order.js +10 -10
  69. package/dist/model/OrderLinkBusinessInfo.js +22 -16
  70. package/dist/model/OrderLinkBusinessInfoCustomExchangeRatesInner.js +2 -4
  71. package/dist/model/OrderLinkBusinessInfoPayableAmountsInner.js +4 -4
  72. package/dist/model/PaymentAddressUpdateEventData.js +13 -3
  73. package/dist/model/PaymentAllocationAmount.js +2 -2
  74. package/dist/model/PaymentBulkSend.js +182 -0
  75. package/dist/model/PaymentBulkSendEvent.js +359 -0
  76. package/dist/model/PaymentBulkSendExecutionMode.js +61 -0
  77. package/dist/model/PaymentBulkSendItem.js +190 -0
  78. package/dist/model/{PaymentPayoutItemStatus.js → PaymentBulkSendItemStatus.js} +11 -11
  79. package/dist/model/PaymentBulkSendItemValidationStatus.js +66 -0
  80. package/dist/model/PaymentBulkSendStatus.js +81 -0
  81. package/dist/model/PaymentEstimateFeeRequest.js +13 -0
  82. package/dist/model/PaymentFeeType.js +15 -0
  83. package/dist/model/PaymentOrderEventData.js +31 -21
  84. package/dist/model/PaymentPayout.js +64 -46
  85. package/dist/model/PaymentPayoutDetail.js +166 -52
  86. package/dist/model/PaymentPayoutEvent.js +152 -80
  87. package/dist/model/PaymentPayoutItem.js +9 -166
  88. package/dist/model/PaymentPayoutParam.js +6 -46
  89. package/dist/model/PaymentPayoutRecipientInfo.js +126 -0
  90. package/dist/model/PaymentPayoutStatus.js +9 -4
  91. package/dist/model/PaymentRefundEventData.js +13 -3
  92. package/dist/model/PaymentSettlementEvent.js +13 -3
  93. package/dist/model/PaymentTransactionEventData.js +13 -3
  94. package/dist/model/PspBalance.js +4 -4
  95. package/dist/model/RefundLinkBusinessInfo.js +1 -1
  96. package/dist/model/Report.js +209 -0
  97. package/dist/model/ReportExportFormat.js +66 -0
  98. package/dist/model/ReportStatus.js +61 -0
  99. package/dist/model/ReportType.js +121 -0
  100. package/dist/model/SuspendedTokenEventData.js +13 -3
  101. package/dist/model/TSSRequestWebhookEventData.js +13 -3
  102. package/dist/model/TokenListingEventData.js +13 -3
  103. package/dist/model/TokensEventData.js +13 -3
  104. package/dist/model/TransactionCoboCategory.js +5 -0
  105. package/dist/model/TransactionExtraType.js +5 -0
  106. package/dist/model/TransactionWalletConnectInfo.js +146 -0
  107. package/dist/model/TransactionWebhookEventData.js +13 -3
  108. package/dist/model/TransferParams.js +2 -2
  109. package/dist/model/UpdateCounterpartyRequest.js +160 -0
  110. package/dist/model/UpdateDestinationEntry200Response.js +90 -0
  111. package/dist/model/UpdateDestinationEntryRequest.js +135 -0
  112. package/dist/model/UpdateDestinationRequest.js +173 -0
  113. package/dist/model/UpdateMerchantByIdRequest.js +1 -1
  114. package/dist/model/WalletAddress.js +20 -2
  115. package/dist/model/WalletInfoEventData.js +13 -3
  116. package/dist/model/WebhookEventData.js +121 -28
  117. package/dist/model/WebhookEventDataType.js +12 -2
  118. package/dist/model/WebhookEventType.js +15 -0
  119. package/docs/AddressRiskLevel.md +16 -0
  120. package/docs/AddressesEventData.md +5 -1
  121. package/docs/AllocationItem.md +15 -0
  122. package/docs/AllocationParam.md +13 -0
  123. package/docs/AutoSweepApi.md +1 -1
  124. package/docs/BalanceUpdateInfoEventData.md +5 -1
  125. package/docs/BatchAllocation.md +2 -2
  126. package/docs/BatchAllocationDetail.md +1 -1
  127. package/docs/BridgingFee.md +2 -2
  128. package/docs/ChainsEventData.md +5 -1
  129. package/docs/CommissionFee.md +1 -1
  130. package/docs/ComplianceApi.md +163 -0
  131. package/docs/ComplianceDispositionUpdateEventData.md +5 -1
  132. package/docs/ComplianceKyaScreeningsUpdateEventData.md +64 -0
  133. package/docs/ComplianceKytScreeningsUpdateEventData.md +5 -1
  134. package/docs/ContractCallParams.md +2 -2
  135. package/docs/CounterpartyWalletAddressDetail.md +1 -1
  136. package/docs/CreateBatchAllocationRequest.md +2 -2
  137. package/docs/CreateBulkSendRequest.md +12 -0
  138. package/docs/CreateBulkSendRequestPayoutParamsInner.md +12 -0
  139. package/docs/CreateCounterpartyEntry201Response.md +10 -0
  140. package/docs/CreateCounterpartyEntryRequest.md +10 -0
  141. package/docs/CreateDestinationEntry201Response.md +11 -0
  142. package/docs/CreateDestinationEntryRequest.md +11 -0
  143. package/docs/CreateKyaScreeningsBody.md +9 -0
  144. package/docs/CreateMerchantRequest.md +1 -1
  145. package/docs/CreatePaymentOrderRequest.md +11 -11
  146. package/docs/CreatePayoutRequest.md +4 -4
  147. package/docs/CreateRefundRequest.md +2 -2
  148. package/docs/CreateReportRequest.md +13 -0
  149. package/docs/CreateTopUpAddresses.md +11 -0
  150. package/docs/CreateTopUpAddresses201Response.md +9 -0
  151. package/docs/CreateWalletAddress.md +1 -1
  152. package/docs/DeleteCounterpartyById200Response.md +9 -0
  153. package/docs/DeleteCounterpartyEntry200Response.md +9 -0
  154. package/docs/DeleteDestinationById200Response.md +9 -0
  155. package/docs/DeleteDestinationEntry200Response.md +9 -0
  156. package/docs/EntryType.md +12 -0
  157. package/docs/FeeStationApi.md +1 -1
  158. package/docs/GetCounterpartyEntry200Response.md +9 -0
  159. package/docs/GetDestinationEntry200Response.md +10 -0
  160. package/docs/{ListAllocations200Response.md → GetReports200Response.md} +2 -2
  161. package/docs/GraphQLApi.md +61 -0
  162. package/docs/KyaRiskAssessment.md +11 -0
  163. package/docs/KyaRiskDetail.md +10 -0
  164. package/docs/KyaRiskLevel.md +14 -0
  165. package/docs/KyaScreeningRequest.md +12 -0
  166. package/docs/KyaScreeningResult.md +17 -0
  167. package/docs/KyaScreeningResultRiskAssessment.md +11 -0
  168. package/docs/KyaScreeningStatus.md +16 -0
  169. package/docs/KyaScreeningsEventData.md +14 -0
  170. package/docs/LinkDisplayInfo.md +1 -1
  171. package/docs/{ListPayoutItems200Response.md → ListAllocationItems200Response.md} +2 -2
  172. package/docs/ListBulkSendItems200Response.md +10 -0
  173. package/docs/ListCounterpartyEntries200Response.md +10 -0
  174. package/docs/ListDestinationEntries200Response.md +11 -0
  175. package/docs/ListKyaScreenings200Response.md +10 -0
  176. package/docs/MPCVaultEventData.md +5 -1
  177. package/docs/MerchantBalance.md +4 -4
  178. package/docs/Order.md +8 -8
  179. package/docs/OrderLinkBusinessInfo.md +11 -11
  180. package/docs/OrderLinkBusinessInfoCustomExchangeRatesInner.md +2 -2
  181. package/docs/OrderLinkBusinessInfoPayableAmountsInner.md +2 -2
  182. package/docs/PaymentAddressUpdateEventData.md +5 -1
  183. package/docs/PaymentAllocationAmount.md +1 -1
  184. package/docs/PaymentApi.md +1296 -198
  185. package/docs/PaymentBulkSend.md +15 -0
  186. package/docs/PaymentBulkSendEvent.md +65 -0
  187. package/docs/PaymentBulkSendExecutionMode.md +12 -0
  188. package/docs/PaymentBulkSendItem.md +15 -0
  189. package/docs/{PaymentPayoutItemStatus.md → PaymentBulkSendItemStatus.md} +3 -3
  190. package/docs/PaymentBulkSendItemValidationStatus.md +14 -0
  191. package/docs/PaymentBulkSendStatus.md +20 -0
  192. package/docs/PaymentEstimateFeeRequest.md +1 -0
  193. package/docs/PaymentFeeType.md +6 -0
  194. package/docs/PaymentOrderEventData.md +13 -9
  195. package/docs/PaymentPayout.md +8 -7
  196. package/docs/PaymentPayoutDetail.md +10 -8
  197. package/docs/PaymentPayoutEvent.md +15 -9
  198. package/docs/PaymentPayoutItem.md +2 -13
  199. package/docs/PaymentPayoutParam.md +1 -4
  200. package/docs/PaymentPayoutRecipientInfo.md +12 -0
  201. package/docs/PaymentPayoutStatus.md +4 -2
  202. package/docs/PaymentRefundEventData.md +5 -1
  203. package/docs/PaymentSettlementEvent.md +5 -1
  204. package/docs/PaymentTransactionEventData.md +5 -1
  205. package/docs/PspBalance.md +4 -4
  206. package/docs/RefundLinkBusinessInfo.md +1 -1
  207. package/docs/Report.md +17 -0
  208. package/docs/ReportExportFormat.md +14 -0
  209. package/docs/ReportStatus.md +12 -0
  210. package/docs/ReportType.md +36 -0
  211. package/docs/StakingsApi.md +1 -1
  212. package/docs/SuspendedTokenEventData.md +5 -1
  213. package/docs/SwapsApi.md +2 -0
  214. package/docs/TSSRequestWebhookEventData.md +5 -1
  215. package/docs/TokenListingEventData.md +5 -1
  216. package/docs/TokensEventData.md +5 -1
  217. package/docs/TransactionCoboCategory.md +2 -0
  218. package/docs/TransactionExtraType.md +2 -0
  219. package/docs/TransactionWalletConnectInfo.md +12 -0
  220. package/docs/TransactionWebhookEventData.md +5 -1
  221. package/docs/TransactionsApi.md +3 -3
  222. package/docs/TransferParams.md +1 -1
  223. package/docs/UpdateCounterpartyRequest.md +13 -0
  224. package/docs/UpdateDestinationEntry200Response.md +9 -0
  225. package/docs/UpdateDestinationEntryRequest.md +11 -0
  226. package/docs/UpdateDestinationRequest.md +14 -0
  227. package/docs/UpdateMerchantByIdRequest.md +1 -1
  228. package/docs/WalletAddress.md +3 -1
  229. package/docs/WalletInfoEventData.md +5 -1
  230. package/docs/WalletsApi.md +9 -9
  231. package/docs/WebhookEventData.md +28 -18
  232. package/docs/WebhookEventDataType.md +5 -1
  233. package/docs/WebhookEventType.md +6 -0
  234. package/package.json +1 -1
  235. package/dist/model/PaymentPayoutItemDetail.js +0 -298
  236. package/docs/AllocationRecord.md +0 -15
  237. package/docs/AllocationRequest.md +0 -13
  238. package/docs/PaymentPayoutItemDetail.md +0 -22
@@ -15,17 +15,21 @@ var _ChainInfo = _interopRequireDefault(require("./ChainInfo"));
15
15
  var _ChainsEventData = _interopRequireDefault(require("./ChainsEventData"));
16
16
  var _CommissionFee = _interopRequireDefault(require("./CommissionFee"));
17
17
  var _ComplianceDispositionUpdateEventData = _interopRequireDefault(require("./ComplianceDispositionUpdateEventData"));
18
+ var _ComplianceKyaScreeningsUpdateEventData = _interopRequireDefault(require("./ComplianceKyaScreeningsUpdateEventData"));
18
19
  var _ComplianceKytScreeningsUpdateEventData = _interopRequireDefault(require("./ComplianceKytScreeningsUpdateEventData"));
19
20
  var _DispositionStatus = _interopRequireDefault(require("./DispositionStatus"));
20
21
  var _DispositionType = _interopRequireDefault(require("./DispositionType"));
21
22
  var _FundsStatusType = _interopRequireDefault(require("./FundsStatusType"));
23
+ var _KyaScreeningStatus = _interopRequireDefault(require("./KyaScreeningStatus"));
22
24
  var _KytScreeningsTransactionType = _interopRequireDefault(require("./KytScreeningsTransactionType"));
23
25
  var _MPCVaultEventData = _interopRequireDefault(require("./MPCVaultEventData"));
24
26
  var _PaymentAddressUpdateEventData = _interopRequireDefault(require("./PaymentAddressUpdateEventData"));
27
+ var _PaymentBulkSendEvent = _interopRequireDefault(require("./PaymentBulkSendEvent"));
28
+ var _PaymentBulkSendExecutionMode = _interopRequireDefault(require("./PaymentBulkSendExecutionMode"));
25
29
  var _PaymentOrderEventData = _interopRequireDefault(require("./PaymentOrderEventData"));
26
30
  var _PaymentPayoutEvent = _interopRequireDefault(require("./PaymentPayoutEvent"));
27
- var _PaymentPayoutItemDetail = _interopRequireDefault(require("./PaymentPayoutItemDetail"));
28
- var _PaymentPayoutStatus = _interopRequireDefault(require("./PaymentPayoutStatus"));
31
+ var _PaymentPayoutItem = _interopRequireDefault(require("./PaymentPayoutItem"));
32
+ var _PaymentPayoutRecipientInfo = _interopRequireDefault(require("./PaymentPayoutRecipientInfo"));
29
33
  var _PaymentRefundEventData = _interopRequireDefault(require("./PaymentRefundEventData"));
30
34
  var _PaymentSettlementEvent = _interopRequireDefault(require("./PaymentSettlementEvent"));
31
35
  var _PaymentTransaction = _interopRequireDefault(require("./PaymentTransaction"));
@@ -86,7 +90,7 @@ var WebhookEventData = /*#__PURE__*/function () {
86
90
  /**
87
91
  * Constructs a new <code>WebhookEventData</code>.
88
92
  * @alias module:model/WebhookEventData
89
- * @param {(module:model/AddressesEventData|module:model/BalanceUpdateInfoEventData|module:model/ChainsEventData|module:model/ComplianceDispositionUpdateEventData|module:model/ComplianceKytScreeningsUpdateEventData|module:model/MPCVaultEventData|module:model/PaymentAddressUpdateEventData|module:model/PaymentOrderEventData|module:model/PaymentPayoutEvent|module:model/PaymentRefundEventData|module:model/PaymentSettlementEvent|module:model/PaymentTransactionEventData|module:model/SuspendedTokenEventData|module:model/TSSRequestWebhookEventData|module:model/TokenListingEventData|module:model/TokensEventData|module:model/TransactionWebhookEventData|module:model/WalletInfoEventData)} instance The actual instance to initialize WebhookEventData.
93
+ * @param {(module:model/AddressesEventData|module:model/BalanceUpdateInfoEventData|module:model/ChainsEventData|module:model/ComplianceDispositionUpdateEventData|module:model/ComplianceKyaScreeningsUpdateEventData|module:model/ComplianceKytScreeningsUpdateEventData|module:model/MPCVaultEventData|module:model/PaymentAddressUpdateEventData|module:model/PaymentBulkSendEvent|module:model/PaymentOrderEventData|module:model/PaymentPayoutEvent|module:model/PaymentRefundEventData|module:model/PaymentSettlementEvent|module:model/PaymentTransactionEventData|module:model/SuspendedTokenEventData|module:model/TSSRequestWebhookEventData|module:model/TokenListingEventData|module:model/TokensEventData|module:model/TransactionWebhookEventData|module:model/WalletInfoEventData)} instance The actual instance to initialize WebhookEventData.
90
94
  */
91
95
  function WebhookEventData() {
92
96
  var instance = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
@@ -123,6 +127,10 @@ var WebhookEventData = /*#__PURE__*/function () {
123
127
  this.actualInstance = _ComplianceDispositionUpdateEventData["default"].constructFromObject(instance);
124
128
  match++;
125
129
  break;
130
+ case "ComplianceKyaScreenings":
131
+ this.actualInstance = _ComplianceKyaScreeningsUpdateEventData["default"].constructFromObject(instance);
132
+ match++;
133
+ break;
126
134
  case "ComplianceKytScreenings":
127
135
  this.actualInstance = _ComplianceKytScreeningsUpdateEventData["default"].constructFromObject(instance);
128
136
  match++;
@@ -135,6 +143,10 @@ var WebhookEventData = /*#__PURE__*/function () {
135
143
  this.actualInstance = _PaymentAddressUpdateEventData["default"].constructFromObject(instance);
136
144
  match++;
137
145
  break;
146
+ case "PaymentBulkSend":
147
+ this.actualInstance = _PaymentBulkSendEvent["default"].constructFromObject(instance);
148
+ match++;
149
+ break;
138
150
  case "PaymentOrder":
139
151
  this.actualInstance = _PaymentOrderEventData["default"].constructFromObject(instance);
140
152
  match++;
@@ -553,6 +565,29 @@ var WebhookEventData = /*#__PURE__*/function () {
553
565
  // json data failed to deserialize into PaymentPayoutEvent
554
566
  errorMessages.push("Failed to construct PaymentPayoutEvent: " + err);
555
567
  }
568
+ try {
569
+ if (instance instanceof _PaymentBulkSendEvent["default"]) {
570
+ this.actualInstance = instance;
571
+ } else if (!!_PaymentBulkSendEvent["default"].validateJSON && _PaymentBulkSendEvent["default"].validateJSON(instance)) {
572
+ // plain JS object
573
+ // create PaymentBulkSendEvent from JS object
574
+ this.actualInstance = _PaymentBulkSendEvent["default"].constructFromObject(instance);
575
+ } else {
576
+ if (_PaymentBulkSendEvent["default"].constructFromObject(instance)) {
577
+ if (!!_PaymentBulkSendEvent["default"].constructFromObject(instance).toJSON) {
578
+ if (_PaymentBulkSendEvent["default"].constructFromObject(instance).toJSON()) {
579
+ this.actualInstance = _PaymentBulkSendEvent["default"].constructFromObject(instance);
580
+ }
581
+ } else {
582
+ this.actualInstance = _PaymentBulkSendEvent["default"].constructFromObject(instance);
583
+ }
584
+ }
585
+ }
586
+ match++;
587
+ } catch (err) {
588
+ // json data failed to deserialize into PaymentBulkSendEvent
589
+ errorMessages.push("Failed to construct PaymentBulkSendEvent: " + err);
590
+ }
556
591
  try {
557
592
  if (instance instanceof _ComplianceDispositionUpdateEventData["default"]) {
558
593
  this.actualInstance = instance;
@@ -599,13 +634,36 @@ var WebhookEventData = /*#__PURE__*/function () {
599
634
  // json data failed to deserialize into ComplianceKytScreeningsUpdateEventData
600
635
  errorMessages.push("Failed to construct ComplianceKytScreeningsUpdateEventData: " + err);
601
636
  }
637
+ try {
638
+ if (instance instanceof _ComplianceKyaScreeningsUpdateEventData["default"]) {
639
+ this.actualInstance = instance;
640
+ } else if (!!_ComplianceKyaScreeningsUpdateEventData["default"].validateJSON && _ComplianceKyaScreeningsUpdateEventData["default"].validateJSON(instance)) {
641
+ // plain JS object
642
+ // create ComplianceKyaScreeningsUpdateEventData from JS object
643
+ this.actualInstance = _ComplianceKyaScreeningsUpdateEventData["default"].constructFromObject(instance);
644
+ } else {
645
+ if (_ComplianceKyaScreeningsUpdateEventData["default"].constructFromObject(instance)) {
646
+ if (!!_ComplianceKyaScreeningsUpdateEventData["default"].constructFromObject(instance).toJSON) {
647
+ if (_ComplianceKyaScreeningsUpdateEventData["default"].constructFromObject(instance).toJSON()) {
648
+ this.actualInstance = _ComplianceKyaScreeningsUpdateEventData["default"].constructFromObject(instance);
649
+ }
650
+ } else {
651
+ this.actualInstance = _ComplianceKyaScreeningsUpdateEventData["default"].constructFromObject(instance);
652
+ }
653
+ }
654
+ }
655
+ match++;
656
+ } catch (err) {
657
+ // json data failed to deserialize into ComplianceKyaScreeningsUpdateEventData
658
+ errorMessages.push("Failed to construct ComplianceKyaScreeningsUpdateEventData: " + err);
659
+ }
602
660
 
603
661
  // if (match > 1) {
604
- // throw new Error("Multiple matches found constructing `WebhookEventData` with oneOf schemas AddressesEventData, BalanceUpdateInfoEventData, ChainsEventData, ComplianceDispositionUpdateEventData, ComplianceKytScreeningsUpdateEventData, MPCVaultEventData, PaymentAddressUpdateEventData, PaymentOrderEventData, PaymentPayoutEvent, PaymentRefundEventData, PaymentSettlementEvent, PaymentTransactionEventData, SuspendedTokenEventData, TSSRequestWebhookEventData, TokenListingEventData, TokensEventData, TransactionWebhookEventData, WalletInfoEventData. Input: " + JSON.stringify(instance));
662
+ // throw new Error("Multiple matches found constructing `WebhookEventData` with oneOf schemas AddressesEventData, BalanceUpdateInfoEventData, ChainsEventData, ComplianceDispositionUpdateEventData, ComplianceKyaScreeningsUpdateEventData, ComplianceKytScreeningsUpdateEventData, MPCVaultEventData, PaymentAddressUpdateEventData, PaymentBulkSendEvent, PaymentOrderEventData, PaymentPayoutEvent, PaymentRefundEventData, PaymentSettlementEvent, PaymentTransactionEventData, SuspendedTokenEventData, TSSRequestWebhookEventData, TokenListingEventData, TokensEventData, TransactionWebhookEventData, WalletInfoEventData. Input: " + JSON.stringify(instance));
605
663
  // } else
606
664
  if (match === 0) {
607
665
  // this.actualInstance = null; // clear the actual instance in case there are multiple matches
608
- // throw new Error("No match found constructing `WebhookEventData` with oneOf schemas AddressesEventData, BalanceUpdateInfoEventData, ChainsEventData, ComplianceDispositionUpdateEventData, ComplianceKytScreeningsUpdateEventData, MPCVaultEventData, PaymentAddressUpdateEventData, PaymentOrderEventData, PaymentPayoutEvent, PaymentRefundEventData, PaymentSettlementEvent, PaymentTransactionEventData, SuspendedTokenEventData, TSSRequestWebhookEventData, TokenListingEventData, TokensEventData, TransactionWebhookEventData, WalletInfoEventData. Details: " +
666
+ // throw new Error("No match found constructing `WebhookEventData` with oneOf schemas AddressesEventData, BalanceUpdateInfoEventData, ChainsEventData, ComplianceDispositionUpdateEventData, ComplianceKyaScreeningsUpdateEventData, ComplianceKytScreeningsUpdateEventData, MPCVaultEventData, PaymentAddressUpdateEventData, PaymentBulkSendEvent, PaymentOrderEventData, PaymentPayoutEvent, PaymentRefundEventData, PaymentSettlementEvent, PaymentTransactionEventData, SuspendedTokenEventData, TSSRequestWebhookEventData, TokenListingEventData, TokensEventData, TransactionWebhookEventData, WalletInfoEventData. Details: " +
609
667
  // errorMessages.join(", "));
610
668
  return;
611
669
  } else {// only 1 match
@@ -624,16 +682,16 @@ var WebhookEventData = /*#__PURE__*/function () {
624
682
  key: "getActualInstance",
625
683
  value:
626
684
  /**
627
- * Gets the actual instance, which can be <code>AddressesEventData</code>, <code>BalanceUpdateInfoEventData</code>, <code>ChainsEventData</code>, <code>ComplianceDispositionUpdateEventData</code>, <code>ComplianceKytScreeningsUpdateEventData</code>, <code>MPCVaultEventData</code>, <code>PaymentAddressUpdateEventData</code>, <code>PaymentOrderEventData</code>, <code>PaymentPayoutEvent</code>, <code>PaymentRefundEventData</code>, <code>PaymentSettlementEvent</code>, <code>PaymentTransactionEventData</code>, <code>SuspendedTokenEventData</code>, <code>TSSRequestWebhookEventData</code>, <code>TokenListingEventData</code>, <code>TokensEventData</code>, <code>TransactionWebhookEventData</code>, <code>WalletInfoEventData</code>.
628
- * @return {(module:model/AddressesEventData|module:model/BalanceUpdateInfoEventData|module:model/ChainsEventData|module:model/ComplianceDispositionUpdateEventData|module:model/ComplianceKytScreeningsUpdateEventData|module:model/MPCVaultEventData|module:model/PaymentAddressUpdateEventData|module:model/PaymentOrderEventData|module:model/PaymentPayoutEvent|module:model/PaymentRefundEventData|module:model/PaymentSettlementEvent|module:model/PaymentTransactionEventData|module:model/SuspendedTokenEventData|module:model/TSSRequestWebhookEventData|module:model/TokenListingEventData|module:model/TokensEventData|module:model/TransactionWebhookEventData|module:model/WalletInfoEventData)} The actual instance.
685
+ * Gets the actual instance, which can be <code>AddressesEventData</code>, <code>BalanceUpdateInfoEventData</code>, <code>ChainsEventData</code>, <code>ComplianceDispositionUpdateEventData</code>, <code>ComplianceKyaScreeningsUpdateEventData</code>, <code>ComplianceKytScreeningsUpdateEventData</code>, <code>MPCVaultEventData</code>, <code>PaymentAddressUpdateEventData</code>, <code>PaymentBulkSendEvent</code>, <code>PaymentOrderEventData</code>, <code>PaymentPayoutEvent</code>, <code>PaymentRefundEventData</code>, <code>PaymentSettlementEvent</code>, <code>PaymentTransactionEventData</code>, <code>SuspendedTokenEventData</code>, <code>TSSRequestWebhookEventData</code>, <code>TokenListingEventData</code>, <code>TokensEventData</code>, <code>TransactionWebhookEventData</code>, <code>WalletInfoEventData</code>.
686
+ * @return {(module:model/AddressesEventData|module:model/BalanceUpdateInfoEventData|module:model/ChainsEventData|module:model/ComplianceDispositionUpdateEventData|module:model/ComplianceKyaScreeningsUpdateEventData|module:model/ComplianceKytScreeningsUpdateEventData|module:model/MPCVaultEventData|module:model/PaymentAddressUpdateEventData|module:model/PaymentBulkSendEvent|module:model/PaymentOrderEventData|module:model/PaymentPayoutEvent|module:model/PaymentRefundEventData|module:model/PaymentSettlementEvent|module:model/PaymentTransactionEventData|module:model/SuspendedTokenEventData|module:model/TSSRequestWebhookEventData|module:model/TokenListingEventData|module:model/TokensEventData|module:model/TransactionWebhookEventData|module:model/WalletInfoEventData)} The actual instance.
629
687
  */
630
688
  function getActualInstance() {
631
689
  return this.actualInstance;
632
690
  }
633
691
 
634
692
  /**
635
- * Sets the actual instance, which can be <code>AddressesEventData</code>, <code>BalanceUpdateInfoEventData</code>, <code>ChainsEventData</code>, <code>ComplianceDispositionUpdateEventData</code>, <code>ComplianceKytScreeningsUpdateEventData</code>, <code>MPCVaultEventData</code>, <code>PaymentAddressUpdateEventData</code>, <code>PaymentOrderEventData</code>, <code>PaymentPayoutEvent</code>, <code>PaymentRefundEventData</code>, <code>PaymentSettlementEvent</code>, <code>PaymentTransactionEventData</code>, <code>SuspendedTokenEventData</code>, <code>TSSRequestWebhookEventData</code>, <code>TokenListingEventData</code>, <code>TokensEventData</code>, <code>TransactionWebhookEventData</code>, <code>WalletInfoEventData</code>.
636
- * @param {(module:model/AddressesEventData|module:model/BalanceUpdateInfoEventData|module:model/ChainsEventData|module:model/ComplianceDispositionUpdateEventData|module:model/ComplianceKytScreeningsUpdateEventData|module:model/MPCVaultEventData|module:model/PaymentAddressUpdateEventData|module:model/PaymentOrderEventData|module:model/PaymentPayoutEvent|module:model/PaymentRefundEventData|module:model/PaymentSettlementEvent|module:model/PaymentTransactionEventData|module:model/SuspendedTokenEventData|module:model/TSSRequestWebhookEventData|module:model/TokenListingEventData|module:model/TokensEventData|module:model/TransactionWebhookEventData|module:model/WalletInfoEventData)} obj The actual instance.
693
+ * Sets the actual instance, which can be <code>AddressesEventData</code>, <code>BalanceUpdateInfoEventData</code>, <code>ChainsEventData</code>, <code>ComplianceDispositionUpdateEventData</code>, <code>ComplianceKyaScreeningsUpdateEventData</code>, <code>ComplianceKytScreeningsUpdateEventData</code>, <code>MPCVaultEventData</code>, <code>PaymentAddressUpdateEventData</code>, <code>PaymentBulkSendEvent</code>, <code>PaymentOrderEventData</code>, <code>PaymentPayoutEvent</code>, <code>PaymentRefundEventData</code>, <code>PaymentSettlementEvent</code>, <code>PaymentTransactionEventData</code>, <code>SuspendedTokenEventData</code>, <code>TSSRequestWebhookEventData</code>, <code>TokenListingEventData</code>, <code>TokensEventData</code>, <code>TransactionWebhookEventData</code>, <code>WalletInfoEventData</code>.
694
+ * @param {(module:model/AddressesEventData|module:model/BalanceUpdateInfoEventData|module:model/ChainsEventData|module:model/ComplianceDispositionUpdateEventData|module:model/ComplianceKyaScreeningsUpdateEventData|module:model/ComplianceKytScreeningsUpdateEventData|module:model/MPCVaultEventData|module:model/PaymentAddressUpdateEventData|module:model/PaymentBulkSendEvent|module:model/PaymentOrderEventData|module:model/PaymentPayoutEvent|module:model/PaymentRefundEventData|module:model/PaymentSettlementEvent|module:model/PaymentTransactionEventData|module:model/SuspendedTokenEventData|module:model/TSSRequestWebhookEventData|module:model/TokenListingEventData|module:model/TokensEventData|module:model/TransactionWebhookEventData|module:model/WalletInfoEventData)} obj The actual instance.
637
695
  */
638
696
  }, {
639
697
  key: "setActualInstance",
@@ -648,7 +706,7 @@ var WebhookEventData = /*#__PURE__*/function () {
648
706
  }]);
649
707
  }();
650
708
  /**
651
- * The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data.
709
+ * The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
652
710
  * @member {module:model/WebhookEventData.DataTypeEnum} data_type
653
711
  */
654
712
  _WebhookEventData = WebhookEventData;
@@ -692,7 +750,7 @@ WebhookEventData.prototype['wallet_id'] = undefined;
692
750
  WebhookEventData.prototype['type'] = undefined;
693
751
 
694
752
  /**
695
- * @member {module:model/PaymentPayoutStatus} status
753
+ * @member {module:model/KyaScreeningStatus} status
696
754
  */
697
755
  WebhookEventData.prototype['status'] = undefined;
698
756
 
@@ -708,7 +766,7 @@ WebhookEventData.prototype['sub_status'] = undefined;
708
766
  WebhookEventData.prototype['failed_reason'] = undefined;
709
767
 
710
768
  /**
711
- * The chain ID, which is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains).
769
+ * The chain identifier.
712
770
  * @member {String} chain_id
713
771
  */
714
772
  WebhookEventData.prototype['chain_id'] = undefined;
@@ -796,7 +854,7 @@ WebhookEventData.prototype['replacement'] = undefined;
796
854
  WebhookEventData.prototype['category'] = undefined;
797
855
 
798
856
  /**
799
- * The description for your transaction.
857
+ * The description for the entire bulk send batch.
800
858
  * @member {String} description
801
859
  */
802
860
  WebhookEventData.prototype['description'] = undefined;
@@ -825,13 +883,13 @@ WebhookEventData.prototype['extra'] = undefined;
825
883
  WebhookEventData.prototype['fueling_info'] = undefined;
826
884
 
827
885
  /**
828
- * The created time of the payout, represented as a UNIX timestamp in seconds.
886
+ * The time when the screening request was created, in Unix timestamp format, measured in milliseconds.
829
887
  * @member {Number} created_timestamp
830
888
  */
831
889
  WebhookEventData.prototype['created_timestamp'] = undefined;
832
890
 
833
891
  /**
834
- * The time when the KYT screening information was updated, in Unix timestamp format, measured in milliseconds.
892
+ * The time when the screening status was updated, in Unix timestamp format, measured in milliseconds.
835
893
  * @member {Number} updated_timestamp
836
894
  */
837
895
  WebhookEventData.prototype['updated_timestamp'] = undefined;
@@ -932,7 +990,7 @@ WebhookEventData.prototype['token'] = undefined;
932
990
  WebhookEventData.prototype['feedback'] = undefined;
933
991
 
934
992
  /**
935
- * The wallet address.
993
+ * The screened blockchain address.
936
994
  * @member {String} address
937
995
  */
938
996
  WebhookEventData.prototype['address'] = undefined;
@@ -984,19 +1042,19 @@ WebhookEventData.prototype['merchant_order_code'] = undefined;
984
1042
  WebhookEventData.prototype['psp_order_code'] = undefined;
985
1043
 
986
1044
  /**
987
- * The fiat currency of the order.
1045
+ * The pricing currency of the order.
988
1046
  * @member {String} pricing_currency
989
1047
  */
990
1048
  WebhookEventData.prototype['pricing_currency'] = undefined;
991
1049
 
992
1050
  /**
993
- * The base amount of the order in fiat currency, excluding the developer fee (specified in `fee_amount`).
1051
+ * The base amount of the order, excluding the developer fee (specified in `fee_amount`).
994
1052
  * @member {String} pricing_amount
995
1053
  */
996
1054
  WebhookEventData.prototype['pricing_amount'] = undefined;
997
1055
 
998
1056
  /**
999
- * The developer fee for the order in fiat currency. It is added to the base amount (`order_amount`) to determine the final charge.
1057
+ * The developer fee for the order. It is added to the base amount to determine the final charge.
1000
1058
  * @member {String} fee_amount
1001
1059
  */
1002
1060
  WebhookEventData.prototype['fee_amount'] = undefined;
@@ -1014,13 +1072,13 @@ WebhookEventData.prototype['payable_currency'] = undefined;
1014
1072
  WebhookEventData.prototype['payable_amount'] = undefined;
1015
1073
 
1016
1074
  /**
1017
- * The exchange rate between a currency pair. Expressed as the amount of fiat currency per one unit of cryptocurrency. For example, if the cryptocurrency is USDT and the fiat currency is USD, a rate of \"0.99\" means 1 USDT = 0.99 USD.
1075
+ * The exchange rate between `payable_currency` and `pricing_currency`, calculated as (`pricing_amount` + `fee_amount`) / `payable_amount`. <Note>This field is only returned when `payable_amount` was not provided in the order creation request. </Note>
1018
1076
  * @member {String} exchange_rate
1019
1077
  */
1020
1078
  WebhookEventData.prototype['exchange_rate'] = undefined;
1021
1079
 
1022
1080
  /**
1023
- * Allowed amount deviation.
1081
+ * The allowed amount deviation, with precision up to 1 decimal place. For example, if `payable_amount` is `100.00` and `amount_tolerance` is `0.50`: - Payer pays 99.55 → Success (difference of 0.45 ≤ 0.5) - Payer pays 99.40 → Underpaid (difference of 0.60 > 0.5)
1024
1082
  * @member {String} amount_tolerance
1025
1083
  */
1026
1084
  WebhookEventData.prototype['amount_tolerance'] = undefined;
@@ -1044,19 +1102,19 @@ WebhookEventData.prototype['received_token_amount'] = undefined;
1044
1102
  WebhookEventData.prototype['expired_at'] = undefined;
1045
1103
 
1046
1104
  /**
1047
- * An array of transactions associated with this refund order. Each transaction represents a separate blockchain operation related to the refund process.
1105
+ * An array of payout transactions.
1048
1106
  * @member {Array.<module:model/PaymentTransaction>} transactions
1049
1107
  */
1050
1108
  WebhookEventData.prototype['transactions'] = undefined;
1051
1109
 
1052
1110
  /**
1053
- * The fiat currency for the payout.
1111
+ * The fiat currency for the off-ramp.
1054
1112
  * @member {String} currency
1055
1113
  */
1056
1114
  WebhookEventData.prototype['currency'] = undefined;
1057
1115
 
1058
1116
  /**
1059
- * The base amount of the order in fiat currency, excluding the developer fee (specified in `fee_amount`).
1117
+ * This field has been deprecated. Please use `pricing_amount` instead.
1060
1118
  * @member {String} order_amount
1061
1119
  */
1062
1120
  WebhookEventData.prototype['order_amount'] = undefined;
@@ -1186,16 +1244,45 @@ WebhookEventData.prototype['updated_address'] = undefined;
1186
1244
  WebhookEventData.prototype['payout_id'] = undefined;
1187
1245
 
1188
1246
  /**
1189
- * @member {Array.<module:model/PaymentPayoutItemDetail>} payout_item_details
1247
+ * The source account from which the bulk send will be made. - If the source account is a merchant account, provide the merchant's ID (e.g., \"M1001\"). - If the source account is the developer account, use the string `\"developer\"`.
1248
+ * @member {String} source_account
1249
+ */
1250
+ WebhookEventData.prototype['source_account'] = undefined;
1251
+
1252
+ /**
1253
+ * required
1254
+ * @member {Array.<module:model/PaymentPayoutItem>} payout_items
1255
+ */
1256
+ WebhookEventData.prototype['payout_items'] = undefined;
1257
+
1258
+ /**
1259
+ * @member {module:model/PaymentPayoutRecipientInfo} recipient_info
1190
1260
  */
1191
- WebhookEventData.prototype['payout_item_details'] = undefined;
1261
+ WebhookEventData.prototype['recipient_info'] = undefined;
1192
1262
 
1193
1263
  /**
1194
- * The actual amount of this payout.
1264
+ * - For `Crypto` payouts: The amount of cryptocurrency sent to the recipient's address, denominated in the token specified in `recipient_info.token_id`. - For `OffRamp` payouts: The amount of fiat currency sent to the recipient's bank account, denominated in the currency specified in `recipient_info.currency`. (Note: The actual amount received may be lower due to additional bank transfer fees.)
1195
1265
  * @member {String} actual_payout_amount
1196
1266
  */
1197
1267
  WebhookEventData.prototype['actual_payout_amount'] = undefined;
1198
1268
 
1269
+ /**
1270
+ * A note or comment about the payout.
1271
+ * @member {String} remark
1272
+ */
1273
+ WebhookEventData.prototype['remark'] = undefined;
1274
+
1275
+ /**
1276
+ * The bulk send ID.
1277
+ * @member {String} bulk_send_id
1278
+ */
1279
+ WebhookEventData.prototype['bulk_send_id'] = undefined;
1280
+
1281
+ /**
1282
+ * @member {module:model/PaymentBulkSendExecutionMode} execution_mode
1283
+ */
1284
+ WebhookEventData.prototype['execution_mode'] = undefined;
1285
+
1199
1286
  /**
1200
1287
  * @member {module:model/DispositionType} disposition_type
1201
1288
  */
@@ -1232,5 +1319,11 @@ WebhookEventData.prototype['review_status'] = undefined;
1232
1319
  * @member {module:model/FundsStatusType} funds_status
1233
1320
  */
1234
1321
  WebhookEventData.prototype['funds_status'] = undefined;
1235
- WebhookEventData.OneOf = ["AddressesEventData", "BalanceUpdateInfoEventData", "ChainsEventData", "ComplianceDispositionUpdateEventData", "ComplianceKytScreeningsUpdateEventData", "MPCVaultEventData", "PaymentAddressUpdateEventData", "PaymentOrderEventData", "PaymentPayoutEvent", "PaymentRefundEventData", "PaymentSettlementEvent", "PaymentTransactionEventData", "SuspendedTokenEventData", "TSSRequestWebhookEventData", "TokenListingEventData", "TokensEventData", "TransactionWebhookEventData", "WalletInfoEventData"];
1322
+
1323
+ /**
1324
+ * The unique system-generated identifier for this screening request (UUID format, fixed 36 characters).
1325
+ * @member {String} screening_id
1326
+ */
1327
+ WebhookEventData.prototype['screening_id'] = undefined;
1328
+ WebhookEventData.OneOf = ["AddressesEventData", "BalanceUpdateInfoEventData", "ChainsEventData", "ComplianceDispositionUpdateEventData", "ComplianceKyaScreeningsUpdateEventData", "ComplianceKytScreeningsUpdateEventData", "MPCVaultEventData", "PaymentAddressUpdateEventData", "PaymentBulkSendEvent", "PaymentOrderEventData", "PaymentPayoutEvent", "PaymentRefundEventData", "PaymentSettlementEvent", "PaymentTransactionEventData", "SuspendedTokenEventData", "TSSRequestWebhookEventData", "TokenListingEventData", "TokensEventData", "TransactionWebhookEventData", "WalletInfoEventData"];
1236
1329
  var _default = exports["default"] = WebhookEventData;
@@ -33,7 +33,7 @@ var WebhookEventDataType = /*#__PURE__*/function () {
33
33
  * Constructs a new <code>WebhookEventDataType</code>.
34
34
  * The data type of the event.
35
35
  * @alias module:model/WebhookEventDataType
36
- * @param data_type {module:model/WebhookEventDataType.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data.
36
+ * @param data_type {module:model/WebhookEventDataType.DataTypeEnum} The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
37
37
  */
38
38
  function WebhookEventDataType(data_type) {
39
39
  _classCallCheck(this, WebhookEventDataType);
@@ -104,7 +104,7 @@ var WebhookEventDataType = /*#__PURE__*/function () {
104
104
  WebhookEventDataType.RequiredProperties = ["data_type"];
105
105
 
106
106
  /**
107
- * The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data.
107
+ * The data type of the event. - `Transaction`: The transaction event data. - `TSSRequest`: The TSS request event data. - `Addresses`: The addresses event data. - `WalletInfo`: The wallet information event data. - `MPCVault`: The MPC vault event data. - `Chains`: The enabled chain event data. - `Tokens`: The enabled token event data. - `TokenListing`: The token listing event data. - `PaymentOrder`: The payment order event data. - `PaymentRefund`: The payment refund event data. - `PaymentSettlement`: The payment settlement event data. - `PaymentTransaction`: The payment transaction event data. - `PaymentAddressUpdate`: The top-up address update event data. - `PaymentPayout`: The payment payout event data. - `PaymentBulkSend`: The payment bulk send event data. - `BalanceUpdateInfo`: The balance update event data. - `SuspendedToken`: The token suspension event data. - `ComplianceDisposition`: The compliance disposition event data. - `ComplianceKytScreenings`: The compliance KYT screenings event data. - `ComplianceKyaScreenings`: The compliance KYA screenings event data.
108
108
  * @member {module:model/WebhookEventDataType.DataTypeEnum} data_type
109
109
  */
110
110
  WebhookEventDataType.prototype['data_type'] = undefined;
@@ -185,6 +185,11 @@ WebhookEventDataType['DataTypeEnum'] = {
185
185
  * @const
186
186
  */
187
187
  "PaymentPayout": "PaymentPayout",
188
+ /**
189
+ * value: "PaymentBulkSend"
190
+ * @const
191
+ */
192
+ "PaymentBulkSend": "PaymentBulkSend",
188
193
  /**
189
194
  * value: "BalanceUpdateInfo"
190
195
  * @const
@@ -205,6 +210,11 @@ WebhookEventDataType['DataTypeEnum'] = {
205
210
  * @const
206
211
  */
207
212
  "ComplianceKytScreenings": "ComplianceKytScreenings",
213
+ /**
214
+ * value: "ComplianceKyaScreenings"
215
+ * @const
216
+ */
217
+ "ComplianceKyaScreenings": "ComplianceKyaScreenings",
208
218
  /**
209
219
  * value: "unknown_default_open_api"
210
220
  * @const
@@ -210,6 +210,16 @@ var WebhookEventType = exports["default"] = /*#__PURE__*/function () {
210
210
  * @const
211
211
  */
212
212
  _defineProperty(this, "payment.subscription.status.updated", "payment.subscription.status.updated");
213
+ /**
214
+ * value: "payment.charge.status.updated"
215
+ * @const
216
+ */
217
+ _defineProperty(this, "payment.charge.status.updated", "payment.charge.status.updated");
218
+ /**
219
+ * value: "payment.bulk_send.status.updated"
220
+ * @const
221
+ */
222
+ _defineProperty(this, "payment.bulk_send.status.updated", "payment.bulk_send.status.updated");
213
223
  /**
214
224
  * value: "compliance.disposition.status.updated"
215
225
  * @const
@@ -220,6 +230,11 @@ var WebhookEventType = exports["default"] = /*#__PURE__*/function () {
220
230
  * @const
221
231
  */
222
232
  _defineProperty(this, "compliance.kyt.screenings.status.updated", "compliance.kyt.screenings.status.updated");
233
+ /**
234
+ * value: "compliance.kya.screenings.status.updated"
235
+ * @const
236
+ */
237
+ _defineProperty(this, "compliance.kya.screenings.status.updated", "compliance.kya.screenings.status.updated");
223
238
  /**
224
239
  * value: "unknown_default_open_api"
225
240
  * @const
@@ -0,0 +1,16 @@
1
+ # CoboWaas2.AddressRiskLevel
2
+
3
+ ## Enum
4
+
5
+
6
+ * `Low` (value: `"Low"`)
7
+
8
+ * `Unscreened` (value: `"Unscreened"`)
9
+
10
+ * `Medium` (value: `"Medium"`)
11
+
12
+ * `High` (value: `"High"`)
13
+
14
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
15
+
16
+
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **data_type** | **String** | The data type of the event. - &#x60;Transaction&#x60;: The transaction event data. - &#x60;TSSRequest&#x60;: The TSS request event data. - &#x60;Addresses&#x60;: The addresses event data. - &#x60;WalletInfo&#x60;: The wallet information event data. - &#x60;MPCVault&#x60;: The MPC vault event data. - &#x60;Chains&#x60;: The enabled chain event data. - &#x60;Tokens&#x60;: The enabled token event data. - &#x60;TokenListing&#x60;: The token listing event data. - &#x60;PaymentOrder&#x60;: The payment order event data. - &#x60;PaymentRefund&#x60;: The payment refund event data. - &#x60;PaymentSettlement&#x60;: The payment settlement event data. - &#x60;PaymentTransaction&#x60;: The payment transaction event data. - &#x60;PaymentAddressUpdate&#x60;: The top-up address update event data. - &#x60;PaymentPayout&#x60;: The payment payout event data. - &#x60;BalanceUpdateInfo&#x60;: The balance update event data. - &#x60;SuspendedToken&#x60;: The token suspension event data. - &#x60;ComplianceDisposition&#x60;: The compliance disposition event data. - &#x60;ComplianceKytScreenings&#x60;: The compliance KYT screenings event data. |
7
+ **data_type** | **String** | The data type of the event. - &#x60;Transaction&#x60;: The transaction event data. - &#x60;TSSRequest&#x60;: The TSS request event data. - &#x60;Addresses&#x60;: The addresses event data. - &#x60;WalletInfo&#x60;: The wallet information event data. - &#x60;MPCVault&#x60;: The MPC vault event data. - &#x60;Chains&#x60;: The enabled chain event data. - &#x60;Tokens&#x60;: The enabled token event data. - &#x60;TokenListing&#x60;: The token listing event data. - &#x60;PaymentOrder&#x60;: The payment order event data. - &#x60;PaymentRefund&#x60;: The payment refund event data. - &#x60;PaymentSettlement&#x60;: The payment settlement event data. - &#x60;PaymentTransaction&#x60;: The payment transaction event data. - &#x60;PaymentAddressUpdate&#x60;: The top-up address update event data. - &#x60;PaymentPayout&#x60;: The payment payout event data. - &#x60;PaymentBulkSend&#x60;: The payment bulk send event data. - &#x60;BalanceUpdateInfo&#x60;: The balance update event data. - &#x60;SuspendedToken&#x60;: The token suspension event data. - &#x60;ComplianceDisposition&#x60;: The compliance disposition event data. - &#x60;ComplianceKytScreenings&#x60;: The compliance KYT screenings event data. - &#x60;ComplianceKyaScreenings&#x60;: The compliance KYA screenings event data. |
8
8
  **addresses** | [**[AddressesEventDataAllOfAddresses]**](AddressesEventDataAllOfAddresses.md) | A list of addresses. | [optional]
9
9
 
10
10
 
@@ -40,6 +40,8 @@ Name | Type | Description | Notes
40
40
 
41
41
  * `PaymentPayout` (value: `"PaymentPayout"`)
42
42
 
43
+ * `PaymentBulkSend` (value: `"PaymentBulkSend"`)
44
+
43
45
  * `BalanceUpdateInfo` (value: `"BalanceUpdateInfo"`)
44
46
 
45
47
  * `SuspendedToken` (value: `"SuspendedToken"`)
@@ -48,6 +50,8 @@ Name | Type | Description | Notes
48
50
 
49
51
  * `ComplianceKytScreenings` (value: `"ComplianceKytScreenings"`)
50
52
 
53
+ * `ComplianceKyaScreenings` (value: `"ComplianceKyaScreenings"`)
54
+
51
55
  * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
52
56
 
53
57
 
@@ -0,0 +1,15 @@
1
+ # CoboWaas2.AllocationItem
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **allocation_item_id** | **String** | The allocation item ID generated by Cobo. |
8
+ **batch_allocation_id** | **String** | The batch allocation ID generated by Cobo. |
9
+ **token_id** | **String** | The ID of the cryptocurrency you want to allocation. Supported values: - USDC: &#x60;ETH_USDC&#x60;, &#x60;ARBITRUM_USDC&#x60;, &#x60;SOL_USDC&#x60;, &#x60;BASE_USDC&#x60;, &#x60;MATIC_USDC&#x60;, &#x60;BSC_USDC&#x60; - USDT: &#x60;TRON_USDT&#x60;, &#x60;ETH_USDT&#x60;, &#x60;ARBITRUM_USDT&#x60;, &#x60;SOL_USDT&#x60;, &#x60;BASE_USDT&#x60;, &#x60;MATIC_USDT&#x60;, &#x60;BSC_USDT&#x60; |
10
+ **amount** | **String** | The allocation amount. |
11
+ **source_account** | **String** | The source account from which the allocation will be deducted. - If the source account is a merchant account, provide the merchant&#39;s ID (e.g., \&quot;M1001\&quot;). - If the source account is the developer account, use the string &#x60;\&quot;developer\&quot;&#x60;. | [optional]
12
+ **destination_account** | **String** | The destination account to which the allocation will be credited. - If the destination account is a merchant account, provide the merchant&#39;s ID (e.g., \&quot;M1001\&quot;). - If the destination account is the developer account, use the string &#x60;\&quot;developer\&quot;&#x60;. | [optional]
13
+ **description** | **String** | The description of the allocation item. |
14
+
15
+
@@ -0,0 +1,13 @@
1
+ # CoboWaas2.AllocationParam
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **token_id** | **String** | The ID of the cryptocurrency you want to allocation. Supported values: - USDC: &#x60;ETH_USDC&#x60;, &#x60;ARBITRUM_USDC&#x60;, &#x60;SOL_USDC&#x60;, &#x60;BASE_USDC&#x60;, &#x60;MATIC_USDC&#x60;, &#x60;BSC_USDC&#x60; - USDT: &#x60;TRON_USDT&#x60;, &#x60;ETH_USDT&#x60;, &#x60;ARBITRUM_USDT&#x60;, &#x60;SOL_USDT&#x60;, &#x60;BASE_USDT&#x60;, &#x60;MATIC_USDT&#x60;, &#x60;BSC_USDT&#x60; |
8
+ **amount** | **String** | The allocation amount. |
9
+ **source_account** | **String** | The source account from which the allocation will be deducted. - If the source account is a merchant account, provide the merchant&#39;s ID (e.g., \&quot;M1001\&quot;). - If the source account is the developer account, use the string &#x60;\&quot;developer\&quot;&#x60;. |
10
+ **destination_account** | **String** | The destination account to which the allocation will be credited. - If the destination account is a merchant account, provide the merchant&#39;s ID (e.g., \&quot;M1001\&quot;). - If the destination account is the developer account, use the string &#x60;\&quot;developer\&quot;&#x60;. |
11
+ **description** | **String** | The description of the allocation. |
12
+
13
+
@@ -240,7 +240,7 @@ Name | Type | Description | Notes
240
240
 
241
241
  List sweep-to addresses
242
242
 
243
- This operation retrieves a list of sweep-to addresses within your wallet. &lt;Note&gt;Sweep-to addresses are only applicable to MPC Wallets and Custodial Wallets (Web3 Wallets) with the auto-sweep feature enabled.&lt;/Note&gt;
243
+ This operation retrieves a list of sweep-to addresses within your wallet. &lt;Note&gt;Sweep-to addresses are only applicable to MPC Wallets and Custodial Wallets (Web3 Wallets) with the auto-sweep feature enabled.&lt;/Note&gt; &lt;Info&gt;For EVM-compatible chains (such as Ethereum and BNB Smart Chain), the same address is used across chains. As a result, when listing sweep-to addresses, only one address entry (shown under Ethereum) is returned for all EVM-compatible chains. Separate entries are not returned for each individual EVM chain.&lt;/Info&gt;
244
244
 
245
245
  ### Example
246
246
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **data_type** | **String** | The data type of the event. - &#x60;Transaction&#x60;: The transaction event data. - &#x60;TSSRequest&#x60;: The TSS request event data. - &#x60;Addresses&#x60;: The addresses event data. - &#x60;WalletInfo&#x60;: The wallet information event data. - &#x60;MPCVault&#x60;: The MPC vault event data. - &#x60;Chains&#x60;: The enabled chain event data. - &#x60;Tokens&#x60;: The enabled token event data. - &#x60;TokenListing&#x60;: The token listing event data. - &#x60;PaymentOrder&#x60;: The payment order event data. - &#x60;PaymentRefund&#x60;: The payment refund event data. - &#x60;PaymentSettlement&#x60;: The payment settlement event data. - &#x60;PaymentTransaction&#x60;: The payment transaction event data. - &#x60;PaymentAddressUpdate&#x60;: The top-up address update event data. - &#x60;PaymentPayout&#x60;: The payment payout event data. - &#x60;BalanceUpdateInfo&#x60;: The balance update event data. - &#x60;SuspendedToken&#x60;: The token suspension event data. - &#x60;ComplianceDisposition&#x60;: The compliance disposition event data. - &#x60;ComplianceKytScreenings&#x60;: The compliance KYT screenings event data. |
7
+ **data_type** | **String** | The data type of the event. - &#x60;Transaction&#x60;: The transaction event data. - &#x60;TSSRequest&#x60;: The TSS request event data. - &#x60;Addresses&#x60;: The addresses event data. - &#x60;WalletInfo&#x60;: The wallet information event data. - &#x60;MPCVault&#x60;: The MPC vault event data. - &#x60;Chains&#x60;: The enabled chain event data. - &#x60;Tokens&#x60;: The enabled token event data. - &#x60;TokenListing&#x60;: The token listing event data. - &#x60;PaymentOrder&#x60;: The payment order event data. - &#x60;PaymentRefund&#x60;: The payment refund event data. - &#x60;PaymentSettlement&#x60;: The payment settlement event data. - &#x60;PaymentTransaction&#x60;: The payment transaction event data. - &#x60;PaymentAddressUpdate&#x60;: The top-up address update event data. - &#x60;PaymentPayout&#x60;: The payment payout event data. - &#x60;PaymentBulkSend&#x60;: The payment bulk send event data. - &#x60;BalanceUpdateInfo&#x60;: The balance update event data. - &#x60;SuspendedToken&#x60;: The token suspension event data. - &#x60;ComplianceDisposition&#x60;: The compliance disposition event data. - &#x60;ComplianceKytScreenings&#x60;: The compliance KYT screenings event data. - &#x60;ComplianceKyaScreenings&#x60;: The compliance KYA screenings event data. |
8
8
  **token_id** | **String** | The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens). |
9
9
  **address** | **String** | The wallet address. |
10
10
  **wallet_uuid** | **String** | The wallet ID. |
@@ -44,6 +44,8 @@ Name | Type | Description | Notes
44
44
 
45
45
  * `PaymentPayout` (value: `"PaymentPayout"`)
46
46
 
47
+ * `PaymentBulkSend` (value: `"PaymentBulkSend"`)
48
+
47
49
  * `BalanceUpdateInfo` (value: `"BalanceUpdateInfo"`)
48
50
 
49
51
  * `SuspendedToken` (value: `"SuspendedToken"`)
@@ -52,6 +54,8 @@ Name | Type | Description | Notes
52
54
 
53
55
  * `ComplianceKytScreenings` (value: `"ComplianceKytScreenings"`)
54
56
 
57
+ * `ComplianceKyaScreenings` (value: `"ComplianceKyaScreenings"`)
58
+
55
59
  * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
56
60
 
57
61
 
@@ -6,8 +6,8 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **batch_allocation_id** | **String** | The batch allocation ID generated by Cobo. |
8
8
  **request_id** | **String** | The request ID provided by you when creating the batch allocation. |
9
- **allocation_requests** | [**[AllocationRequest]**](AllocationRequest.md) | | [optional]
10
- **initiator** | **String** | The initiator of this batch allocation, usually the user&#39;s API key. | [optional]
9
+ **allocation_params** | [**[AllocationParam]**](AllocationParam.md) | | [optional]
10
+ **initiator** | **String** | The initiator of this batch allocation, usually the API key you used to create the batch allocation. | [optional]
11
11
  **created_timestamp** | **Number** | The created time of the batch allocation, represented as a UNIX timestamp in seconds. |
12
12
  **updated_timestamp** | **Number** | The updated time of the batch allocation, represented as a UNIX timestamp in seconds. |
13
13
 
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **batch_allocation_id** | **String** | The batch allocation ID generated by Cobo. |
8
8
  **request_id** | **String** | The request ID provided by you when creating the batch allocation. |
9
- **allocation_records** | [**[AllocationRecord]**](AllocationRecord.md) | |
9
+ **allocation_items** | [**[AllocationItem]**](AllocationItem.md) | | [optional]
10
10
  **initiator** | **String** | The initiator of this batch allocation, usually the user&#39;s API key. | [optional]
11
11
  **created_timestamp** | **Number** | The created time of the batch allocation, represented as a UNIX timestamp in seconds. | [optional]
12
12
  **updated_timestamp** | **Number** | The updated time of the batch allocation, represented as a UNIX timestamp in seconds. | [optional]
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **fee_amount** | **String** | The fee charged for bridging tokens to another blockchain during an off-ramp operation. Bridging fees apply when tokens are on a blockchain not directly supported by the off-ramp service. |
7
+ **fee_amount** | **String** | The fee charged for bridging tokens to another chain. |
8
8
  **received_token_id** | **String** | The ID of the destination token received after bridging. | [optional]
9
- **received_amount** | **String** | The final amount of destination tokens received after bridging. | [optional]
9
+ **received_amount** | **String** | The final amount of the token received after bridging. | [optional]
10
10
 
11
11
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **data_type** | **String** | The data type of the event. - &#x60;Transaction&#x60;: The transaction event data. - &#x60;TSSRequest&#x60;: The TSS request event data. - &#x60;Addresses&#x60;: The addresses event data. - &#x60;WalletInfo&#x60;: The wallet information event data. - &#x60;MPCVault&#x60;: The MPC vault event data. - &#x60;Chains&#x60;: The enabled chain event data. - &#x60;Tokens&#x60;: The enabled token event data. - &#x60;TokenListing&#x60;: The token listing event data. - &#x60;PaymentOrder&#x60;: The payment order event data. - &#x60;PaymentRefund&#x60;: The payment refund event data. - &#x60;PaymentSettlement&#x60;: The payment settlement event data. - &#x60;PaymentTransaction&#x60;: The payment transaction event data. - &#x60;PaymentAddressUpdate&#x60;: The top-up address update event data. - &#x60;PaymentPayout&#x60;: The payment payout event data. - &#x60;BalanceUpdateInfo&#x60;: The balance update event data. - &#x60;SuspendedToken&#x60;: The token suspension event data. - &#x60;ComplianceDisposition&#x60;: The compliance disposition event data. - &#x60;ComplianceKytScreenings&#x60;: The compliance KYT screenings event data. |
7
+ **data_type** | **String** | The data type of the event. - &#x60;Transaction&#x60;: The transaction event data. - &#x60;TSSRequest&#x60;: The TSS request event data. - &#x60;Addresses&#x60;: The addresses event data. - &#x60;WalletInfo&#x60;: The wallet information event data. - &#x60;MPCVault&#x60;: The MPC vault event data. - &#x60;Chains&#x60;: The enabled chain event data. - &#x60;Tokens&#x60;: The enabled token event data. - &#x60;TokenListing&#x60;: The token listing event data. - &#x60;PaymentOrder&#x60;: The payment order event data. - &#x60;PaymentRefund&#x60;: The payment refund event data. - &#x60;PaymentSettlement&#x60;: The payment settlement event data. - &#x60;PaymentTransaction&#x60;: The payment transaction event data. - &#x60;PaymentAddressUpdate&#x60;: The top-up address update event data. - &#x60;PaymentPayout&#x60;: The payment payout event data. - &#x60;PaymentBulkSend&#x60;: The payment bulk send event data. - &#x60;BalanceUpdateInfo&#x60;: The balance update event data. - &#x60;SuspendedToken&#x60;: The token suspension event data. - &#x60;ComplianceDisposition&#x60;: The compliance disposition event data. - &#x60;ComplianceKytScreenings&#x60;: The compliance KYT screenings event data. - &#x60;ComplianceKyaScreenings&#x60;: The compliance KYA screenings event data. |
8
8
  **chains** | [**[ChainInfo]**](ChainInfo.md) | The enabled chains. |
9
9
  **wallet_type** | [**WalletType**](WalletType.md) | | [optional]
10
10
  **wallet_subtypes** | [**[WalletSubtype]**](WalletSubtype.md) | | [optional]
@@ -42,6 +42,8 @@ Name | Type | Description | Notes
42
42
 
43
43
  * `PaymentPayout` (value: `"PaymentPayout"`)
44
44
 
45
+ * `PaymentBulkSend` (value: `"PaymentBulkSend"`)
46
+
45
47
  * `BalanceUpdateInfo` (value: `"BalanceUpdateInfo"`)
46
48
 
47
49
  * `SuspendedToken` (value: `"SuspendedToken"`)
@@ -50,6 +52,8 @@ Name | Type | Description | Notes
50
52
 
51
53
  * `ComplianceKytScreenings` (value: `"ComplianceKytScreenings"`)
52
54
 
55
+ * `ComplianceKyaScreenings` (value: `"ComplianceKyaScreenings"`)
56
+
53
57
  * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
54
58
 
55
59
 
@@ -4,6 +4,6 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **fee_amount** | **String** | The amount of the commission fee charged by Cobo for pay-ins and payouts, in USD. |
7
+ **fee_amount** | **String** | The amount of the commission fee charged by Cobo for operations such as pay-ins and payouts, in USD. |
8
8
 
9
9