Create a new API key in your workspace. Learn more about Fireblocks API Keys management in - * the following [guide](https://developers.fireblocks.com/docs/manage-api-keys). - * </br>Endpoint Permission: Admin, Non-Signing Admin. + * the following [guide](https://developers.fireblocks.com/docs/manage-api-keys). Endpoint + * Permission: Admin, Non-Signing Admin. * * @throws ApiException if the Api call fails */ @@ -49,7 +49,7 @@ public void createApiUserTest() throws ApiException { * Get API Keys * *
List all API keys in your workspace. - Please note that this endpoint is available only - * for API keys with Admin/Non Signing Admin permissions. </br>Endpoint Permission: Admin, + * for API keys with Admin/Non Signing Admin permissions. Endpoint Permission: Admin, * Non-Signing Admin. * * @throws ApiException if the Api call fails diff --git a/src/test/java/com/fireblocks/sdk/api/AuditLogsApiTest.java b/src/test/java/com/fireblocks/sdk/api/AuditLogsApiTest.java index 4098916..2f3d53a 100644 --- a/src/test/java/com/fireblocks/sdk/api/AuditLogsApiTest.java +++ b/src/test/java/com/fireblocks/sdk/api/AuditLogsApiTest.java @@ -30,7 +30,7 @@ public class AuditLogsApiTest { * Get audit logs * *
Get Audit logs for the last Day/Week. - Please note that this endpoint is available only - * for API keys with Admin/Non Signing Admin permissions. </br>Endpoint Permission: Admin, + * for API keys with Admin/Non Signing Admin permissions. Endpoint Permission: Admin, * Non-Signing Admin. * * @throws ApiException if the Api call fails diff --git a/src/test/java/com/fireblocks/sdk/api/BlockchainsAssetsApiTest.java b/src/test/java/com/fireblocks/sdk/api/BlockchainsAssetsApiTest.java index ff3f14d..276848d 100644 --- a/src/test/java/com/fireblocks/sdk/api/BlockchainsAssetsApiTest.java +++ b/src/test/java/com/fireblocks/sdk/api/BlockchainsAssetsApiTest.java @@ -42,9 +42,9 @@ public class BlockchainsAssetsApiTest { /** * Get an asset * - *
Returns an asset by ID or legacyID.</br> **Note**: - We will continue displaying and - * supporting the legacy ID (API ID). Since not all Fireblocks services fully support the new - * Assets UUID, please use only the legacy ID until further notice. + *
Returns an asset by ID or legacyID. **Note**: - We will continue displaying and supporting + * the legacy ID (API ID). Since not all Fireblocks services fully support the new Assets UUID, + * please use only the legacy ID until further notice. * * @throws ApiException if the Api call fails */ @@ -122,7 +122,7 @@ public void listAssetsTest() throws ApiException { /** * List blockchains * - *
Returns all blockchains supported by Fireblocks.</br> + *
Returns all blockchains supported by Fireblocks. * * @throws ApiException if the Api call fails */ diff --git a/src/test/java/com/fireblocks/sdk/api/ComplianceApiTest.java b/src/test/java/com/fireblocks/sdk/api/ComplianceApiTest.java index 81e425f..9155bcc 100644 --- a/src/test/java/com/fireblocks/sdk/api/ComplianceApiTest.java +++ b/src/test/java/com/fireblocks/sdk/api/ComplianceApiTest.java @@ -33,6 +33,9 @@ import com.fireblocks.sdk.model.ByorkVerdictRequest; import com.fireblocks.sdk.model.ByorkVerdictResponse; import com.fireblocks.sdk.model.ComplianceResultFullPayload; +import com.fireblocks.sdk.model.CounterpartyGroup; +import com.fireblocks.sdk.model.CounterpartyGroupsPaginatedResponse; +import com.fireblocks.sdk.model.CreateCounterpartyGroupRequest; import com.fireblocks.sdk.model.CreateTransactionResponse; import com.fireblocks.sdk.model.GetByorkVerdictResponse; import com.fireblocks.sdk.model.LegalEntityRegistration; @@ -43,6 +46,7 @@ import com.fireblocks.sdk.model.ScreeningPolicyResponse; import com.fireblocks.sdk.model.ScreeningProviderRulesConfigurationResponse; import com.fireblocks.sdk.model.ScreeningUpdateConfigurations; +import com.fireblocks.sdk.model.UpdateCounterpartyGroupRequest; import com.fireblocks.sdk.model.UpdateLegalEntityRequest; import java.util.UUID; import java.util.concurrent.CompletableFuture; @@ -91,8 +95,8 @@ public void addAddressRegistryVaultOptOutsTest() throws ApiException { * Assign vault accounts to a legal entity * *
Assigns one or more vault accounts to a specific legal entity registration. Explicitly - * mapped vault accounts take precedence over the workspace default legal entity. - * </br>Endpoint Permission: Admin, Non-Signing Admin. + * mapped vault accounts take precedence over the workspace default legal entity. Endpoint + * Permission: Admin, Non-Signing Admin. * * @throws ApiException if the Api call fails */ @@ -106,6 +110,21 @@ public void assignVaultsToLegalEntityTest() throws ApiException { assignVaultsToLegalEntityRequest, legalEntityId, idempotencyKey); } + /** + * Create a counterparty group + * + *
Creates a new counterparty group. **Endpoint Permissions:** Admin, Non-Signing Admin.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void createCounterpartyGroupTest() throws ApiException {
+ CreateCounterpartyGroupRequest createCounterpartyGroupRequest = null;
+ String idempotencyKey = null;
+ CompletableFuture Permanently deletes a counterparty group. **Endpoint Permissions:** Admin, Non-Signing
+ * Admin.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void deleteCounterpartyGroupTest() throws ApiException {
+ UUID groupId = null;
+
+ CompletableFuture Returns the details of a specific counterparty group. **Endpoint Permissions:** Admin,
+ * Non-Signing Admin, Viewer.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void getCounterpartyGroupTest() throws ApiException {
+ UUID groupId = null;
+ CompletableFuture Returns details of a specific legal entity registration, including GLEIF data when
- * available. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver,
- * Editor, Viewer.
+ * available. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -300,6 +348,22 @@ public void listAddressRegistryVaultOptOutsTest() throws ApiException {
api.listAddressRegistryVaultOptOuts(pageCursor, pageSize, order);
}
+ /**
+ * List counterparty groups
+ *
+ * Returns a paginated list of counterparty groups. **Endpoint Permissions:** Admin,
+ * Non-Signing Admin, Viewer.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void listCounterpartyGroupsTest() throws ApiException {
+ String pageCursor = null;
+ Integer pageSize = null;
+ CompletableFuture Returns vault account IDs explicitly assigned to a specific legal entity registration,
- * with cursor-based pagination. </br>Endpoint Permission: Admin, Non-Signing Admin,
- * Signer, Approver, Editor, Viewer.
+ * with cursor-based pagination. Endpoint Permission: Admin, Non-Signing Admin, Signer,
+ * Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -373,7 +437,7 @@ public void optOutAddressRegistryTenantTest() throws ApiException {
*
* Registers a new legal entity for the workspace using its LEI (Legal Entity Identifier)
* code. The LEI is validated against the GLEIF registry. Each workspace can register multiple
- * legal entities. </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * legal entities. Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -501,12 +565,30 @@ public void updateAmlScreeningConfigurationTest() throws ApiException {
api.updateAmlScreeningConfiguration(idempotencyKey);
}
+ /**
+ * Update a counterparty group
+ *
+ * Updates an existing counterparty group. **Endpoint Permissions:** Admin, Non-Signing
+ * Admin.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void updateCounterpartyGroupTest() throws ApiException {
+ UpdateCounterpartyGroupRequest updateCounterpartyGroupRequest = null;
+ UUID groupId = null;
+ String idempotencyKey = null;
+ CompletableFuture Updates the status of a legal entity registration. Setting isDefault to true marks the
* registration as the workspace default, which is applied to vault accounts that have no
- * explicit legal entity mapping. </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * explicit legal entity mapping. Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/ConnectedAccountsBetaApiTest.java b/src/test/java/com/fireblocks/sdk/api/ConnectedAccountsBetaApiTest.java
index 7327c10..87218c1 100644
--- a/src/test/java/com/fireblocks/sdk/api/ConnectedAccountsBetaApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/ConnectedAccountsBetaApiTest.java
@@ -35,8 +35,8 @@ public class ConnectedAccountsBetaApiTest {
/**
* Disconnect connected account
*
- * Disconnect a connected account by ID. </br> **Note**: - This endpoint is currently
- * in beta and might be subject to changes.
+ * Disconnect a connected account by ID. **Note**: - This endpoint is currently in beta and
+ * might be subject to changes.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/ConsoleUserApiTest.java b/src/test/java/com/fireblocks/sdk/api/ConsoleUserApiTest.java
index 485d3f7..bfc7146 100644
--- a/src/test/java/com/fireblocks/sdk/api/ConsoleUserApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/ConsoleUserApiTest.java
@@ -33,7 +33,7 @@ public class ConsoleUserApiTest {
* Create console users in your workspace - Please note that this endpoint is available only
* for API keys with Admin/Non Signing Admin permissions. Learn more about Fireblocks Users
* management in the following [guide](https://developers.fireblocks.com/docs/manage-users).
- * </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -50,7 +50,7 @@ public void createConsoleUserTest() throws ApiException {
* Get console users
*
* Get console users for your workspace. - Please note that this endpoint is available only
- * for API keys with Admin/Non Signing Admin permissions. </br>Endpoint Permission: Admin,
+ * for API keys with Admin/Non Signing Admin permissions. Endpoint Permission: Admin,
* Non-Signing Admin.
*
* @throws ApiException if the Api call fails
diff --git a/src/test/java/com/fireblocks/sdk/api/ContractInteractionsApiTest.java b/src/test/java/com/fireblocks/sdk/api/ContractInteractionsApiTest.java
index 86f54cd..a82ae33 100644
--- a/src/test/java/com/fireblocks/sdk/api/ContractInteractionsApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/ContractInteractionsApiTest.java
@@ -74,8 +74,7 @@ public void getContractAddressTest() throws ApiException {
* Return deployed contract's ABI
*
* Return deployed contract's ABI by blockchain native asset id and contract address.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, and
- * Viewer.
+ * Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, and Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -93,8 +92,8 @@ public void getDeployedContractAbiTest() throws ApiException {
*
* Retrieve the transaction receipt by blockchain native asset ID and transaction hash >
* **Note** > This functionality is exclusively available for EVM (Ethereum Virtual Machine)
- * compatible chains. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer,
- * Approver, Editor, and Viewer.
+ * compatible chains. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor,
+ * and Viewer.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/ContractTemplatesApiTest.java b/src/test/java/com/fireblocks/sdk/api/ContractTemplatesApiTest.java
index 6fb494a..c24304e 100644
--- a/src/test/java/com/fireblocks/sdk/api/ContractTemplatesApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/ContractTemplatesApiTest.java
@@ -99,7 +99,7 @@ public void getContractTemplateByIdTest() throws ApiException {
* List all contract templates
*
* Return minimal representation of all the contract templates available for the workspace.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/ContractsApiTest.java b/src/test/java/com/fireblocks/sdk/api/ContractsApiTest.java
index de85d73..8057767 100644
--- a/src/test/java/com/fireblocks/sdk/api/ContractsApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/ContractsApiTest.java
@@ -33,8 +33,8 @@ public class ContractsApiTest {
/**
* Add an asset to a whitelisted contract
*
- * Adds an asset to a whitelisted contract. </br>Endpoint Permission: Admin,
- * Non-Signing Admin, Signer, Approver, Editor.
+ * Adds an asset to a whitelisted contract. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -51,8 +51,8 @@ public void addContractAssetTest() throws ApiException {
/**
* Add a contract
*
- * Adds a contract to the workspace whitelist. </br>Endpoint Permission: Admin,
- * Non-Signing Admin, Signer, Approver, Editor.
+ * Adds a contract to the workspace whitelist. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -67,8 +67,8 @@ public void createContractTest() throws ApiException {
/**
* Delete a contract
*
- * Deletes a contract by ID. </br>Endpoint Permission: Admin, Non-Signing Admin,
- * Signer, Approver, Editor.
+ * Deletes a contract by ID. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver,
+ * Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -82,8 +82,8 @@ public void deleteContractTest() throws ApiException {
/**
* Delete an asset from a whitelisted contract
*
- * Deletes a whitelisted contract asset by ID. </br>Endpoint Permission: Admin,
- * Non-Signing Admin, Signer, Approver, Editor.
+ * Deletes a whitelisted contract asset by ID. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -99,8 +99,8 @@ public void deleteContractAssetTest() throws ApiException {
/**
* Find a Specific Whitelisted Contract
*
- * Returns a whitelisted contract by Fireblocks Contract ID. </br>Endpoint Permission:
- * Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Returns a whitelisted contract by Fireblocks Contract ID. Endpoint Permission: Admin,
+ * Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -113,8 +113,8 @@ public void getContractTest() throws ApiException {
/**
* Find a whitelisted contract's asset
*
- * Returns a whitelisted contract's asset by ID. </br>Endpoint Permission: Admin,
- * Non-Signing Admin, Signer, Approver, Editor.
+ * Returns a whitelisted contract's asset by ID. Endpoint Permission: Admin, Non-Signing
+ * Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -129,8 +129,8 @@ public void getContractAssetTest() throws ApiException {
/**
* List Whitelisted Contracts
*
- * Gets a list of whitelisted contracts. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver, Editor, Viewer.
+ * Gets a list of whitelisted contracts. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/CosignersBetaApiTest.java b/src/test/java/com/fireblocks/sdk/api/CosignersBetaApiTest.java
index 6a7e6f2..728a000 100644
--- a/src/test/java/com/fireblocks/sdk/api/CosignersBetaApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/CosignersBetaApiTest.java
@@ -43,7 +43,7 @@ public class CosignersBetaApiTest {
* Add cosigner
*
* Add a new cosigner. The cosigner will be pending pairing until the API key is manually
- * paired </br>Endpoint Permission: Admin and Non-Signing Admin.
+ * paired Endpoint Permission: Admin and Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -59,7 +59,7 @@ public void addCosignerTest() throws ApiException {
* Get API key
*
* Get an API key by ID. **Note:** These endpoints are currently in beta and might be subject
- * to changes. </br>Endpoint Permission: Admin and Non-Signing Admin.
+ * to changes. Endpoint Permission: Admin and Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -74,8 +74,7 @@ public void getApiKeyTest() throws ApiException {
* Get all API keys
*
* Get all cosigner paired API keys (paginated). **Note:** These endpoints are currently in
- * beta and might be subject to changes. </br>Endpoint Permission: Admin and Non-Signing
- * Admin.
+ * beta and might be subject to changes. Endpoint Permission: Admin and Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -93,7 +92,7 @@ public void getApiKeysTest() throws ApiException {
* Get cosigner
*
* Get a cosigner by ID. **Note:** These endpoints are currently in beta and might be subject
- * to changes. </br>Endpoint Permission: Admin and Non-Signing Admin.
+ * to changes. Endpoint Permission: Admin and Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -107,7 +106,7 @@ public void getCosignerTest() throws ApiException {
* Get all cosigners
*
* Get all workspace cosigners (paginated). **Note:** These endpoints are currently in beta
- * and might be subject to changes. </br>Endpoint Permission: Admin and Non-Signing Admin.
+ * and might be subject to changes. Endpoint Permission: Admin and Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -123,8 +122,8 @@ public void getCosignersTest() throws ApiException {
/**
* Get request status
*
- * Get the status of an asynchronous request </br>Endpoint Permission: Admin and
- * Non-Signing Admin.
+ * Get the status of an asynchronous request Endpoint Permission: Admin and Non-Signing
+ * Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -140,7 +139,7 @@ public void getRequestStatusTest() throws ApiException {
/**
* Pair API key
*
- * Pair an API key to a cosigner </br>Endpoint Permission: Admin and Non-Signing Admin.
+ * Pair an API key to a cosigner Endpoint Permission: Admin and Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -158,7 +157,7 @@ public void pairApiKeyTest() throws ApiException {
* Rename cosigner
*
* Rename a cosigner by ID. **Note:** These endpoints are currently in beta and might be
- * subject to changes. </br>Endpoint Permission: Admin and Non-Signing Admin.
+ * subject to changes. Endpoint Permission: Admin and Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -173,8 +172,7 @@ public void renameCosignerTest() throws ApiException {
/**
* Unpair API key
*
- * Unpair an API key from a cosigner </br>Endpoint Permission: Admin and Non-Signing
- * Admin.
+ * Unpair an API key from a cosigner Endpoint Permission: Admin and Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -188,8 +186,8 @@ public void unpairApiKeyTest() throws ApiException {
/**
* Update API key callback handler
*
- * Update the callback handler of an API key </br>Endpoint Permission: Admin and
- * Non-Signing Admin.
+ * Update the callback handler of an API key Endpoint Permission: Admin and Non-Signing
+ * Admin.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/ExchangeAccountsApiTest.java b/src/test/java/com/fireblocks/sdk/api/ExchangeAccountsApiTest.java
index df52fa0..350035f 100644
--- a/src/test/java/com/fireblocks/sdk/api/ExchangeAccountsApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/ExchangeAccountsApiTest.java
@@ -64,7 +64,7 @@ public void addExchangeAccountTest() throws ApiException {
* (USD to USDC, USDC to USD) and Bitso (MXN to USD) are supported conversions. Learn more about
* Fireblocks Exchange Connectivity in the following
* [guide](https://developers.fireblocks.com/docs/connect-to-exchanges-and-fiat-providers).
- * </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -80,8 +80,7 @@ public void convertAssetsTest() throws ApiException {
/**
* Get a specific exchange account
*
- * Returns an exchange account by ID. </br>Endpoint Permission: Admin, Non-Signing
- * Admin.
+ * Returns an exchange account by ID. Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -95,8 +94,7 @@ public void getExchangeAccountTest() throws ApiException {
/**
* Get an asset for an exchange account
*
- * Returns an asset for an exchange account. </br>Endpoint Permission: Admin,
- * Non-Signing Admin.
+ * Returns an asset for an exchange account. Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -124,8 +122,8 @@ public void getExchangeAccountsCredentialsPublicKeyTest() throws ApiException {
/**
* List connected exchange accounts
*
- * Returns a list of the connected exchange accounts in your workspace. </br>Endpoint
- * Permission: Admin, Non-Signing Admin.
+ * Returns a list of the connected exchange accounts in your workspace. Endpoint Permission:
+ * Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -144,7 +142,7 @@ public void getPagedExchangeAccountsTest() throws ApiException {
* Transfers funds between trading accounts under the same exchange account. Learn more about
* Fireblocks Exchange Connectivity in the following
* [guide](https://developers.fireblocks.com/docs/connect-to-exchanges-and-fiat-providers).
- * </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/ExternalWalletsApiTest.java b/src/test/java/com/fireblocks/sdk/api/ExternalWalletsApiTest.java
index 3b10c0f..95fdb78 100644
--- a/src/test/java/com/fireblocks/sdk/api/ExternalWalletsApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/ExternalWalletsApiTest.java
@@ -34,8 +34,8 @@ public class ExternalWalletsApiTest {
/**
* Add an asset to an external wallet.
*
- * Adds an asset to an existing external wallet. </br>Endpoint Permission: Admin,
- * Non-Signing Admin, Signer, Approver, Editor.
+ * Adds an asset to an existing external wallet. Endpoint Permission: Admin, Non-Signing
+ * Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -56,8 +56,8 @@ public void addAssetToExternalWalletTest() throws ApiException {
* Creates a new external wallet with the requested name. External Wallet is a whitelisted
* address of a wallet that belongs to your users/counterparties. - You cannot see the balance
* of the external wallet. - You cannot initiate transactions from an external wallet as the
- * source via Fireblocks. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer,
- * Approver, Editor.
+ * source via Fireblocks. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver,
+ * Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -73,8 +73,8 @@ public void createExternalWalletTest() throws ApiException {
* Delete an external wallet
*
* Deletes an external wallet by ID. External Wallet is a whitelisted address of a wallet
- * that belongs to your users/counterparties. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver, Editor.
+ * that belongs to your users/counterparties. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -89,8 +89,8 @@ public void deleteExternalWalletTest() throws ApiException {
* Find an external wallet
*
* Returns an external wallet by ID. External Wallet is a whitelisted address of a wallet
- * that belongs to your users/counterparties. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver, Editor, Viewer.
+ * that belongs to your users/counterparties. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -104,8 +104,8 @@ public void getExternalWalletTest() throws ApiException {
* Get an asset from an external wallet
*
* Returns an external wallet by wallet ID and asset ID. External Wallet is a whitelisted
- * address of a wallet that belongs to your users/counterparties. </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * address of a wallet that belongs to your users/counterparties. Endpoint Permission: Admin,
+ * Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -123,8 +123,8 @@ public void getExternalWalletAssetTest() throws ApiException {
* Gets a list of external wallets under the workspace. External Wallet is a whitelisted
* address of a wallet that belongs to your users/counterparties. - You cannot see the balance
* of the external wallet. - You cannot initiate transactions from an external wallet as the
- * source via Fireblocks. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer,
- * Approver, Editor, Viewer.
+ * source via Fireblocks. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver,
+ * Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -136,8 +136,8 @@ public void getExternalWalletsTest() throws ApiException {
/**
* Delete an asset from an external wallet
*
- * Deletes an external wallet asset by ID. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver, Editor.
+ * Deletes an external wallet asset by ID. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -154,8 +154,8 @@ public void removeAssetFromExternalWalletTest() throws ApiException {
* Set an AML customer reference ID for an external wallet
*
* Sets an AML/KYT customer reference ID for the specific external wallet. External Wallet is
- * a whitelisted address of a wallet that belongs to your users/counterparties.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * a whitelisted address of a wallet that belongs to your users/counterparties. Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/FiatAccountsApiTest.java b/src/test/java/com/fireblocks/sdk/api/FiatAccountsApiTest.java
index 1bcbac6..524d3d6 100644
--- a/src/test/java/com/fireblocks/sdk/api/FiatAccountsApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/FiatAccountsApiTest.java
@@ -49,7 +49,7 @@ public void depositFundsFromLinkedDDATest() throws ApiException {
/**
* Find a specific fiat account
*
- * Returns a fiat account by ID. </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * Returns a fiat account by ID. Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -62,7 +62,7 @@ public void getFiatAccountTest() throws ApiException {
/**
* List fiat accounts
*
- * Returns all fiat accounts. </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * Returns all fiat accounts. Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/GasStationsApiTest.java b/src/test/java/com/fireblocks/sdk/api/GasStationsApiTest.java
index 8955b75..abe0d3d 100644
--- a/src/test/java/com/fireblocks/sdk/api/GasStationsApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/GasStationsApiTest.java
@@ -31,8 +31,8 @@ public class GasStationsApiTest {
/**
* Get gas station settings by asset
*
- * Returns gas station settings and balances for a requested asset. </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Returns gas station settings and balances for a requested asset. Endpoint Permission:
+ * Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -46,8 +46,8 @@ public void getGasStationByAssetIdTest() throws ApiException {
/**
* Get gas station settings
*
- * Returns gas station settings and ETH balance. </br>Endpoint Permission: Admin,
- * Non-Signing Admin, Signer, Approver, Editor.
+ * Returns gas station settings and ETH balance. Endpoint Permission: Admin, Non-Signing
+ * Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -61,8 +61,8 @@ public void getGasStationInfoTest() throws ApiException {
* Edit gas station settings
*
* Configures gas station settings for ETH. Learn more about the Fireblocks Gas Station in
- * the following [guide](https://developers.fireblocks.com/docs/work-with-gas-station).
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * the following [guide](https://developers.fireblocks.com/docs/work-with-gas-station). Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -79,8 +79,8 @@ public void updateGasStationConfigurationTest() throws ApiException {
*
* Configures gas station settings for a requested asset. Learn more about the Fireblocks Gas
* Station in the following
- * [guide](https://developers.fireblocks.com/docs/work-with-gas-station). </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * [guide](https://developers.fireblocks.com/docs/work-with-gas-station). Endpoint Permission:
+ * Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/NftsApiTest.java b/src/test/java/com/fireblocks/sdk/api/NftsApiTest.java
index 02b7a6f..9622264 100644
--- a/src/test/java/com/fireblocks/sdk/api/NftsApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/NftsApiTest.java
@@ -175,8 +175,8 @@ public void refreshNFTMetadataTest() throws ApiException {
*
* Updates all tokens and balances per blockchain and vault account. Learn more about
* Fireblocks NFT management in the following
- * [guide](https://developers.fireblocks.com/reference/deploy-an-nft-collection).
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * [guide](https://developers.fireblocks.com/reference/deploy-an-nft-collection). Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/OffExchangesApiTest.java b/src/test/java/com/fireblocks/sdk/api/OffExchangesApiTest.java
index f4b441c..fd408b0 100644
--- a/src/test/java/com/fireblocks/sdk/api/OffExchangesApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/OffExchangesApiTest.java
@@ -36,8 +36,8 @@ public class OffExchangesApiTest {
* Add Collateral
*
* Add collateral and create deposit request. Learn more about Fireblocks Off Exchange in the
- * following [guide](https://developers.fireblocks.com/docs/off-exchange). </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * following [guide](https://developers.fireblocks.com/docs/off-exchange). Endpoint Permission:
+ * Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -54,7 +54,7 @@ public void addOffExchangeTest() throws ApiException {
*
* Returns a collateral account by mainExchangeAccountId. Learn more about Fireblocks Off
* Exchange in the following [guide](https://developers.fireblocks.com/docs/off-exchange).
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -69,8 +69,8 @@ public void getOffExchangeCollateralAccountsTest() throws ApiException {
* Get Settlements Transactions
*
* Get settlements transactions from exchange. Learn more about Fireblocks Off Exchange in
- * the following [guide](https://developers.fireblocks.com/docs/off-exchange).
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * the following [guide](https://developers.fireblocks.com/docs/off-exchange). Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -85,8 +85,8 @@ public void getOffExchangeSettlementTransactionsTest() throws ApiException {
* Remove Collateral
*
* Remove collateral, create withdraw request. Learn more about Fireblocks Off Exchange in
- * the following [guide](https://developers.fireblocks.com/docs/off-exchange).
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * the following [guide](https://developers.fireblocks.com/docs/off-exchange). Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -102,8 +102,8 @@ public void removeOffExchangeTest() throws ApiException {
* Create Settlement for a Trader
*
* Create settlement for a trader. Learn more about Fireblocks Off Exchange in the following
- * [guide](https://developers.fireblocks.com/docs/off-exchange). </br>Endpoint Permission:
- * Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * [guide](https://developers.fireblocks.com/docs/off-exchange). Endpoint Permission: Admin,
+ * Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/PaymentsPayoutApiTest.java b/src/test/java/com/fireblocks/sdk/api/PaymentsPayoutApiTest.java
index aaba354..76baa20 100644
--- a/src/test/java/com/fireblocks/sdk/api/PaymentsPayoutApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/PaymentsPayoutApiTest.java
@@ -33,19 +33,17 @@ public class PaymentsPayoutApiTest {
*
* **Note:** The reference content in this section documents the Payments Engine endpoint.
* The Payments Engine endpoints include APIs available only for customers with Payments Engine
- * enabled on their accounts. </br> </br>These endpoints are currently in beta and
- * might be subject to changes.</br> </br>If you want to learn more about Fireblocks
- * Payments Engine, please contact your Fireblocks Customer Success Manager or email
- * CSM@fireblocks.com. </br> </br> <b u>Create a payout instruction
- * set.</b> </u></br> A payout instruction set is a set of instructions for
- * distributing payments from a single payment account to a list of payee accounts. </br>
- * The instruction set defines: </br> <ul> <li>the payment account and its
- * account type (vault, exchange, or fiat). </li> <li>the account type (vault
- * account, exchange account, whitelisted address, network connection, fiat account, or merchant
- * account), the amount, and the asset of payment for each payee account.</li> </ul>
- * Learn more about Fireblocks Payments - Payouts in the following
- * [guide](https://developers.fireblocks.com/docs/create-payouts). </br>Endpoint
- * Permission: Admin, Non-Signing Admin.
+ * enabled on their accounts. These endpoints are currently in beta and might be subject to
+ * changes. If you want to learn more about Fireblocks Payments Engine, please contact your
+ * Fireblocks Customer Success Manager or email CSM@fireblocks.com. **Create a payout
+ * instruction set.** A payout instruction set is a set of instructions for distributing
+ * payments from a single payment account to a list of payee accounts. The instruction set
+ * defines: - the payment account and its account type (vault, exchange, or fiat). - the account
+ * type (vault account, exchange account, whitelisted address, network connection, fiat account,
+ * or merchant account), the amount, and the asset of payment for each payee account. Learn more
+ * about Fireblocks Payments - Payouts in the following
+ * [guide](https://developers.fireblocks.com/docs/create-payouts). Endpoint Permission: Admin,
+ * Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -62,15 +60,13 @@ public void createPayoutTest() throws ApiException {
*
* **Note:** The reference content in this section documents the Payments Engine endpoint.
* The Payments Engine endpoints include APIs available only for customers with Payments Engine
- * enabled on their accounts. </br> </br>These endpoints are currently in beta and
- * might be subject to changes.</br> </br>If you want to learn more about Fireblocks
- * Payments Engine, please contact your Fireblocks Customer Success Manager or email
- * CSM@fireblocks.com. </br> </br><b u>Execute a payout instruction
- * set.</b> </u> </br> </br>The instruction set will be verified and
- * executed.</br> <b><u>Source locking</br></b> </u> If you
- * are executing a payout instruction set from a payment account with an already active payout
- * the active payout will complete before the new payout instruction set can be executed.
- * </br> You cannot execute the same payout instruction set more than once.
+ * enabled on their accounts. These endpoints are currently in beta and might be subject to
+ * changes. If you want to learn more about Fireblocks Payments Engine, please contact your
+ * Fireblocks Customer Success Manager or email CSM@fireblocks.com. **Execute a payout
+ * instruction set.** The instruction set will be verified and executed. **Source locking** If
+ * you are executing a payout instruction set from a payment account with an already active
+ * payout the active payout will complete before the new payout instruction set can be executed.
+ * You cannot execute the same payout instruction set more than once.
*
* @throws ApiException if the Api call fails
*/
@@ -87,10 +83,10 @@ public void executePayoutActionTest() throws ApiException {
*
* **Note:** The reference content in this section documents the Payments Engine endpoint.
* The Payments Engine endpoints include APIs available only for customers with Payments Engine
- * enabled on their accounts. </br> </br>These endpoints are currently in beta and
- * might be subject to changes.</br> </br>If you want to learn more about Fireblocks
- * Payments Engine, please contact your Fireblocks Customer Success Manager or email
- * CSM@fireblocks.com. </br> </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * enabled on their accounts. These endpoints are currently in beta and might be subject to
+ * changes. If you want to learn more about Fireblocks Payments Engine, please contact your
+ * Fireblocks Customer Success Manager or email CSM@fireblocks.com. Endpoint Permission: Admin,
+ * Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/PolicyEditorBetaApiTest.java b/src/test/java/com/fireblocks/sdk/api/PolicyEditorBetaApiTest.java
index 090c829..d05f826 100644
--- a/src/test/java/com/fireblocks/sdk/api/PolicyEditorBetaApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/PolicyEditorBetaApiTest.java
@@ -33,13 +33,13 @@ public class PolicyEditorBetaApiTest {
/**
* Get the active policy and its validation
*
- * Legacy Endpoint – Returns the active policy and its validation. </br> **Note:** -
- * This endpoint will remain available for the foreseeable future and is not
- * deprecated.</br> - The `getActivePolicy` endpoint under policy/paths provides
- * policy type-specific operations and improved functionality.</br> - These endpoints are
- * currently in beta and might be subject to changes.</br> If you want to participate and
- * learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager
- * or send an email to CSM@fireblocks.com.
+ * Legacy Endpoint – Returns the active policy and its validation. **Note:** - This endpoint
+ * will remain available for the foreseeable future and is not deprecated. - The
+ * `getActivePolicy` endpoint under policy/paths provides policy type-specific
+ * operations and improved functionality. - These endpoints are currently in beta and might be
+ * subject to changes. If you want to participate and learn more about the Fireblocks TAP,
+ * please contact your Fireblocks Customer Success Manager or send an email to
+ * CSM@fireblocks.com.
*
* @throws ApiException if the Api call fails
*/
@@ -52,13 +52,12 @@ public void getActivePolicyLegacyTest() throws ApiException {
/**
* Get the active draft
*
- * Legacy Endpoint – Returns the active draft and its validation. </br> **Note:** -
- * This endpoint will remain available for the foreseeable future and is not
- * deprecated.</br> - The `getDraft` endpoint under policy/paths provides policy
- * type-specific operations and improved functionality.</br> - These endpoints are
- * currently in beta and might be subject to changes.</br> If you want to participate and
- * learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager
- * or send an email to CSM@fireblocks.com.
+ * Legacy Endpoint – Returns the active draft and its validation. **Note:** - This endpoint
+ * will remain available for the foreseeable future and is not deprecated. - The
+ * `getDraft` endpoint under policy/paths provides policy type-specific operations and
+ * improved functionality. - These endpoints are currently in beta and might be subject to
+ * changes. If you want to participate and learn more about the Fireblocks TAP, please contact
+ * your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
*
* @throws ApiException if the Api call fails
*/
@@ -72,12 +71,12 @@ public void getDraftLegacyTest() throws ApiException {
* Send publish request for a certain draft id
*
* Legacy Endpoint – Send publish request of certain draft id and returns the response.
- * </br> **Note:** - This endpoint will remain available for the foreseeable future and is
- * not deprecated.</br> - The `publishDraft` endpoint under policy/paths
- * provides improved functionality and better performance.</br> - These endpoints are
- * currently in beta and might be subject to changes.</br> If you want to participate and
- * learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager
- * or send an email to CSM@fireblocks.com.
+ * **Note:** - This endpoint will remain available for the foreseeable future and is not
+ * deprecated. - The `publishDraft` endpoint under policy/paths provides improved
+ * functionality and better performance. - These endpoints are currently in beta and might be
+ * subject to changes. If you want to participate and learn more about the Fireblocks TAP,
+ * please contact your Fireblocks Customer Success Manager or send an email to
+ * CSM@fireblocks.com.
*
* @throws ApiException if the Api call fails
*/
@@ -92,10 +91,10 @@ public void publishDraftLegacyTest() throws ApiException {
/**
* Send publish request for a set of policy rules
*
- * Send publish request of set of policy rules and returns the response. </br>
- * **Note:** These endpoints are currently in beta and might be subject to changes. If you want
- * to participate and learn more about the Fireblocks TAP, please contact your Fireblocks
- * Customer Success Manager or send an email to CSM@fireblocks.com.
+ * Send publish request of set of policy rules and returns the response. **Note:** These
+ * endpoints are currently in beta and might be subject to changes. If you want to participate
+ * and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success
+ * Manager or send an email to CSM@fireblocks.com.
*
* @throws ApiException if the Api call fails
*/
@@ -110,13 +109,12 @@ public void publishPolicyRulesTest() throws ApiException {
/**
* Update the draft with a new set of rules
*
- * Legacy Endpoint – Update the draft and return its validation. </br> **Note:** - This
- * endpoint will remain available for the foreseeable future and is not deprecated.</br> -
- * The `updateDraft` endpoint under policy/paths provides policy type-specific
- * operations and improved functionality.</br> - These endpoints are currently in beta and
- * might be subject to changes.</br> If you want to participate and learn more about the
- * Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to
- * CSM@fireblocks.com.
+ * Legacy Endpoint – Update the draft and return its validation. **Note:** - This endpoint
+ * will remain available for the foreseeable future and is not deprecated. - The
+ * `updateDraft` endpoint under policy/paths provides policy type-specific operations
+ * and improved functionality. - These endpoints are currently in beta and might be subject to
+ * changes. If you want to participate and learn more about the Fireblocks TAP, please contact
+ * your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/PolicyEditorV2BetaApiTest.java b/src/test/java/com/fireblocks/sdk/api/PolicyEditorV2BetaApiTest.java
index b8f8601..3713b1d 100644
--- a/src/test/java/com/fireblocks/sdk/api/PolicyEditorV2BetaApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/PolicyEditorV2BetaApiTest.java
@@ -51,8 +51,8 @@ public void getActivePolicyTest() throws ApiException {
/**
* Get the active draft by policy type
*
- * Returns the active draft and its validation for a specific policy type. </br>
- * **Note:** These endpoints are currently in beta and might be subject to changes.
+ * Returns the active draft and its validation for a specific policy type. **Note:** These
+ * endpoints are currently in beta and might be subject to changes.
*
* @throws ApiException if the Api call fails
*/
@@ -66,10 +66,10 @@ public void getDraftTest() throws ApiException {
/**
* Send publish request for a certain draft id
*
- * Send publish request of certain draft id and returns the response. </br> **Note:**
- * These endpoints are currently in beta and might be subject to changes. If you want to
- * participate and learn more about the Fireblocks Policy Editor, please contact your Fireblocks
- * Customer Success Manager or send an email to CSM@fireblocks.com.
+ * Send publish request of certain draft id and returns the response. **Note:** These
+ * endpoints are currently in beta and might be subject to changes. If you want to participate
+ * and learn more about the Fireblocks Policy Editor, please contact your Fireblocks Customer
+ * Success Manager or send an email to CSM@fireblocks.com.
*
* @throws ApiException if the Api call fails
*/
@@ -84,8 +84,8 @@ public void publishDraftTest() throws ApiException {
/**
* Update the draft with a new set of rules by policy types
*
- * Update the draft and return its validation for specific policy types. </br>
- * **Note:** These endpoints are currently in beta and might be subject to changes.
+ * Update the draft and return its validation for specific policy types. **Note:** These
+ * endpoints are currently in beta and might be subject to changes.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/ResetDeviceApiTest.java b/src/test/java/com/fireblocks/sdk/api/ResetDeviceApiTest.java
index f125b92..4df59f0 100644
--- a/src/test/java/com/fireblocks/sdk/api/ResetDeviceApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/ResetDeviceApiTest.java
@@ -30,7 +30,7 @@ public class ResetDeviceApiTest {
*
* Resets mobile device for given console user, that user will need to do mobile onboarding
* again. - Please note that this endpoint is available only for API keys with Admin/Non Signing
- * Admin permissions. </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * Admin permissions. Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/SmartTransferApiTest.java b/src/test/java/com/fireblocks/sdk/api/SmartTransferApiTest.java
index 32c4001..9d9842f 100644
--- a/src/test/java/com/fireblocks/sdk/api/SmartTransferApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/SmartTransferApiTest.java
@@ -66,8 +66,8 @@ public void approveDvPTicketTermTest() throws ApiException {
/**
* Cancel Ticket
*
- * Cancel Smart Transfer ticket. </br>Endpoint Permission: Admin, Non-Signing Admin,
- * Signer, Approver, Editor.
+ * Cancel Smart Transfer ticket. Endpoint Permission: Admin, Non-Signing Admin, Signer,
+ * Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -103,8 +103,8 @@ public void createTicketTest() throws ApiException {
*
* Creates new smart transfer ticket term (when the ticket status is DRAFT). Learn more about
* Fireblocks Smart Transfers in the following
- * [guide](https://developers.fireblocks.com/docs/execute-smart-transfers). </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * [guide](https://developers.fireblocks.com/docs/execute-smart-transfers). Endpoint Permission:
+ * Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -120,8 +120,8 @@ public void createTicketTermTest() throws ApiException {
/**
* Search Ticket by ID
*
- * Find Smart Transfer ticket by id. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver, Editor, Viewer.
+ * Find Smart Transfer ticket by id. Endpoint Permission: Admin, Non-Signing Admin, Signer,
+ * Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -135,8 +135,8 @@ public void findTicketByIdTest() throws ApiException {
/**
* Get Smart Transfer ticket term
*
- * Find a specific term of a specific Smart Transfer ticket. </br>Endpoint Permission:
- * Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * Find a specific term of a specific Smart Transfer ticket. Endpoint Permission: Admin,
+ * Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -151,8 +151,8 @@ public void findTicketTermByIdTest() throws ApiException {
/**
* Fund ticket manually
*
- * Manually fulfill ticket, in case when all terms (legs) are funded manually.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Manually fulfill ticket, in case when all terms (legs) are funded manually. Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -184,8 +184,7 @@ public void fundDvpTicketTest() throws ApiException {
* Define funding source
*
* Set funding source for ticket term (in case of ASYNC tickets, this will execute transfer
- * immediately). </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver,
- * Editor.
+ * immediately). Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -215,8 +214,8 @@ public void getSmartTransferStatisticTest() throws ApiException {
/**
* Get user group
*
- * Get Smart Transfer user groups. </br>Endpoint Permission: Admin, Non-Signing Admin,
- * Signer, Approver, Editor, Viewer.
+ * Get Smart Transfer user groups. Endpoint Permission: Admin, Non-Signing Admin, Signer,
+ * Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -229,8 +228,8 @@ public void getSmartTransferUserGroupsTest() throws ApiException {
/**
* Manually add term transaction
*
- * Manually set ticket term transaction. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver, Editor.
+ * Manually set ticket term transaction. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -302,8 +301,8 @@ public void searchTicketsTest() throws ApiException {
/**
* Add external ref. ID
*
- * Set external id Smart Transfer ticket. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver, Editor.
+ * Set external id Smart Transfer ticket. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -319,8 +318,8 @@ public void setExternalRefIdTest() throws ApiException {
/**
* Set expiration
*
- * Set expiration date on Smart Transfer ticket. </br>Endpoint Permission: Admin,
- * Non-Signing Admin, Signer, Approver, Editor.
+ * Set expiration date on Smart Transfer ticket. Endpoint Permission: Admin, Non-Signing
+ * Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -337,7 +336,7 @@ public void setTicketExpirationTest() throws ApiException {
* Set user group
*
* Set Smart Transfers user group to receive email notifications for Smart Transfers.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -353,8 +352,8 @@ public void setUserGroupsTest() throws ApiException {
* Submit ticket
*
* Submit Smart Transfer ticket - change status into ready for approval if auto approval is
- * not turned on, or OPEN if auto approval is on. </br>Endpoint Permission: Admin,
- * Non-Signing Admin, Signer, Approver, Editor.
+ * not turned on, or OPEN if auto approval is on. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/StakingApiTest.java b/src/test/java/com/fireblocks/sdk/api/StakingApiTest.java
index 03140e1..0dd65de 100644
--- a/src/test/java/com/fireblocks/sdk/api/StakingApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/StakingApiTest.java
@@ -64,7 +64,7 @@ public void approveTermsOfServiceByProviderIdTest() throws ApiException {
* Claim accrued rewards
*
* Claims available staking rewards for the specified chain and vault. Supported chains:
- * Solana and Polygon (Matic). Behavior depends on protocol reward distribution.
+ * Solana and Polygon (POL/Matic). Behavior depends on protocol reward distribution.
*
* @throws ApiException if the Api call fails
*/
@@ -83,11 +83,11 @@ public void claimRewardsTest() throws ApiException {
*
* Consolidates the source staking position into the destination, merging the balance into
* the destination and closing the source position once complete. Both positions must be from
- * the same funding vaults account (i.e. same withdrawals credentials). On chain, this
- * translates into a consolidation transaction, where the source validator is consolidated into
- * the destination validator. Supported chains: Ethereum (ETH) only. </br>Endpoint
- * Permission: Owner, Admin, Non-Signing Admin, Signer, Approver, Editor. **Note:** This
- * endpoint is currently in beta and might be subject to changes.
+ * the same vault account (i.e. same withdrawal credentials). On chain, this translates into a
+ * consolidation transaction, where the source validator is consolidated into the destination
+ * validator. Supported chains: Ethereum (ETH) only. Endpoint Permission: Owner, Admin,
+ * Non-Signing Admin, Signer, Approver, Editor. **Note:** This endpoint is currently in beta and
+ * might be subject to changes.
*
* @throws ApiException if the Api call fails
*/
@@ -104,7 +104,7 @@ public void consolidateTest() throws ApiException {
* List staking positions
*
* Returns all staking positions with core details: amounts, rewards, status, chain, and
- * vault. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * vault. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -135,7 +135,7 @@ public void getChainInfoTest() throws ApiException {
* List supported staking chains
*
* Returns an alphabetical list of blockchains supported for staking by the current workspace
- * context. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * context. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -163,8 +163,8 @@ public void getDelegationByIdTest() throws ApiException {
*
* Returns staking positions with core details: amounts, rewards, status, chain, and vault.
* It supports cursor-based pagination for efficient data retrieval. This endpoint always
- * returns a paginated response with {data, next} structure. </br>Endpoint Permission:
- * Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * returns a paginated response with {data, next} structure. Endpoint Permission: Admin,
+ * Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -183,7 +183,7 @@ public void getPositionsTest() throws ApiException {
* List staking providers
*
* Returns all available staking providers with metadata such as name, ID, and supported
- * chains. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * chains. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -223,8 +223,8 @@ public void getSummaryByVaultTest() throws ApiException {
*
* Merges the source stake account into the destination, consolidating the balance into the
* destination and closing the source account once complete. Both accounts must be from the same
- * validator provider and of same vault account.. Supported chains: Solana (SOL).
- * </br>Endpoint Permission: Owner, Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * validator provider and of same vault account.. Supported chains: Solana (SOL). Endpoint
+ * Permission: Owner, Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -263,7 +263,8 @@ public void splitTest() throws ApiException {
* validator: creates a new position regardless of existing delegations. For Cosmos chains and
* Ethereum liquid staking (Lido): automatically add to existing positions for the same
* validator provider and same vault account if one exists, otherwise create a new position. For
- * Solana and Polygon: always create new positions regardless of existing delegations.
+ * Solana and Polygon (MATIC/POL): always create new positions regardless of existing
+ * delegations.
*
* @throws ApiException if the Api call fails
*/
@@ -298,7 +299,10 @@ public void unstakeTest() throws ApiException {
*
* Withdraws funds that have completed the unbonding period. Typically requires the position
* to be deactivated first (unstake → unbond → withdraw). Amount and timing vary by chain
- * protocol.
+ * protocol. Partial withdrawal is supported for ETH compounding validators (EIP-7251/Pectra)
+ * and Cosmos chains via the optional 'amount' field. For ETH compounding validators,
+ * the remaining balance must be at least 32 ETH after the withdrawal. For all other chains,
+ * omitting 'amount' withdraws the entire available balance.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/TokenizationApiTest.java b/src/test/java/com/fireblocks/sdk/api/TokenizationApiTest.java
index c459ca8..6488153 100644
--- a/src/test/java/com/fireblocks/sdk/api/TokenizationApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/TokenizationApiTest.java
@@ -76,8 +76,8 @@ public void burnCollectionTokenTest() throws ApiException {
/**
* Create a new collection
*
- * Create a new collection and link it as a token. </br>Endpoint Permission: Owner,
- * Admin, Non-Signing Admin, Signer, and Editor.
+ * Create a new collection and link it as a token. Endpoint Permission: Owner, Admin,
+ * Non-Signing Admin, Signer, and Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -200,8 +200,8 @@ public void getLayerZeroPeersTest() throws ApiException {
/**
* Get collections
*
- * Get collections (paginated). </br>Endpoint Permission: Admin, Non-Signing Admin,
- * Signer, Approver, Editor, Viewer.
+ * Get collections (paginated). Endpoint Permission: Admin, Non-Signing Admin, Signer,
+ * Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -263,8 +263,7 @@ public void getLinkedTokensCountTest() throws ApiException {
* links the token to the workspace. For Stellar/Ripple, it links a newly created token directly
* to the workspace without deploying a contract. Returns the token link with status
* \"PENDING\" until the token is deployed or \"SUCCESS\" if no deployment
- * is needed. </br>Endpoint Permission: Owner, Admin, Non-Signing Admin, Signer, and
- * Editor.
+ * is needed. Endpoint Permission: Owner, Admin, Non-Signing Admin, Signer, and Editor.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/TrLinkApiTest.java b/src/test/java/com/fireblocks/sdk/api/TrLinkApiTest.java
index 3658d40..2df8c52 100644
--- a/src/test/java/com/fireblocks/sdk/api/TrLinkApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/TrLinkApiTest.java
@@ -26,11 +26,15 @@
import com.fireblocks.sdk.model.TRLinkCreateTrmRequest;
import com.fireblocks.sdk.model.TRLinkCustomerIntegrationResponse;
import com.fireblocks.sdk.model.TRLinkCustomerResponse;
+import com.fireblocks.sdk.model.TRLinkGetRequiredActionsResponse;
import com.fireblocks.sdk.model.TRLinkGetSupportedAssetResponse;
+import com.fireblocks.sdk.model.TRLinkManualDecisionRequest;
+import com.fireblocks.sdk.model.TRLinkManualDecisionResponse;
import com.fireblocks.sdk.model.TRLinkPartnerResponse;
import com.fireblocks.sdk.model.TRLinkPolicyResponse;
import com.fireblocks.sdk.model.TRLinkPublicKeyResponse;
import com.fireblocks.sdk.model.TRLinkRedirectTrmRequest;
+import com.fireblocks.sdk.model.TRLinkResolveActionRequest;
import com.fireblocks.sdk.model.TRLinkSetDestinationTravelRuleMessageIdRequest;
import com.fireblocks.sdk.model.TRLinkSetDestinationTravelRuleMessageIdResponse;
import com.fireblocks.sdk.model.TRLinkSetTransactionTravelRuleMessageIdRequest;
@@ -142,6 +146,25 @@ public void createTRLinkIntegrationTest() throws ApiException {
api.createTRLinkIntegration(trLinkCreateIntegrationRequest, idempotencyKey);
}
+ /**
+ * Manual decision for missing TRM
+ *
+ * Accept or reject destinations stuck in NoTRM step without waiting for TRP webhook or
+ * policy timeout.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void createTRLinkManualDecisionTest() throws ApiException {
+ TRLinkManualDecisionRequest trLinkManualDecisionRequest = null;
+ UUID customerIntegrationId = null;
+ UUID txId = null;
+ String idempotencyKey = null;
+ CompletableFuture Retrieves the list of required actions (e.g., PII fields) needed to process the Travel
+ * Rule Message.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void getTRLinkTrmRequiredActionsTest() throws ApiException {
+ UUID customerIntegrationId = null;
+ String trmId = null;
+ CompletableFuture Submits required data (e.g., beneficiary PII) to resolve a pending Travel Rule Message
+ * action.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void resolveActionTRLinkTrmTest() throws ApiException {
+ TRLinkResolveActionRequest trLinkResolveActionRequest = null;
+ UUID customerIntegrationId = null;
+ String trmId = null;
+ String idempotencyKey = null;
+ CompletableFuture Cancels a transaction by Fireblocks Transaction ID. Can be used only for transactions that
- * did not get to the BROADCASTING state. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver, Editor.
+ * did not get to the BROADCASTING state. Endpoint Permission: Admin, Non-Signing Admin, Signer,
+ * Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -82,7 +82,7 @@ public void createTransactionTest() throws ApiException {
* Drop ETH (EVM) transaction by ID
*
* Drops a stuck ETH (EVM) transaction and creates a replacement transaction with 0 amount.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -113,7 +113,7 @@ public void dropTransactionTest() throws ApiException {
* the response will contain the transaction fee. - For other assets, the response will contain
* the `networkFee` parameter. Learn more about Fireblocks Fee Management in the
* following [guide](https://developers.fireblocks.com/reference/estimate-transaction-fee).
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -129,10 +129,11 @@ public void estimateNetworkFeeTest() throws ApiException {
*
* Estimates the transaction fee for a specific transaction request. This endpoint simulates
* a transaction which means that the system will expect to have the requested asset and balance
- * in the specified wallet. **Note**: Supports all Fireblocks assets except ZCash (ZEC). Learn
- * more about Fireblocks Fee Management in the following
- * [guide](https://developers.fireblocks.com/reference/estimate-transaction-fee).
- * </br>Endpoint Permission: Admin, Signer, Approver, Editor.
+ * in the specified wallet. **Note**: Supports all Fireblocks assets except ZCash (ZEC). The
+ * PROGRAM_CALL operation is not supported by this endpoint — fee estimation for Solana program
+ * calls is not available. Learn more about Fireblocks Fee Management in the following
+ * [guide](https://developers.fireblocks.com/reference/estimate-transaction-fee). Endpoint
+ * Permission: Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -149,8 +150,8 @@ public void estimateTransactionFeeTest() throws ApiException {
*
* Freezes a transaction by ID. Usually used for AML integrations when the incoming funds
* should be quarantined. For account based assets - the entire amount of the transaction is
- * frozen For UTXO based assets - all UTXOs of the specified transaction are frozen
- * </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * frozen For UTXO based assets - all UTXOs of the specified transaction are frozen Endpoint
+ * Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -166,8 +167,8 @@ public void freezeTransactionTest() throws ApiException {
/**
* Get a specific transaction by Fireblocks transaction ID
*
- * Get a specific transaction data by Fireblocks Transaction ID </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * Get a specific transaction data by Fireblocks Transaction ID Endpoint Permission: Admin,
+ * Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -180,8 +181,8 @@ public void getTransactionTest() throws ApiException {
/**
* Get a specific transaction by external transaction ID
*
- * Returns transaction by external transaction ID. </br>Endpoint Permission: Admin,
- * Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * Returns transaction by external transaction ID. Endpoint Permission: Admin, Non-Signing
+ * Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -242,7 +243,7 @@ public void getTransactionsTest() throws ApiException {
* Set confirmation threshold by transaction hash
*
* Overrides the required number of confirmations for transaction completion by transaction
- * hash. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * hash. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -260,8 +261,7 @@ public void setConfirmationThresholdByTransactionHashTest() throws ApiException
* Set confirmation threshold by Fireblocks Transaction ID
*
* Overrides the required number of confirmations for transaction completion Fireblocks
- * Transaction ID. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver,
- * Editor.
+ * Transaction ID. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -279,7 +279,7 @@ public void setTransactionConfirmationThresholdTest() throws ApiException {
* Unfreeze a transaction
*
* Unfreezes a transaction by Fireblocks Transaction ID and makes the transaction available
- * again. </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * again. Endpoint Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -295,7 +295,7 @@ public void unfreezeTransactionTest() throws ApiException {
/**
* Validate destination address
*
- * Checks if an address is valid and active (for XRP, DOT, XLM, and EOS). </br>Endpoint
+ * Checks if an address is valid and active (for XRP, DOT, XLM, and EOS). Endpoint
* Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
diff --git a/src/test/java/com/fireblocks/sdk/api/UserGroupsBetaApiTest.java b/src/test/java/com/fireblocks/sdk/api/UserGroupsBetaApiTest.java
index f250906..df705fd 100644
--- a/src/test/java/com/fireblocks/sdk/api/UserGroupsBetaApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/UserGroupsBetaApiTest.java
@@ -34,8 +34,8 @@ public class UserGroupsBetaApiTest {
/**
* Create user group
*
- * Create a new user group. Users with the Viewer role cannot be added to groups.
- * </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * Create a new user group. Users with the Viewer role cannot be added to groups. Endpoint
+ * Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -50,9 +50,9 @@ public void createUserGroupTest() throws ApiException {
/**
* Delete user group
*
- * Delete a user group by ID.</br> **Note**: - This endpoint is now in Beta, disabled
- * for general availability at this time. - Please note that this endpoint is available only for
- * API keys with Admin permissions.
+ * Delete a user group by ID. **Note**: - This endpoint is now in Beta, disabled for general
+ * availability at this time. - Please note that this endpoint is available only for API keys
+ * with Admin permissions.
*
* @throws ApiException if the Api call fails
*/
@@ -66,9 +66,9 @@ public void deleteUserGroupTest() throws ApiException {
/**
* Get user group
*
- * Get a user group by ID.</br> **Note**: - This endpoint is now in Beta, disabled for
- * general availability at this time. - Please note that this endpoint is available only for API
- * keys with Admin permissions.
+ * Get a user group by ID. **Note**: - This endpoint is now in Beta, disabled for general
+ * availability at this time. - Please note that this endpoint is available only for API keys
+ * with Admin permissions.
*
* @throws ApiException if the Api call fails
*/
@@ -82,7 +82,7 @@ public void getUserGroupTest() throws ApiException {
* List user groups
*
* Get all user groups in your workspace - Please note that this endpoint is available only
- * for API keys with Admin/Non Signing Admin permissions. </br>Endpoint Permission: Admin,
+ * for API keys with Admin/Non Signing Admin permissions. Endpoint Permission: Admin,
* Non-Signing Admin.
*
* @throws ApiException if the Api call fails
@@ -95,9 +95,9 @@ public void getUserGroupsTest() throws ApiException {
/**
* Update user group
*
- * Update a user group by ID.</br> **Note**: - This endpoint is now in Beta, disabled
- * for general availability at this time. - Please note that this endpoint is available only for
- * API keys with Admin permissions.
+ * Update a user group by ID. **Note**: - This endpoint is now in Beta, disabled for general
+ * availability at this time. - Please note that this endpoint is available only for API keys
+ * with Admin permissions.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/UtxoManagementBetaApiTest.java b/src/test/java/com/fireblocks/sdk/api/UtxoManagementBetaApiTest.java
index a016e21..0e8bfe2 100644
--- a/src/test/java/com/fireblocks/sdk/api/UtxoManagementBetaApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/UtxoManagementBetaApiTest.java
@@ -34,8 +34,8 @@ public class UtxoManagementBetaApiTest {
*
* Returns a paginated list of unspent transaction outputs (UTXOs) for a UTXO-based asset in
* a vault account, with optional filters for labels, statuses, amounts, and more. **Note:**
- * These endpoints are currently in beta and might be subject to changes. </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * These endpoints are currently in beta and might be subject to changes. Endpoint Permission:
+ * Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -82,8 +82,7 @@ public void getUtxosTest() throws ApiException {
* organizing and filtering UTXOs. Labels are applied additively — `labelsToAttach`
* adds to the existing label set and `labelsToDetach` removes from it. Neither
* operation replaces the full set. **Note:** These endpoints are currently in beta and might be
- * subject to changes. </br>Endpoint Permission: Admin, Non-Signing Admin, Signer,
- * Approver, Editor.
+ * subject to changes. Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/VaultsApiTest.java b/src/test/java/com/fireblocks/sdk/api/VaultsApiTest.java
index 36ab20d..74a97a1 100644
--- a/src/test/java/com/fireblocks/sdk/api/VaultsApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/VaultsApiTest.java
@@ -15,6 +15,8 @@
import com.fireblocks.sdk.ApiException;
import com.fireblocks.sdk.ApiResponse;
+import com.fireblocks.sdk.model.CircleGatewayWalletInfoResponse;
+import com.fireblocks.sdk.model.CircleGatewayWalletStatusResponse;
import com.fireblocks.sdk.model.CreateAddressRequest;
import com.fireblocks.sdk.model.CreateAddressResponse;
import com.fireblocks.sdk.model.CreateAssetsRequest;
@@ -60,8 +62,8 @@ public class VaultsApiTest {
* Activate a wallet in a vault account
*
* Initiates activation for a wallet in a vault account. Activation is required for tokens
- * that need an on-chain transaction for creation (XLM tokens, SOL tokens etc).
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * that need an on-chain transaction for creation (XLM tokens, SOL tokens etc). Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -76,6 +78,24 @@ public void activateAssetForVaultAccountTest() throws ApiException {
vaultAccountId, assetId, idempotencyKey, blockchainWalletType);
}
+ /**
+ * Activate a Circle Gateway wallet
+ *
+ * Activates the Circle Gateway wallet associated with the given vault account. If the wallet
+ * does not yet exist it is created in an activated state. **Note:** This endpoint is currently
+ * in beta and might be subject to changes. </br>Endpoint Permission: Admin, Non-Signing
+ * Admin, Signer, Approver.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void activateCircleGatewayWalletBetaTest() throws ApiException {
+ String vaultAccountId = null;
+ String idempotencyKey = null;
+ CompletableFuture Converts an existing segwit address to the legacy format. </br>Endpoint Permission:
- * Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Converts an existing segwit address to the legacy format. Endpoint Permission: Admin,
+ * Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -156,8 +176,8 @@ public void createMultipleDepositAddressesTest() throws ApiException {
*
* Creates a new vault account with the requested name. **Note: ** Vault account names should
* consist of ASCII characters only. Learn more about Fireblocks Vault Accounts in the following
- * [guide](https://developers.fireblocks.com/reference/create-vault-account).
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * [guide](https://developers.fireblocks.com/reference/create-vault-account). Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -174,7 +194,7 @@ public void createVaultAccountTest() throws ApiException {
*
* Creates a wallet for a specific asset in a vault account. Learn more about Fireblocks
* Vault Wallets in the following
- * [guide](https://developers.fireblocks.com/reference/create-vault-wallet). </br>Endpoint
+ * [guide](https://developers.fireblocks.com/reference/create-vault-wallet). Endpoint
* Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
@@ -199,7 +219,7 @@ public void createVaultAccountAssetTest() throws ApiException {
* Create new asset deposit address
*
* Creates a new deposit address for an asset of a vault account. Should be used for UTXO or
- * Tag/Memo based assets ONLY. Requests with account based assets will fail. </br>Endpoint
+ * Tag/Memo based assets ONLY. Requests with account based assets will fail. Endpoint
* Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
@@ -215,12 +235,29 @@ public void createVaultAccountAssetAddressTest() throws ApiException {
vaultAccountId, assetId, createAddressRequest, idempotencyKey);
}
+ /**
+ * Deactivate a Circle Gateway wallet
+ *
+ * Deactivates the Circle Gateway wallet associated with the given vault account. **Note:**
+ * This endpoint is currently in beta and might be subject to changes. </br>Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void deactivateCircleGatewayWalletBetaTest() throws ApiException {
+ String vaultAccountId = null;
+ String idempotencyKey = null;
+ CompletableFuture Get all vault wallets of the vault accounts in your workspace. A vault wallet is an asset
- * in a vault account. This method allows fast traversal of all account balances.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * in a vault account. This method allows fast traversal of all account balances. Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -236,6 +273,22 @@ public void getAssetWalletsTest() throws ApiException {
api.getAssetWallets(totalAmountLargerThan, assetId, orderBy, before, after, limit);
}
+ /**
+ * Get Circle Gateway wallet info
+ *
+ * Returns the Circle Gateway wallet information associated with the given vault account.
+ * **Note:** This endpoint is currently in beta and might be subject to changes.
+ * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void getCircleGatewayWalletInfoBetaTest() throws ApiException {
+ String vaultAccountId = null;
+ CompletableFuture Gets all vault accounts in your workspace. This endpoint returns a limited amount of
- * results with a quick response time. </br>Endpoint Permission: Admin, Non-Signing Admin,
- * Signer, Approver, Editor, Viewer.
+ * results with a quick response time. Endpoint Permission: Admin, Non-Signing Admin, Signer,
+ * Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -341,8 +394,8 @@ public void getPagedVaultAccountsTest() throws ApiException {
/**
* Get the public key for a derivation path
*
- * Gets the public key information based on derivation path and signing algorithm.
- * </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * Gets the public key information based on derivation path and signing algorithm. Endpoint
+ * Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -358,8 +411,8 @@ public void getPublicKeyInfoTest() throws ApiException {
/**
* Get an asset's public key
*
- * Get the public key information for a specific asset in a vault account.
- * </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * Get the public key information for a specific asset in a vault account. Endpoint
+ * Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -378,8 +431,8 @@ public void getPublicKeyInfoForAddressTest() throws ApiException {
/**
* Get UTXO unspent inputs information
*
- * Returns unspent inputs information of an UTXO asset in a vault account.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * Returns unspent inputs information of an UTXO asset in a vault account. Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -394,8 +447,8 @@ public void getUnspentInputsTest() throws ApiException {
/**
* Get a vault account by ID
*
- * Get a vault account by its unique ID. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver, Editor, Viewer.
+ * Get a vault account by its unique ID. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -408,8 +461,8 @@ public void getVaultAccountTest() throws ApiException {
/**
* Get the asset balance for a vault account
*
- * Returns a specific vault wallet balance information for a specific asset.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * Returns a specific vault wallet balance information for a specific asset. Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -425,7 +478,7 @@ public void getVaultAccountAssetTest() throws ApiException {
* Get addresses (Paginated)
*
* Returns a paginated response of the addresses for a given vault account and asset.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -444,8 +497,8 @@ public void getVaultAccountAssetAddressesPaginatedTest() throws ApiException {
/**
* Get asset balance for chosen assets
*
- * Gets the assets amount summary for all accounts or filtered accounts. </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * Gets the assets amount summary for all accounts or filtered accounts. Endpoint Permission:
+ * Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -460,8 +513,8 @@ public void getVaultAssetsTest() throws ApiException {
/**
* Get vault balance by an asset
*
- * Get the total balance of an asset across all the vault accounts. </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
+ * Get the total balance of an asset across all the vault accounts. Endpoint Permission:
+ * Admin, Non-Signing Admin, Signer, Approver, Editor, Viewer.
*
* @throws ApiException if the Api call fails
*/
@@ -479,8 +532,8 @@ public void getVaultBalanceByAssetTest() throws ApiException {
* web console to be swamped with too much vault accounts. Learn more in the following
* [guide](https://developers.fireblocks.com/docs/create-direct-custody-wallets#hiding-vault-accounts).
* NOTE: Hiding the vault account from the web console will also hide all the related
- * transactions to/from this vault. </br>Endpoint Permission: Admin, Non-Signing Admin,
- * Signer, Approver, Editor.
+ * transactions to/from this vault. Endpoint Permission: Admin, Non-Signing Admin, Signer,
+ * Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -495,8 +548,8 @@ public void hideVaultAccountTest() throws ApiException {
/**
* Assign AML customer reference ID
*
- * Sets an AML/KYT customer reference ID for a specific address. </br>Endpoint
- * Permission: Admin, Non-Signing Admin.
+ * Sets an AML/KYT customer reference ID for a specific address. Endpoint Permission: Admin,
+ * Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -522,8 +575,8 @@ public void setCustomerRefIdForAddressTest() throws ApiException {
* Toggles the auto fueling property of the vault account to enabled or disabled. Vault
* Accounts with 'autoFuel=true' are monitored and auto fueled by the Fireblocks
* Gas Station. Learn more about the Fireblocks Gas Station in the following
- * [guide](https://developers.fireblocks.com/docs/work-with-gas-station). </br>Endpoint
- * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * [guide](https://developers.fireblocks.com/docs/work-with-gas-station). Endpoint Permission:
+ * Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -541,8 +594,8 @@ public void setVaultAccountAutoFuelTest() throws ApiException {
*
* Assigns an AML/KYT customer reference ID for the vault account. Learn more about
* Fireblocks AML management in the following
- * [guide](https://developers.fireblocks.com/docs/define-aml-policies). </br>Endpoint
- * Permission: Admin, Non-Signing Admin.
+ * [guide](https://developers.fireblocks.com/docs/define-aml-policies). Endpoint Permission:
+ * Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
@@ -559,8 +612,8 @@ public void setVaultAccountCustomerRefIdTest() throws ApiException {
/**
* Unhide a vault account in the console
*
- * Makes a hidden vault account visible in web console view. </br>Endpoint Permission:
- * Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Makes a hidden vault account visible in web console view. Endpoint Permission: Admin,
+ * Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -575,8 +628,8 @@ public void unhideVaultAccountTest() throws ApiException {
/**
* Rename a vault account
*
- * Renames the requested vault account. </br>Endpoint Permission: Admin, Non-Signing
- * Admin, Signer, Approver.
+ * Renames the requested vault account. Endpoint Permission: Admin, Non-Signing Admin,
+ * Signer, Approver.
*
* @throws ApiException if the Api call fails
*/
@@ -592,8 +645,8 @@ public void updateVaultAccountTest() throws ApiException {
/**
* Update address description
*
- * Updates the description of an existing address of an asset in a vault account.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * Updates the description of an existing address of an asset in a vault account. Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
@@ -617,8 +670,8 @@ public void updateVaultAccountAssetAddressTest() throws ApiException {
* Refresh asset balance data
*
* Updates the balance of a specific asset in a vault account. This API endpoint is subject
- * to a strict rate limit. Should be used by clients in very specific scenarios.
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * to a strict rate limit. Should be used by clients in very specific scenarios. Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/WebhooksApiTest.java b/src/test/java/com/fireblocks/sdk/api/WebhooksApiTest.java
index cb27d32..6379f1b 100644
--- a/src/test/java/com/fireblocks/sdk/api/WebhooksApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/WebhooksApiTest.java
@@ -52,8 +52,8 @@ public void resendTransactionWebhooksTest() throws ApiException {
* Resend failed webhooks
*
* Resends all failed webhook notifications. Learn more about Fireblocks Webhooks in the
- * following [guide](https://developers.fireblocks.com/docs/configure-webhooks).
- * </br>Endpoint Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
+ * following [guide](https://developers.fireblocks.com/docs/configure-webhooks). Endpoint
+ * Permission: Admin, Non-Signing Admin, Signer, Approver, Editor.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/WhitelistIpAddressesApiTest.java b/src/test/java/com/fireblocks/sdk/api/WhitelistIpAddressesApiTest.java
index 2d041ff..f1598fa 100644
--- a/src/test/java/com/fireblocks/sdk/api/WhitelistIpAddressesApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/WhitelistIpAddressesApiTest.java
@@ -30,8 +30,8 @@ public class WhitelistIpAddressesApiTest {
* Get whitelisted ip addresses for an API Key
*
* Get a list of the whitelisted IP addresses for a specific API Key - Please note that this
- * endpoint is available only for API keys with Admin/Non Signing Admin permissions.
- * </br>Endpoint Permission: Admin, Non-Signing Admin.
+ * endpoint is available only for API keys with Admin/Non Signing Admin permissions. Endpoint
+ * Permission: Admin, Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/api/WorkspaceStatusBetaApiTest.java b/src/test/java/com/fireblocks/sdk/api/WorkspaceStatusBetaApiTest.java
index 3cca8e2..d4f983d 100644
--- a/src/test/java/com/fireblocks/sdk/api/WorkspaceStatusBetaApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/WorkspaceStatusBetaApiTest.java
@@ -31,8 +31,8 @@ public class WorkspaceStatusBetaApiTest {
*
* Returns current workspace status (Beta). **Note**: - This endpoint is now in Beta,
* disabled for general availability at this time. - Please note that this endpoint is available
- * only for API keys with Admin/Non Signing Admin permissions. </br>Endpoint Permission:
- * Admin, Non-Signing Admin.
+ * only for API keys with Admin/Non Signing Admin permissions. Endpoint Permission: Admin,
+ * Non-Signing Admin.
*
* @throws ApiException if the Api call fails
*/
diff --git a/src/test/java/com/fireblocks/sdk/model/AdditionalInfoRequestAdditionalInfoTest.java b/src/test/java/com/fireblocks/sdk/model/AdditionalInfoRequestAdditionalInfoTest.java
index 01394b4..7091a9b 100644
--- a/src/test/java/com/fireblocks/sdk/model/AdditionalInfoRequestAdditionalInfoTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/AdditionalInfoRequestAdditionalInfoTest.java
@@ -290,6 +290,12 @@ void providerTest() {
// TODO: test provider
}
+ /** Test the property 'email' */
+ @Test
+ void emailTest() {
+ // TODO: test email
+ }
+
/** Test the property 'beneficiaryDocumentId' */
@Test
void beneficiaryDocumentIdTest() {
diff --git a/src/test/java/com/fireblocks/sdk/model/CircleGatewayWalletInfoResponseTest.java b/src/test/java/com/fireblocks/sdk/model/CircleGatewayWalletInfoResponseTest.java
new file mode 100644
index 0000000..d9f51c1
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/CircleGatewayWalletInfoResponseTest.java
@@ -0,0 +1,57 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for CircleGatewayWalletInfoResponse */
+class CircleGatewayWalletInfoResponseTest {
+ private final CircleGatewayWalletInfoResponse model = new CircleGatewayWalletInfoResponse();
+
+ /** Model tests for CircleGatewayWalletInfoResponse */
+ @Test
+ void testCircleGatewayWalletInfoResponse() {
+ // TODO: test CircleGatewayWalletInfoResponse
+ }
+
+ /** Test the property 'walletId' */
+ @Test
+ void walletIdTest() {
+ // TODO: test walletId
+ }
+
+ /** Test the property 'type' */
+ @Test
+ void typeTest() {
+ // TODO: test type
+ }
+
+ /** Test the property 'status' */
+ @Test
+ void statusTest() {
+ // TODO: test status
+ }
+
+ /** Test the property 'symbol' */
+ @Test
+ void symbolTest() {
+ // TODO: test symbol
+ }
+
+ /** Test the property 'assetIds' */
+ @Test
+ void assetIdsTest() {
+ // TODO: test assetIds
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/CircleGatewayWalletStatusResponseTest.java b/src/test/java/com/fireblocks/sdk/model/CircleGatewayWalletStatusResponseTest.java
new file mode 100644
index 0000000..140d69f
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/CircleGatewayWalletStatusResponseTest.java
@@ -0,0 +1,39 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for CircleGatewayWalletStatusResponse */
+class CircleGatewayWalletStatusResponseTest {
+ private final CircleGatewayWalletStatusResponse model = new CircleGatewayWalletStatusResponse();
+
+ /** Model tests for CircleGatewayWalletStatusResponse */
+ @Test
+ void testCircleGatewayWalletStatusResponse() {
+ // TODO: test CircleGatewayWalletStatusResponse
+ }
+
+ /** Test the property 'walletId' */
+ @Test
+ void walletIdTest() {
+ // TODO: test walletId
+ }
+
+ /** Test the property 'status' */
+ @Test
+ void statusTest() {
+ // TODO: test status
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/CounterpartyGroupTest.java b/src/test/java/com/fireblocks/sdk/model/CounterpartyGroupTest.java
new file mode 100644
index 0000000..168d0e3
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/CounterpartyGroupTest.java
@@ -0,0 +1,69 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for CounterpartyGroup */
+class CounterpartyGroupTest {
+ private final CounterpartyGroup model = new CounterpartyGroup();
+
+ /** Model tests for CounterpartyGroup */
+ @Test
+ void testCounterpartyGroup() {
+ // TODO: test CounterpartyGroup
+ }
+
+ /** Test the property 'groupId' */
+ @Test
+ void groupIdTest() {
+ // TODO: test groupId
+ }
+
+ /** Test the property 'name' */
+ @Test
+ void nameTest() {
+ // TODO: test name
+ }
+
+ /** Test the property 'description' */
+ @Test
+ void descriptionTest() {
+ // TODO: test description
+ }
+
+ /** Test the property 'jurisdictionCodes' */
+ @Test
+ void jurisdictionCodesTest() {
+ // TODO: test jurisdictionCodes
+ }
+
+ /** Test the property 'isActive' */
+ @Test
+ void isActiveTest() {
+ // TODO: test isActive
+ }
+
+ /** Test the property 'createdAt' */
+ @Test
+ void createdAtTest() {
+ // TODO: test createdAt
+ }
+
+ /** Test the property 'updatedAt' */
+ @Test
+ void updatedAtTest() {
+ // TODO: test updatedAt
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/CounterpartyGroupsPaginatedResponseTest.java b/src/test/java/com/fireblocks/sdk/model/CounterpartyGroupsPaginatedResponseTest.java
new file mode 100644
index 0000000..0dbf91e
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/CounterpartyGroupsPaginatedResponseTest.java
@@ -0,0 +1,46 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for CounterpartyGroupsPaginatedResponse */
+class CounterpartyGroupsPaginatedResponseTest {
+ private final CounterpartyGroupsPaginatedResponse model =
+ new CounterpartyGroupsPaginatedResponse();
+
+ /** Model tests for CounterpartyGroupsPaginatedResponse */
+ @Test
+ void testCounterpartyGroupsPaginatedResponse() {
+ // TODO: test CounterpartyGroupsPaginatedResponse
+ }
+
+ /** Test the property 'data' */
+ @Test
+ void dataTest() {
+ // TODO: test data
+ }
+
+ /** Test the property 'total' */
+ @Test
+ void totalTest() {
+ // TODO: test total
+ }
+
+ /** Test the property 'next' */
+ @Test
+ void nextTest() {
+ // TODO: test next
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/CreateCounterpartyGroupRequestTest.java b/src/test/java/com/fireblocks/sdk/model/CreateCounterpartyGroupRequestTest.java
new file mode 100644
index 0000000..febf4c2
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/CreateCounterpartyGroupRequestTest.java
@@ -0,0 +1,45 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for CreateCounterpartyGroupRequest */
+class CreateCounterpartyGroupRequestTest {
+ private final CreateCounterpartyGroupRequest model = new CreateCounterpartyGroupRequest();
+
+ /** Model tests for CreateCounterpartyGroupRequest */
+ @Test
+ void testCreateCounterpartyGroupRequest() {
+ // TODO: test CreateCounterpartyGroupRequest
+ }
+
+ /** Test the property 'name' */
+ @Test
+ void nameTest() {
+ // TODO: test name
+ }
+
+ /** Test the property 'jurisdictionCodes' */
+ @Test
+ void jurisdictionCodesTest() {
+ // TODO: test jurisdictionCodes
+ }
+
+ /** Test the property 'description' */
+ @Test
+ void descriptionTest() {
+ // TODO: test description
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/CreateMultipleVaultAccountsJobStatusTest.java b/src/test/java/com/fireblocks/sdk/model/CreateMultipleVaultAccountsJobStatusTest.java
index 52083f7..f0a2eb1 100644
--- a/src/test/java/com/fireblocks/sdk/model/CreateMultipleVaultAccountsJobStatusTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/CreateMultipleVaultAccountsJobStatusTest.java
@@ -38,9 +38,21 @@ void vaultAccountsTest() {
// TODO: test vaultAccounts
}
+ /** Test the property 'tagIds' */
+ @Test
+ void tagIdsTest() {
+ // TODO: test tagIds
+ }
+
/** Test the property 'errorMessage' */
@Test
void errorMessageTest() {
// TODO: test errorMessage
}
+
+ /** Test the property 'approvalRequestId' */
+ @Test
+ void approvalRequestIdTest() {
+ // TODO: test approvalRequestId
+ }
}
diff --git a/src/test/java/com/fireblocks/sdk/model/CreateQuoteTest.java b/src/test/java/com/fireblocks/sdk/model/CreateQuoteTest.java
index c1177ff..8515a72 100644
--- a/src/test/java/com/fireblocks/sdk/model/CreateQuoteTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/CreateQuoteTest.java
@@ -78,4 +78,10 @@ void settlementTest() {
void sideTest() {
// TODO: test side
}
+
+ /** Test the property 'participantsIdentification' */
+ @Test
+ void participantsIdentificationTest() {
+ // TODO: test participantsIdentification
+ }
}
diff --git a/src/test/java/com/fireblocks/sdk/model/MomoPaymentInfoTest.java b/src/test/java/com/fireblocks/sdk/model/MomoPaymentInfoTest.java
index a0e9c5c..da18a86 100644
--- a/src/test/java/com/fireblocks/sdk/model/MomoPaymentInfoTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/MomoPaymentInfoTest.java
@@ -67,6 +67,12 @@ void providerTest() {
// TODO: test provider
}
+ /** Test the property 'email' */
+ @Test
+ void emailTest() {
+ // TODO: test email
+ }
+
/** Test the property 'beneficiaryDocumentId' */
@Test
void beneficiaryDocumentIdTest() {
diff --git a/src/test/java/com/fireblocks/sdk/model/QuotePropertiesDetailsTest.java b/src/test/java/com/fireblocks/sdk/model/QuotePropertiesDetailsTest.java
index f630757..42c0b23 100644
--- a/src/test/java/com/fireblocks/sdk/model/QuotePropertiesDetailsTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/QuotePropertiesDetailsTest.java
@@ -96,4 +96,10 @@ void sideTest() {
void expiresAtTest() {
// TODO: test expiresAt
}
+
+ /** Test the property 'orderCreationRequirements' */
+ @Test
+ void orderCreationRequirementsTest() {
+ // TODO: test orderCreationRequirements
+ }
}
diff --git a/src/test/java/com/fireblocks/sdk/model/QuoteTest.java b/src/test/java/com/fireblocks/sdk/model/QuoteTest.java
index b047a3a..dc9a2e3 100644
--- a/src/test/java/com/fireblocks/sdk/model/QuoteTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/QuoteTest.java
@@ -97,6 +97,12 @@ void expiresAtTest() {
// TODO: test expiresAt
}
+ /** Test the property 'orderCreationRequirements' */
+ @Test
+ void orderCreationRequirementsTest() {
+ // TODO: test orderCreationRequirements
+ }
+
/** Test the property 'type' */
@Test
void typeTest() {
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkBeneficiaryPiiTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkBeneficiaryPiiTest.java
new file mode 100644
index 0000000..f41d2d7
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkBeneficiaryPiiTest.java
@@ -0,0 +1,33 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkBeneficiaryPii */
+class TRLinkBeneficiaryPiiTest {
+ private final TRLinkBeneficiaryPii model = new TRLinkBeneficiaryPii();
+
+ /** Model tests for TRLinkBeneficiaryPii */
+ @Test
+ void testTRLinkBeneficiaryPii() {
+ // TODO: test TRLinkBeneficiaryPii
+ }
+
+ /** Test the property 'ivms101' */
+ @Test
+ void ivms101Test() {
+ // TODO: test ivms101
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkGetRequiredActionsResponseTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkGetRequiredActionsResponseTest.java
new file mode 100644
index 0000000..84c9ff7
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkGetRequiredActionsResponseTest.java
@@ -0,0 +1,33 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkGetRequiredActionsResponse */
+class TRLinkGetRequiredActionsResponseTest {
+ private final TRLinkGetRequiredActionsResponse model = new TRLinkGetRequiredActionsResponse();
+
+ /** Model tests for TRLinkGetRequiredActionsResponse */
+ @Test
+ void testTRLinkGetRequiredActionsResponse() {
+ // TODO: test TRLinkGetRequiredActionsResponse
+ }
+
+ /** Test the property 'actions' */
+ @Test
+ void actionsTest() {
+ // TODO: test actions
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionActionTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionActionTest.java
new file mode 100644
index 0000000..bfc2cb3
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionActionTest.java
@@ -0,0 +1,25 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkManualDecisionAction */
+class TRLinkManualDecisionActionTest {
+ /** Model tests for TRLinkManualDecisionAction */
+ @Test
+ void testTRLinkManualDecisionAction() {
+ // TODO: test TRLinkManualDecisionAction
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionDestinationDetailTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionDestinationDetailTest.java
new file mode 100644
index 0000000..01d229b
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionDestinationDetailTest.java
@@ -0,0 +1,46 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkManualDecisionDestinationDetail */
+class TRLinkManualDecisionDestinationDetailTest {
+ private final TRLinkManualDecisionDestinationDetail model =
+ new TRLinkManualDecisionDestinationDetail();
+
+ /** Model tests for TRLinkManualDecisionDestinationDetail */
+ @Test
+ void testTRLinkManualDecisionDestinationDetail() {
+ // TODO: test TRLinkManualDecisionDestinationDetail
+ }
+
+ /** Test the property 'destinationScreeningId' */
+ @Test
+ void destinationScreeningIdTest() {
+ // TODO: test destinationScreeningId
+ }
+
+ /** Test the property 'applied' */
+ @Test
+ void appliedTest() {
+ // TODO: test applied
+ }
+
+ /** Test the property 'skipReason' */
+ @Test
+ void skipReasonTest() {
+ // TODO: test skipReason
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionRequestTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionRequestTest.java
new file mode 100644
index 0000000..bf24462
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionRequestTest.java
@@ -0,0 +1,39 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkManualDecisionRequest */
+class TRLinkManualDecisionRequestTest {
+ private final TRLinkManualDecisionRequest model = new TRLinkManualDecisionRequest();
+
+ /** Model tests for TRLinkManualDecisionRequest */
+ @Test
+ void testTRLinkManualDecisionRequest() {
+ // TODO: test TRLinkManualDecisionRequest
+ }
+
+ /** Test the property 'action' */
+ @Test
+ void actionTest() {
+ // TODO: test action
+ }
+
+ /** Test the property 'reason' */
+ @Test
+ void reasonTest() {
+ // TODO: test reason
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionResponseTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionResponseTest.java
new file mode 100644
index 0000000..8e4a4ae
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionResponseTest.java
@@ -0,0 +1,63 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkManualDecisionResponse */
+class TRLinkManualDecisionResponseTest {
+ private final TRLinkManualDecisionResponse model = new TRLinkManualDecisionResponse();
+
+ /** Model tests for TRLinkManualDecisionResponse */
+ @Test
+ void testTRLinkManualDecisionResponse() {
+ // TODO: test TRLinkManualDecisionResponse
+ }
+
+ /** Test the property 'action' */
+ @Test
+ void actionTest() {
+ // TODO: test action
+ }
+
+ /** Test the property 'source' */
+ @Test
+ void sourceTest() {
+ // TODO: test source
+ }
+
+ /** Test the property 'txId' */
+ @Test
+ void txIdTest() {
+ // TODO: test txId
+ }
+
+ /** Test the property 'destinationsAffected' */
+ @Test
+ void destinationsAffectedTest() {
+ // TODO: test destinationsAffected
+ }
+
+ /** Test the property 'destinationsSkipped' */
+ @Test
+ void destinationsSkippedTest() {
+ // TODO: test destinationsSkipped
+ }
+
+ /** Test the property 'details' */
+ @Test
+ void detailsTest() {
+ // TODO: test details
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionSourceTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionSourceTest.java
new file mode 100644
index 0000000..55e68fa
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkManualDecisionSourceTest.java
@@ -0,0 +1,25 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkManualDecisionSource */
+class TRLinkManualDecisionSourceTest {
+ /** Model tests for TRLinkManualDecisionSource */
+ @Test
+ void testTRLinkManualDecisionSource() {
+ // TODO: test TRLinkManualDecisionSource
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkRequiredActionDataTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkRequiredActionDataTest.java
new file mode 100644
index 0000000..9849831
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkRequiredActionDataTest.java
@@ -0,0 +1,39 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkRequiredActionData */
+class TRLinkRequiredActionDataTest {
+ private final TRLinkRequiredActionData model = new TRLinkRequiredActionData();
+
+ /** Model tests for TRLinkRequiredActionData */
+ @Test
+ void testTRLinkRequiredActionData() {
+ // TODO: test TRLinkRequiredActionData
+ }
+
+ /** Test the property 'beneficiaryRequiredFields' */
+ @Test
+ void beneficiaryRequiredFieldsTest() {
+ // TODO: test beneficiaryRequiredFields
+ }
+
+ /** Test the property 'originatorRequiredFields' */
+ @Test
+ void originatorRequiredFieldsTest() {
+ // TODO: test originatorRequiredFields
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkRequiredActionTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkRequiredActionTest.java
new file mode 100644
index 0000000..a68ee0f
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkRequiredActionTest.java
@@ -0,0 +1,45 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkRequiredAction */
+class TRLinkRequiredActionTest {
+ private final TRLinkRequiredAction model = new TRLinkRequiredAction();
+
+ /** Model tests for TRLinkRequiredAction */
+ @Test
+ void testTRLinkRequiredAction() {
+ // TODO: test TRLinkRequiredAction
+ }
+
+ /** Test the property 'type' */
+ @Test
+ void typeTest() {
+ // TODO: test type
+ }
+
+ /** Test the property 'description' */
+ @Test
+ void descriptionTest() {
+ // TODO: test description
+ }
+
+ /** Test the property 'data' */
+ @Test
+ void dataTest() {
+ // TODO: test data
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkRequiredFieldTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkRequiredFieldTest.java
new file mode 100644
index 0000000..1154bba
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkRequiredFieldTest.java
@@ -0,0 +1,39 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkRequiredField */
+class TRLinkRequiredFieldTest {
+ private final TRLinkRequiredField model = new TRLinkRequiredField();
+
+ /** Model tests for TRLinkRequiredField */
+ @Test
+ void testTRLinkRequiredField() {
+ // TODO: test TRLinkRequiredField
+ }
+
+ /** Test the property 'type' */
+ @Test
+ void typeTest() {
+ // TODO: test type
+ }
+
+ /** Test the property 'path' */
+ @Test
+ void pathTest() {
+ // TODO: test path
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkResolveActionDataTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkResolveActionDataTest.java
new file mode 100644
index 0000000..177f9a0
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkResolveActionDataTest.java
@@ -0,0 +1,33 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkResolveActionData */
+class TRLinkResolveActionDataTest {
+ private final TRLinkResolveActionData model = new TRLinkResolveActionData();
+
+ /** Model tests for TRLinkResolveActionData */
+ @Test
+ void testTRLinkResolveActionData() {
+ // TODO: test TRLinkResolveActionData
+ }
+
+ /** Test the property 'beneficiaryPii' */
+ @Test
+ void beneficiaryPiiTest() {
+ // TODO: test beneficiaryPii
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TRLinkResolveActionRequestTest.java b/src/test/java/com/fireblocks/sdk/model/TRLinkResolveActionRequestTest.java
new file mode 100644
index 0000000..0be3c12
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TRLinkResolveActionRequestTest.java
@@ -0,0 +1,39 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for TRLinkResolveActionRequest */
+class TRLinkResolveActionRequestTest {
+ private final TRLinkResolveActionRequest model = new TRLinkResolveActionRequest();
+
+ /** Model tests for TRLinkResolveActionRequest */
+ @Test
+ void testTRLinkResolveActionRequest() {
+ // TODO: test TRLinkResolveActionRequest
+ }
+
+ /** Test the property 'type' */
+ @Test
+ void typeTest() {
+ // TODO: test type
+ }
+
+ /** Test the property 'data' */
+ @Test
+ void dataTest() {
+ // TODO: test data
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/UpdateCounterpartyGroupRequestTest.java b/src/test/java/com/fireblocks/sdk/model/UpdateCounterpartyGroupRequestTest.java
new file mode 100644
index 0000000..b78286a
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/UpdateCounterpartyGroupRequestTest.java
@@ -0,0 +1,51 @@
+/*
+ * Fireblocks API
+ * Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain. - Visit our website for more information: [Fireblocks Website](https://fireblocks.com) - Visit our developer docs: [Fireblocks DevPortal](https://developers.fireblocks.com)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: developers@fireblocks.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.fireblocks.sdk.model;
+
+
+import org.junit.jupiter.api.Test;
+
+/** Model tests for UpdateCounterpartyGroupRequest */
+class UpdateCounterpartyGroupRequestTest {
+ private final UpdateCounterpartyGroupRequest model = new UpdateCounterpartyGroupRequest();
+
+ /** Model tests for UpdateCounterpartyGroupRequest */
+ @Test
+ void testUpdateCounterpartyGroupRequest() {
+ // TODO: test UpdateCounterpartyGroupRequest
+ }
+
+ /** Test the property 'name' */
+ @Test
+ void nameTest() {
+ // TODO: test name
+ }
+
+ /** Test the property 'description' */
+ @Test
+ void descriptionTest() {
+ // TODO: test description
+ }
+
+ /** Test the property 'jurisdictionCodes' */
+ @Test
+ void jurisdictionCodesTest() {
+ // TODO: test jurisdictionCodes
+ }
+
+ /** Test the property 'isActive' */
+ @Test
+ void isActiveTest() {
+ // TODO: test isActive
+ }
+}