>> response = api.getRoutingPolicyAssetGroups();
}
+ /**
+ * Search network IDs, both local IDs and discoverable remote IDs
+ *
+ * Retrieves a list of all local and discoverable remote network IDs. Can be filtered.
+ * **Note:** This API call is subject to Flexible Routing Schemes. Your routing policy defines
+ * how your transactions are routed. You can choose 1 of the 3 different schemes mentioned below
+ * for each asset type: - **None**; Defines the profile routing to no destination for that asset
+ * type. Incoming transactions to asset types routed to `None` will fail. -
+ * **Custom**; Route to an account that you choose. If you remove the account, incoming
+ * transactions will fail until you choose another one. - **Default**; Use the routing specified
+ * by the network profile the connection is connected to. This scheme is also referred to as
+ * \"Profile Routing\" Default Workspace Presets: - Network Profile Crypto →
+ * **Custom** - Network Profile FIAT → **None** - Network Connection Crypto → **Default** -
+ * Network Connection FIAT → **Default** - **Note**: By default, Custom routing scheme uses
+ * (`dstId` = `0`, `dstType` = `VAULT`).
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void searchNetworkIdsTest() throws ApiException {
+ String search = null;
+ Boolean excludeSelf = null;
+ Boolean excludeConnected = null;
+ String pageCursor = null;
+ BigDecimal pageSize = null;
+ CompletableFuture> response =
+ api.searchNetworkIds(search, excludeSelf, excludeConnected, pageCursor, pageSize);
+ }
+
/**
* Update network ID's discoverability.
*
diff --git a/src/test/java/com/fireblocks/sdk/api/SmartTransferApiTest.java b/src/test/java/com/fireblocks/sdk/api/SmartTransferApiTest.java
index 3cff3bc..4b0ea8e 100644
--- a/src/test/java/com/fireblocks/sdk/api/SmartTransferApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/SmartTransferApiTest.java
@@ -18,6 +18,7 @@
import com.fireblocks.sdk.model.SmartTransferApproveTerm;
import com.fireblocks.sdk.model.SmartTransferCreateTicket;
import com.fireblocks.sdk.model.SmartTransferCreateTicketTerm;
+import com.fireblocks.sdk.model.SmartTransferFundDvpTicket;
import com.fireblocks.sdk.model.SmartTransferFundTerm;
import com.fireblocks.sdk.model.SmartTransferManuallyFundTerm;
import com.fireblocks.sdk.model.SmartTransferSetTicketExpiration;
@@ -161,10 +162,11 @@ public void fulfillTicketTest() throws ApiException {
*/
@Test
public void fundDvpTicketTest() throws ApiException {
+ SmartTransferFundDvpTicket smartTransferFundDvpTicket = null;
String ticketId = null;
String idempotencyKey = null;
CompletableFuture> response =
- api.fundDvpTicket(ticketId, idempotencyKey);
+ api.fundDvpTicket(smartTransferFundDvpTicket, ticketId, idempotencyKey);
}
/**
diff --git a/src/test/java/com/fireblocks/sdk/model/ContractDeployRequestTest.java b/src/test/java/com/fireblocks/sdk/model/ContractDeployRequestTest.java
index 712265a..00ce44b 100644
--- a/src/test/java/com/fireblocks/sdk/model/ContractDeployRequestTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/ContractDeployRequestTest.java
@@ -42,4 +42,22 @@ public void vaultAccountIdTest() {
public void constructorParametersTest() {
// TODO: test constructorParameters
}
+
+ /** Test the property 'useGasless' */
+ @Test
+ public void useGaslessTest() {
+ // TODO: test useGasless
+ }
+
+ /** Test the property 'fee' */
+ @Test
+ public void feeTest() {
+ // TODO: test fee
+ }
+
+ /** Test the property 'feeLevel' */
+ @Test
+ public void feeLevelTest() {
+ // TODO: test feeLevel
+ }
}
diff --git a/src/test/java/com/fireblocks/sdk/model/CreateTokenRequestDtoTest.java b/src/test/java/com/fireblocks/sdk/model/CreateTokenRequestDtoTest.java
index 3d5026f..f7b4664 100644
--- a/src/test/java/com/fireblocks/sdk/model/CreateTokenRequestDtoTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/CreateTokenRequestDtoTest.java
@@ -54,4 +54,22 @@ public void createParamsTest() {
public void displayNameTest() {
// TODO: test displayName
}
+
+ /** Test the property 'useGasless' */
+ @Test
+ public void useGaslessTest() {
+ // TODO: test useGasless
+ }
+
+ /** Test the property 'fee' */
+ @Test
+ public void feeTest() {
+ // TODO: test fee
+ }
+
+ /** Test the property 'feeLevel' */
+ @Test
+ public void feeLevelTest() {
+ // TODO: test feeLevel
+ }
}
diff --git a/src/test/java/com/fireblocks/sdk/model/ExecuteActionRequestTest.java b/src/test/java/com/fireblocks/sdk/model/ExecuteActionRequestTest.java
index d466a73..2f1ce4c 100644
--- a/src/test/java/com/fireblocks/sdk/model/ExecuteActionRequestTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/ExecuteActionRequestTest.java
@@ -66,4 +66,10 @@ public void feeLevelTest() {
public void idTest() {
// TODO: test id
}
+
+ /** Test the property 'amount' */
+ @Test
+ public void amountTest() {
+ // TODO: test amount
+ }
}
diff --git a/src/test/java/com/fireblocks/sdk/model/RelatedRequestStatusTypeTest.java b/src/test/java/com/fireblocks/sdk/model/RelatedRequestStatusTypeTest.java
deleted file mode 100644
index 9347c8a..0000000
--- a/src/test/java/com/fireblocks/sdk/model/RelatedRequestStatusTypeTest.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Fireblocks API
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
- *
- * The version of the OpenAPI document: 1.6.2
- * Contact: support@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.Test;
-
-/** Model tests for RelatedRequestStatusType */
-public class RelatedRequestStatusTypeTest {
- /** Model tests for RelatedRequestStatusType */
- @Test
- public void testRelatedRequestStatusType() {
- // TODO: test RelatedRequestStatusType
- }
-}
diff --git a/src/test/java/com/fireblocks/sdk/model/ScreeningUpdateConfigurationsRequestTest.java b/src/test/java/com/fireblocks/sdk/model/ScreeningUpdateConfigurationsTest.java
similarity index 63%
rename from src/test/java/com/fireblocks/sdk/model/ScreeningUpdateConfigurationsRequestTest.java
rename to src/test/java/com/fireblocks/sdk/model/ScreeningUpdateConfigurationsTest.java
index 93afc5b..56f1166 100644
--- a/src/test/java/com/fireblocks/sdk/model/ScreeningUpdateConfigurationsRequestTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/ScreeningUpdateConfigurationsTest.java
@@ -15,15 +15,14 @@
import org.junit.Test;
-/** Model tests for ScreeningUpdateConfigurationsRequest */
-public class ScreeningUpdateConfigurationsRequestTest {
- private final ScreeningUpdateConfigurationsRequest model =
- new ScreeningUpdateConfigurationsRequest();
+/** Model tests for ScreeningUpdateConfigurations */
+public class ScreeningUpdateConfigurationsTest {
+ private final ScreeningUpdateConfigurations model = new ScreeningUpdateConfigurations();
- /** Model tests for ScreeningUpdateConfigurationsRequest */
+ /** Model tests for ScreeningUpdateConfigurations */
@Test
- public void testScreeningUpdateConfigurationsRequest() {
- // TODO: test ScreeningUpdateConfigurationsRequest
+ public void testScreeningUpdateConfigurations() {
+ // TODO: test ScreeningUpdateConfigurations
}
/** Test the property 'disableBypass' */
diff --git a/src/test/java/com/fireblocks/sdk/model/SearchNetworkIdsResponseTest.java b/src/test/java/com/fireblocks/sdk/model/SearchNetworkIdsResponseTest.java
new file mode 100644
index 0000000..8119c88
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/SearchNetworkIdsResponseTest.java
@@ -0,0 +1,39 @@
+/*
+ * Fireblocks API
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: support@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.Test;
+
+/** Model tests for SearchNetworkIdsResponse */
+public class SearchNetworkIdsResponseTest {
+ private final SearchNetworkIdsResponse model = new SearchNetworkIdsResponse();
+
+ /** Model tests for SearchNetworkIdsResponse */
+ @Test
+ public void testSearchNetworkIdsResponse() {
+ // TODO: test SearchNetworkIdsResponse
+ }
+
+ /** Test the property 'data' */
+ @Test
+ public void dataTest() {
+ // TODO: test data
+ }
+
+ /** Test the property 'next' */
+ @Test
+ public void nextTest() {
+ // TODO: test next
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/SmartTransferFundDvpTicketTest.java b/src/test/java/com/fireblocks/sdk/model/SmartTransferFundDvpTicketTest.java
new file mode 100644
index 0000000..3550e46
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/SmartTransferFundDvpTicketTest.java
@@ -0,0 +1,45 @@
+/*
+ * Fireblocks API
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: 1.6.2
+ * Contact: support@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.Test;
+
+/** Model tests for SmartTransferFundDvpTicket */
+public class SmartTransferFundDvpTicketTest {
+ private final SmartTransferFundDvpTicket model = new SmartTransferFundDvpTicket();
+
+ /** Model tests for SmartTransferFundDvpTicket */
+ @Test
+ public void testSmartTransferFundDvpTicket() {
+ // TODO: test SmartTransferFundDvpTicket
+ }
+
+ /** Test the property 'fee' */
+ @Test
+ public void feeTest() {
+ // TODO: test fee
+ }
+
+ /** Test the property 'feeLevel' */
+ @Test
+ public void feeLevelTest() {
+ // TODO: test feeLevel
+ }
+
+ /** Test the property 'note' */
+ @Test
+ public void noteTest() {
+ // TODO: test note
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/SmartTransferTicketTermTest.java b/src/test/java/com/fireblocks/sdk/model/SmartTransferTicketTermTest.java
index bfb750a..1f54223 100644
--- a/src/test/java/com/fireblocks/sdk/model/SmartTransferTicketTermTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/SmartTransferTicketTermTest.java
@@ -49,6 +49,12 @@ public void amountTest() {
// TODO: test amount
}
+ /** Test the property 'dvpSrcDstVaultId' */
+ @Test
+ public void dvpSrcDstVaultIdTest() {
+ // TODO: test dvpSrcDstVaultId
+ }
+
/** Test the property 'amountUsd' */
@Test
public void amountUsdTest() {
diff --git a/src/test/java/com/fireblocks/sdk/model/SmartTransferTicketTest.java b/src/test/java/com/fireblocks/sdk/model/SmartTransferTicketTest.java
index 6a6d075..f7d5472 100644
--- a/src/test/java/com/fireblocks/sdk/model/SmartTransferTicketTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/SmartTransferTicketTest.java
@@ -49,6 +49,18 @@ public void statusTest() {
// TODO: test status
}
+ /** Test the property 'dvpExecutionStatus' */
+ @Test
+ public void dvpExecutionStatusTest() {
+ // TODO: test dvpExecutionStatus
+ }
+
+ /** Test the property 'orderCreatedByNetworkId' */
+ @Test
+ public void orderCreatedByNetworkIdTest() {
+ // TODO: test orderCreatedByNetworkId
+ }
+
/** Test the property 'terms' */
@Test
public void termsTest() {
diff --git a/src/test/java/com/fireblocks/sdk/model/UnstakeRequestDtoTest.java b/src/test/java/com/fireblocks/sdk/model/UnstakeRequestDtoTest.java
index 916d677..f330bb2 100644
--- a/src/test/java/com/fireblocks/sdk/model/UnstakeRequestDtoTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/UnstakeRequestDtoTest.java
@@ -48,4 +48,10 @@ public void feeLevelTest() {
public void txNoteTest() {
// TODO: test txNote
}
+
+ /** Test the property 'amount' */
+ @Test
+ public void amountTest() {
+ // TODO: test amount
+ }
}
diff --git a/src/test/java/com/fireblocks/sdk/model/WriteCallFunctionDtoTest.java b/src/test/java/com/fireblocks/sdk/model/WriteCallFunctionDtoTest.java
index a9be73e..4ff984f 100644
--- a/src/test/java/com/fireblocks/sdk/model/WriteCallFunctionDtoTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/WriteCallFunctionDtoTest.java
@@ -60,4 +60,16 @@ public void feeTest() {
public void noteTest() {
// TODO: test note
}
+
+ /** Test the property 'useGasless' */
+ @Test
+ public void useGaslessTest() {
+ // TODO: test useGasless
+ }
+
+ /** Test the property 'externalId' */
+ @Test
+ public void externalIdTest() {
+ // TODO: test externalId
+ }
}