> response =
- api.searchNetworkIds(search, excludeSelf, excludeConnected, pageCursor, pageSize);
+ api.searchNetworkIds(
+ search, excludeSelf, onlySelf, excludeConnected, pageCursor, pageSize);
}
/**
diff --git a/src/test/java/com/fireblocks/sdk/api/WebhooksV2BetaApiTest.java b/src/test/java/com/fireblocks/sdk/api/WebhooksV2BetaApiTest.java
index b08550f..fbebede 100644
--- a/src/test/java/com/fireblocks/sdk/api/WebhooksV2BetaApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/WebhooksV2BetaApiTest.java
@@ -146,6 +146,24 @@ public void getWebhooksTest() throws ApiException {
api.getWebhooks(order, pageCursor, pageSize);
}
+ /**
+ * Resend notification by id
+ *
+ * Resend notification by ID **Note:** These endpoints are currently in beta and might be
+ * subject to changes.
+ *
+ * @throws ApiException if the Api call fails
+ */
+ @Test
+ public void resendNotificationByIdTest() throws ApiException {
+ String webhookId = null;
+ String notificationId = null;
+ String idempotencyKey = null;
+
+ CompletableFuture> response =
+ api.resendNotificationById(webhookId, notificationId, idempotencyKey);
+ }
+
/**
* Update webhook
*
diff --git a/src/test/java/com/fireblocks/sdk/model/NotificationAttemptTest.java b/src/test/java/com/fireblocks/sdk/model/NotificationAttemptTest.java
new file mode 100644
index 0000000..fda70df
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/NotificationAttemptTest.java
@@ -0,0 +1,51 @@
+/*
+ * 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 NotificationAttempt */
+public class NotificationAttemptTest {
+ private final NotificationAttempt model = new NotificationAttempt();
+
+ /** Model tests for NotificationAttempt */
+ @Test
+ public void testNotificationAttempt() {
+ // TODO: test NotificationAttempt
+ }
+
+ /** Test the property 'sentTime' */
+ @Test
+ public void sentTimeTest() {
+ // TODO: test sentTime
+ }
+
+ /** Test the property 'duration' */
+ @Test
+ public void durationTest() {
+ // TODO: test duration
+ }
+
+ /** Test the property 'responseCode' */
+ @Test
+ public void responseCodeTest() {
+ // TODO: test responseCode
+ }
+
+ /** Test the property 'failureReason' */
+ @Test
+ public void failureReasonTest() {
+ // TODO: test failureReason
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/NotificationTest.java b/src/test/java/com/fireblocks/sdk/model/NotificationTest.java
index 31044a5..0480535 100644
--- a/src/test/java/com/fireblocks/sdk/model/NotificationTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/NotificationTest.java
@@ -55,12 +55,6 @@ public void eventTypeTest() {
// TODO: test eventType
}
- /** Test the property 'eventVersion' */
- @Test
- public void eventVersionTest() {
- // TODO: test eventVersion
- }
-
/** Test the property 'resourceId' */
@Test
public void resourceIdTest() {
diff --git a/src/test/java/com/fireblocks/sdk/model/NotificationWithDataTest.java b/src/test/java/com/fireblocks/sdk/model/NotificationWithDataTest.java
index 42240b2..b1b77f6 100644
--- a/src/test/java/com/fireblocks/sdk/model/NotificationWithDataTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/NotificationWithDataTest.java
@@ -55,12 +55,6 @@ public void eventTypeTest() {
// TODO: test eventType
}
- /** Test the property 'eventVersion' */
- @Test
- public void eventVersionTest() {
- // TODO: test eventVersion
- }
-
/** Test the property 'resourceId' */
@Test
public void resourceIdTest() {