accountNumber) {
+ this.accountNumber = accountNumber;
+ }
+
+ /** Return true if this TravelRuleValidatePiiIVMS object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ TravelRuleValidatePiiIVMS travelRuleValidatePiiIVMS = (TravelRuleValidatePiiIVMS) o;
+ return Objects.equals(this.originatorPersons, travelRuleValidatePiiIVMS.originatorPersons)
+ && Objects.equals(
+ this.beneficiaryPersons, travelRuleValidatePiiIVMS.beneficiaryPersons)
+ && Objects.equals(this.accountNumber, travelRuleValidatePiiIVMS.accountNumber);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(originatorPersons, beneficiaryPersons, accountNumber);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class TravelRuleValidatePiiIVMS {\n");
+ sb.append(" originatorPersons: ")
+ .append(toIndentedString(originatorPersons))
+ .append("\n");
+ sb.append(" beneficiaryPersons: ")
+ .append(toIndentedString(beneficiaryPersons))
+ .append("\n");
+ sb.append(" accountNumber: ").append(toIndentedString(accountNumber)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first
+ * line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @return URL query string
+ */
+ public String toUrlQueryString() {
+ return toUrlQueryString(null);
+ }
+
+ /**
+ * Convert the instance into URL query string.
+ *
+ * @param prefix prefix of the query string
+ * @return URL query string
+ */
+ public String toUrlQueryString(String prefix) {
+ String suffix = "";
+ String containerSuffix = "";
+ String containerPrefix = "";
+ if (prefix == null) {
+ // style=form, explode=true, e.g. /pet?name=cat&type=manx
+ prefix = "";
+ } else {
+ // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
+ prefix = prefix + "[";
+ suffix = "]";
+ containerSuffix = "]";
+ containerPrefix = "[";
+ }
+
+ StringJoiner joiner = new StringJoiner("&");
+
+ // add `originatorPersons` to the URL query string
+ if (getOriginatorPersons() != null) {
+ for (int i = 0; i < getOriginatorPersons().size(); i++) {
+ if (getOriginatorPersons().get(i) != null) {
+ joiner.add(
+ getOriginatorPersons()
+ .get(i)
+ .toUrlQueryString(
+ String.format(
+ "%soriginatorPersons%s%s",
+ prefix,
+ suffix,
+ "".equals(suffix)
+ ? ""
+ : String.format(
+ "%s%d%s",
+ containerPrefix,
+ i,
+ containerSuffix))));
+ }
+ }
+ }
+
+ // add `beneficiaryPersons` to the URL query string
+ if (getBeneficiaryPersons() != null) {
+ for (int i = 0; i < getBeneficiaryPersons().size(); i++) {
+ if (getBeneficiaryPersons().get(i) != null) {
+ joiner.add(
+ getBeneficiaryPersons()
+ .get(i)
+ .toUrlQueryString(
+ String.format(
+ "%sbeneficiaryPersons%s%s",
+ prefix,
+ suffix,
+ "".equals(suffix)
+ ? ""
+ : String.format(
+ "%s%d%s",
+ containerPrefix,
+ i,
+ containerSuffix))));
+ }
+ }
+ }
+
+ // add `accountNumber` to the URL query string
+ if (getAccountNumber() != null) {
+ for (int i = 0; i < getAccountNumber().size(); i++) {
+ joiner.add(
+ String.format(
+ "%saccountNumber%s%s=%s",
+ prefix,
+ suffix,
+ "".equals(suffix)
+ ? ""
+ : String.format(
+ "%s%d%s", containerPrefix, i, containerSuffix),
+ URLEncoder.encode(
+ String.valueOf(getAccountNumber().get(i)),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+ }
+
+ return joiner.toString();
+ }
+}
diff --git a/src/main/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionRequest.java b/src/main/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionRequest.java
index f1f47053..2100730b 100644
--- a/src/main/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionRequest.java
+++ b/src/main/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionRequest.java
@@ -16,6 +16,7 @@
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.math.BigDecimal;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.Objects;
@@ -26,6 +27,7 @@
TravelRuleValidateTransactionRequest.JSON_PROPERTY_TRANSACTION_ASSET,
TravelRuleValidateTransactionRequest.JSON_PROPERTY_DESTINATION,
TravelRuleValidateTransactionRequest.JSON_PROPERTY_TRANSACTION_AMOUNT,
+ TravelRuleValidateTransactionRequest.JSON_PROPERTY_TRANSACTION_ASSET_DECIMALS,
TravelRuleValidateTransactionRequest.JSON_PROPERTY_ORIGINATOR_V_A_S_PDID,
TravelRuleValidateTransactionRequest.JSON_PROPERTY_ORIGINATOR_EQUALS_BENEFICIARY,
TravelRuleValidateTransactionRequest.JSON_PROPERTY_TRAVEL_RULE_BEHAVIOR,
@@ -46,6 +48,10 @@ public class TravelRuleValidateTransactionRequest {
public static final String JSON_PROPERTY_TRANSACTION_AMOUNT = "transactionAmount";
private String transactionAmount;
+ public static final String JSON_PROPERTY_TRANSACTION_ASSET_DECIMALS =
+ "transactionAssetDecimals";
+ private BigDecimal transactionAssetDecimals;
+
public static final String JSON_PROPERTY_ORIGINATOR_V_A_S_PDID = "originatorVASPdid";
private String originatorVASPdid;
@@ -80,7 +86,7 @@ public TravelRuleValidateTransactionRequest transactionAsset(String transactionA
}
/**
- * Transaction asset symbol BTC,ETH)
+ * Transaction asset symbol (BTC,ETH)
*
* @return transactionAsset
*/
@@ -143,6 +149,31 @@ public void setTransactionAmount(String transactionAmount) {
this.transactionAmount = transactionAmount;
}
+ public TravelRuleValidateTransactionRequest transactionAssetDecimals(
+ BigDecimal transactionAssetDecimals) {
+ this.transactionAssetDecimals = transactionAssetDecimals;
+ return this;
+ }
+
+ /**
+ * Number of decimals in the transaction asset. This is used to convert the transaction amount
+ * to the smallest unit of the asset
+ *
+ * @return transactionAssetDecimals
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_TRANSACTION_ASSET_DECIMALS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public BigDecimal getTransactionAssetDecimals() {
+ return transactionAssetDecimals;
+ }
+
+ @JsonProperty(JSON_PROPERTY_TRANSACTION_ASSET_DECIMALS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setTransactionAssetDecimals(BigDecimal transactionAssetDecimals) {
+ this.transactionAssetDecimals = transactionAssetDecimals;
+ }
+
public TravelRuleValidateTransactionRequest originatorVASPdid(String originatorVASPdid) {
this.originatorVASPdid = originatorVASPdid;
return this;
@@ -315,7 +346,7 @@ public TravelRuleValidateTransactionRequest beneficiaryAddress(
}
/**
- * Beneficiary name
+ * Get beneficiaryAddress
*
* @return beneficiaryAddress
*/
@@ -351,6 +382,9 @@ public boolean equals(Object o) {
&& Objects.equals(
this.transactionAmount,
travelRuleValidateTransactionRequest.transactionAmount)
+ && Objects.equals(
+ this.transactionAssetDecimals,
+ travelRuleValidateTransactionRequest.transactionAssetDecimals)
&& Objects.equals(
this.originatorVASPdid,
travelRuleValidateTransactionRequest.originatorVASPdid)
@@ -382,6 +416,7 @@ public int hashCode() {
transactionAsset,
destination,
transactionAmount,
+ transactionAssetDecimals,
originatorVASPdid,
originatorEqualsBeneficiary,
travelRuleBehavior,
@@ -401,6 +436,9 @@ public String toString() {
sb.append(" transactionAmount: ")
.append(toIndentedString(transactionAmount))
.append("\n");
+ sb.append(" transactionAssetDecimals: ")
+ .append(toIndentedString(transactionAssetDecimals))
+ .append("\n");
sb.append(" originatorVASPdid: ")
.append(toIndentedString(originatorVASPdid))
.append("\n");
@@ -509,6 +547,19 @@ public String toUrlQueryString(String prefix) {
.replaceAll("\\+", "%20")));
}
+ // add `transactionAssetDecimals` to the URL query string
+ if (getTransactionAssetDecimals() != null) {
+ joiner.add(
+ String.format(
+ "%stransactionAssetDecimals%s=%s",
+ prefix,
+ suffix,
+ URLEncoder.encode(
+ String.valueOf(getTransactionAssetDecimals()),
+ StandardCharsets.UTF_8)
+ .replaceAll("\\+", "%20")));
+ }
+
// add `originatorVASPdid` to the URL query string
if (getOriginatorVASPdid() != null) {
joiner.add(
diff --git a/src/main/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionResponse.java b/src/main/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionResponse.java
index 2005fd91..3acb3839 100644
--- a/src/main/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionResponse.java
+++ b/src/main/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionResponse.java
@@ -13,9 +13,11 @@
package com.fireblocks.sdk.model;
+import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import com.fasterxml.jackson.annotation.JsonValue;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
@@ -41,11 +43,93 @@ public class TravelRuleValidateTransactionResponse {
public static final String JSON_PROPERTY_TYPE = "type";
private String type;
+ /**
+ * \"beneficiaryAddressType\" will tell you if your blockchain analytics provider or
+ * internal address book has been able to identify the wallet address.
+ */
+ public enum BeneficiaryAddressTypeEnum {
+ UNKNOWN("UNKNOWN"),
+
+ HOSTED("HOSTED"),
+
+ UNHOSTED("UNHOSTED");
+
+ private String value;
+
+ BeneficiaryAddressTypeEnum(String value) {
+ this.value = value;
+ }
+
+ @JsonValue
+ public String getValue() {
+ return value;
+ }
+
+ @Override
+ public String toString() {
+ return String.valueOf(value);
+ }
+
+ @JsonCreator
+ public static BeneficiaryAddressTypeEnum fromValue(String value) {
+ for (BeneficiaryAddressTypeEnum b : BeneficiaryAddressTypeEnum.values()) {
+ if (b.value.equals(value)) {
+ return b;
+ }
+ }
+ throw new IllegalArgumentException("Unexpected value '" + value + "'");
+ }
+ }
+
public static final String JSON_PROPERTY_BENEFICIARY_ADDRESS_TYPE = "beneficiaryAddressType";
- private String beneficiaryAddressType;
+ private BeneficiaryAddressTypeEnum beneficiaryAddressType;
+
+ /**
+ * \"addressSource\" will tell you if the address was found in your internal address
+ * book or identified by the blockchain analytics provider.
+ */
+ public enum AddressSourceEnum {
+ UNKNOWN("UNKNOWN"),
+
+ ADDRESS_HASH("ADDRESS_HASH"),
+
+ ADDRESS_GRAPH("ADDRESS_GRAPH"),
+
+ CHAINALYSIS("CHAINALYSIS"),
+
+ ELLIPTIC("ELLIPTIC"),
+
+ CRYSTAL("CRYSTAL");
+
+ private String value;
+
+ AddressSourceEnum(String value) {
+ this.value = value;
+ }
+
+ @JsonValue
+ public String getValue() {
+ return value;
+ }
+
+ @Override
+ public String toString() {
+ return String.valueOf(value);
+ }
+
+ @JsonCreator
+ public static AddressSourceEnum fromValue(String value) {
+ for (AddressSourceEnum b : AddressSourceEnum.values()) {
+ if (b.value.equals(value)) {
+ return b;
+ }
+ }
+ throw new IllegalArgumentException("Unexpected value '" + value + "'");
+ }
+ }
public static final String JSON_PROPERTY_ADDRESS_SOURCE = "addressSource";
- private String addressSource;
+ private AddressSourceEnum addressSource;
public static final String JSON_PROPERTY_BENEFICIARY_V_A_S_PDID = "beneficiaryVASPdid";
private String beneficiaryVASPdid;
@@ -111,7 +195,7 @@ public void setType(String type) {
}
public TravelRuleValidateTransactionResponse beneficiaryAddressType(
- String beneficiaryAddressType) {
+ BeneficiaryAddressTypeEnum beneficiaryAddressType) {
this.beneficiaryAddressType = beneficiaryAddressType;
return this;
}
@@ -125,17 +209,17 @@ public TravelRuleValidateTransactionResponse beneficiaryAddressType(
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_BENEFICIARY_ADDRESS_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
- public String getBeneficiaryAddressType() {
+ public BeneficiaryAddressTypeEnum getBeneficiaryAddressType() {
return beneficiaryAddressType;
}
@JsonProperty(JSON_PROPERTY_BENEFICIARY_ADDRESS_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
- public void setBeneficiaryAddressType(String beneficiaryAddressType) {
+ public void setBeneficiaryAddressType(BeneficiaryAddressTypeEnum beneficiaryAddressType) {
this.beneficiaryAddressType = beneficiaryAddressType;
}
- public TravelRuleValidateTransactionResponse addressSource(String addressSource) {
+ public TravelRuleValidateTransactionResponse addressSource(AddressSourceEnum addressSource) {
this.addressSource = addressSource;
return this;
}
@@ -149,13 +233,13 @@ public TravelRuleValidateTransactionResponse addressSource(String addressSource)
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ADDRESS_SOURCE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
- public String getAddressSource() {
+ public AddressSourceEnum getAddressSource() {
return addressSource;
}
@JsonProperty(JSON_PROPERTY_ADDRESS_SOURCE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
- public void setAddressSource(String addressSource) {
+ public void setAddressSource(AddressSourceEnum addressSource) {
this.addressSource = addressSource;
}
diff --git a/src/test/java/com/fireblocks/sdk/FireblocksTest.java b/src/test/java/com/fireblocks/sdk/FireblocksTest.java
index 8f6c6384..b3f4c57a 100644
--- a/src/test/java/com/fireblocks/sdk/FireblocksTest.java
+++ b/src/test/java/com/fireblocks/sdk/FireblocksTest.java
@@ -622,11 +622,11 @@ public void testGetTransactionsApi() {
}
@Test
- public void testGetTravelRuleBetaApi() {
+ public void testGetTravelRuleApi() {
setupFireblocks(true, null, null);
- TravelRuleBetaApi travelRuleBeta = fireblocks.travelRuleBeta();
- Assert.assertNotNull(travelRuleBeta);
- Assert.assertSame(travelRuleBeta, fireblocks.travelRuleBeta());
+ TravelRuleApi travelRule = fireblocks.travelRule();
+ Assert.assertNotNull(travelRule);
+ Assert.assertSame(travelRule, fireblocks.travelRule());
}
@Test
diff --git a/src/test/java/com/fireblocks/sdk/api/TravelRuleBetaApiTest.java b/src/test/java/com/fireblocks/sdk/api/TravelRuleApiTest.java
similarity index 55%
rename from src/test/java/com/fireblocks/sdk/api/TravelRuleBetaApiTest.java
rename to src/test/java/com/fireblocks/sdk/api/TravelRuleApiTest.java
index ec791eba..3a334efe 100644
--- a/src/test/java/com/fireblocks/sdk/api/TravelRuleBetaApiTest.java
+++ b/src/test/java/com/fireblocks/sdk/api/TravelRuleApiTest.java
@@ -19,57 +19,51 @@
import com.fireblocks.sdk.model.TravelRuleUpdateVASPDetails;
import com.fireblocks.sdk.model.TravelRuleVASP;
import com.fireblocks.sdk.model.TravelRuleValidateFullTransactionRequest;
-import com.fireblocks.sdk.model.TravelRuleValidateTransactionRequest;
import com.fireblocks.sdk.model.TravelRuleValidateTransactionResponse;
import com.fireblocks.sdk.model.TravelRuleVaspForVault;
import java.math.BigDecimal;
+import java.util.List;
import java.util.concurrent.CompletableFuture;
import org.junit.Ignore;
import org.junit.Test;
-/** API tests for TravelRuleBetaApi */
+/** API tests for TravelRuleApi */
@Ignore
-public class TravelRuleBetaApiTest {
+public class TravelRuleApiTest {
- private final TravelRuleBetaApi api = new TravelRuleBetaApi();
+ private final TravelRuleApi api = new TravelRuleApi();
/**
* Get VASP details
*
- * Get VASP Details. Returns information about a VASP that has the specified DID. **Note:**
- * The reference content in this section documents the Travel Rule beta endpoint. The beta
- * endpoint includes APIs that are currently in preview and aren't yet generally available.
- * To enroll in the beta and enable this endpoint, contact your Fireblocks Customer Success
- * Manager or send an email to [CSM@fireblocks.com](mailto:CSM@fireblocks.com).
+ *
Get VASP Details. Returns information about a VASP that has the specified DID.
*
* @throws ApiException if the Api call fails
*/
@Test
public void getVASPByDIDTest() throws ApiException {
String did = null;
- String fields = null;
+ List fields = null;
CompletableFuture> response = api.getVASPByDID(did, fields);
}
/**
* Get All VASPs
*
- * Get All VASPs. Returns a list of VASPs. VASPs can be searched and sorted and results are
- * paginated. **Note:** The reference content in this section documents the Travel Rule beta
- * endpoint. The beta endpoint includes APIs that are currently in preview and aren't yet
- * generally available. To enroll in the beta and enable this endpoint, contact your Fireblocks
- * Customer Success Manager or send an email to [CSM@fireblocks.com](mailto:CSM@fireblocks.com).
+ *
Get All VASPs. Returns a list of VASPs. VASPs can be searched and sorted.
*
* @throws ApiException if the Api call fails
*/
@Test
public void getVASPsTest() throws ApiException {
String order = null;
- BigDecimal perPage = null;
- BigDecimal page = null;
- String fields = null;
+ BigDecimal pageSize = null;
+ List fields = null;
+ String search = null;
+ String reviewValue = null;
+ String pageCursor = null;
CompletableFuture> response =
- api.getVASPs(order, perPage, page, fields);
+ api.getVASPs(order, pageSize, fields, search, reviewValue, pageCursor);
}
/**
@@ -107,11 +101,7 @@ public void setVaspForVaultTest() throws ApiException {
* Add jsonDidKey to VASP details
*
* Update VASP Details. Updates a VASP with the provided parameters. Use this endpoint to add
- * your public jsonDIDkey generated by Notabene. **Note:** The reference content in this section
- * documents the Travel Rule beta endpoint. The beta endpoint includes APIs that are currently
- * in preview and aren't yet generally available. To enroll in the beta and enable this
- * endpoint, contact your Fireblocks Customer Success Manager or send an email to
- * [CSM@fireblocks.com](mailto:CSM@fireblocks.com).
+ * your public jsonDIDkey generated by Notabene.
*
* @throws ApiException if the Api call fails
*/
@@ -127,41 +117,17 @@ public void updateVaspTest() throws ApiException {
* Validate Full Travel Rule Transaction
*
*
Validate Full Travel Rule transactions. Checks for all required information on the
- * originator and beneficiary VASPs. **Note:** The reference content in this section documents
- * the Travel Rule beta endpoint. The beta endpoint includes APIs that are currently in preview
- * and aren't yet generally available. To enroll in the beta and enable this endpoint,
- * contact your Fireblocks Customer Success Manager or send an email to
- * [CSM@fireblocks.com](mailto:CSM@fireblocks.com).
+ * originator and beneficiary VASPs.
*
* @throws ApiException if the Api call fails
*/
@Test
public void validateFullTravelRuleTransactionTest() throws ApiException {
TravelRuleValidateFullTransactionRequest travelRuleValidateFullTransactionRequest = null;
+ List notation = null;
String idempotencyKey = null;
CompletableFuture> response =
api.validateFullTravelRuleTransaction(
- travelRuleValidateFullTransactionRequest, idempotencyKey);
- }
-
- /**
- * Validate Travel Rule Transaction
- *
- * Validate Travel Rule transactions. Checks what beneficiary VASP details are required by
- * your jurisdiction and the beneficiary's jurisdiction. **Note:** The reference content in
- * this section documents the Travel Rule beta endpoint. The beta endpoint includes APIs that
- * are currently in preview and aren't yet generally available. To enroll in the beta and
- * enable this endpoint, contact your Fireblocks Customer Success Manager or send an email to
- * [CSM@fireblocks.com](mailto:CSM@fireblocks.com).
- *
- * @throws ApiException if the Api call fails
- */
- @Test
- public void validateTravelRuleTransactionTest() throws ApiException {
- TravelRuleValidateTransactionRequest travelRuleValidateTransactionRequest = null;
- String idempotencyKey = null;
- CompletableFuture> response =
- api.validateTravelRuleTransaction(
- travelRuleValidateTransactionRequest, idempotencyKey);
+ travelRuleValidateFullTransactionRequest, notation, idempotencyKey);
}
}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleCreateTransactionRequestTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleCreateTransactionRequestTest.java
index 817d12b2..bc9f3537 100644
--- a/src/test/java/com/fireblocks/sdk/model/TravelRuleCreateTransactionRequestTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleCreateTransactionRequestTest.java
@@ -38,12 +38,24 @@ public void beneficiaryVASPdidTest() {
// TODO: test beneficiaryVASPdid
}
+ /** Test the property 'originatorVASPname' */
+ @Test
+ public void originatorVASPnameTest() {
+ // TODO: test originatorVASPname
+ }
+
/** Test the property 'beneficiaryVASPname' */
@Test
public void beneficiaryVASPnameTest() {
// TODO: test beneficiaryVASPname
}
+ /** Test the property 'beneficiaryVASPwebsite' */
+ @Test
+ public void beneficiaryVASPwebsiteTest() {
+ // TODO: test beneficiaryVASPwebsite
+ }
+
/** Test the property 'transactionBlockchainInfo' */
@Test
public void transactionBlockchainInfoTest() {
@@ -86,6 +98,24 @@ public void travelRuleBehaviorTest() {
// TODO: test travelRuleBehavior
}
+ /** Test the property 'originatorRef' */
+ @Test
+ public void originatorRefTest() {
+ // TODO: test originatorRef
+ }
+
+ /** Test the property 'beneficiaryRef' */
+ @Test
+ public void beneficiaryRefTest() {
+ // TODO: test beneficiaryRef
+ }
+
+ /** Test the property 'travelRuleBehaviorRef' */
+ @Test
+ public void travelRuleBehaviorRefTest() {
+ // TODO: test travelRuleBehaviorRef
+ }
+
/** Test the property 'originatorProof' */
@Test
public void originatorProofTest() {
@@ -98,9 +128,21 @@ public void beneficiaryProofTest() {
// TODO: test beneficiaryProof
}
- /** Test the property 'pii' */
+ /** Test the property 'beneficiaryDid' */
+ @Test
+ public void beneficiaryDidTest() {
+ // TODO: test beneficiaryDid
+ }
+
+ /** Test the property 'originatorDid' */
+ @Test
+ public void originatorDidTest() {
+ // TODO: test originatorDid
+ }
+
+ /** Test the property 'isNonCustodial' */
@Test
- public void piiTest() {
- // TODO: test pii
+ public void isNonCustodialTest() {
+ // TODO: test isNonCustodial
}
}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleDateAndPlaceOfBirthTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleDateAndPlaceOfBirthTest.java
new file mode 100644
index 00000000..79e7efe9
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleDateAndPlaceOfBirthTest.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 TravelRuleDateAndPlaceOfBirth */
+public class TravelRuleDateAndPlaceOfBirthTest {
+ private final TravelRuleDateAndPlaceOfBirth model = new TravelRuleDateAndPlaceOfBirth();
+
+ /** Model tests for TravelRuleDateAndPlaceOfBirth */
+ @Test
+ public void testTravelRuleDateAndPlaceOfBirth() {
+ // TODO: test TravelRuleDateAndPlaceOfBirth
+ }
+
+ /** Test the property 'dateOfBirth' */
+ @Test
+ public void dateOfBirthTest() {
+ // TODO: test dateOfBirth
+ }
+
+ /** Test the property 'placeOfBirth' */
+ @Test
+ public void placeOfBirthTest() {
+ // TODO: test placeOfBirth
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleGeographicAddressTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleGeographicAddressTest.java
new file mode 100644
index 00000000..1b046aeb
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleGeographicAddressTest.java
@@ -0,0 +1,123 @@
+/*
+ * 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 TravelRuleGeographicAddress */
+public class TravelRuleGeographicAddressTest {
+ private final TravelRuleGeographicAddress model = new TravelRuleGeographicAddress();
+
+ /** Model tests for TravelRuleGeographicAddress */
+ @Test
+ public void testTravelRuleGeographicAddress() {
+ // TODO: test TravelRuleGeographicAddress
+ }
+
+ /** Test the property 'streetName' */
+ @Test
+ public void streetNameTest() {
+ // TODO: test streetName
+ }
+
+ /** Test the property 'townName' */
+ @Test
+ public void townNameTest() {
+ // TODO: test townName
+ }
+
+ /** Test the property 'country' */
+ @Test
+ public void countryTest() {
+ // TODO: test country
+ }
+
+ /** Test the property 'buildingNumber' */
+ @Test
+ public void buildingNumberTest() {
+ // TODO: test buildingNumber
+ }
+
+ /** Test the property 'postCode' */
+ @Test
+ public void postCodeTest() {
+ // TODO: test postCode
+ }
+
+ /** Test the property 'addressType' */
+ @Test
+ public void addressTypeTest() {
+ // TODO: test addressType
+ }
+
+ /** Test the property 'department' */
+ @Test
+ public void departmentTest() {
+ // TODO: test department
+ }
+
+ /** Test the property 'subDepartment' */
+ @Test
+ public void subDepartmentTest() {
+ // TODO: test subDepartment
+ }
+
+ /** Test the property 'buildingName' */
+ @Test
+ public void buildingNameTest() {
+ // TODO: test buildingName
+ }
+
+ /** Test the property 'floor' */
+ @Test
+ public void floorTest() {
+ // TODO: test floor
+ }
+
+ /** Test the property 'postBox' */
+ @Test
+ public void postBoxTest() {
+ // TODO: test postBox
+ }
+
+ /** Test the property 'room' */
+ @Test
+ public void roomTest() {
+ // TODO: test room
+ }
+
+ /** Test the property 'townLocationName' */
+ @Test
+ public void townLocationNameTest() {
+ // TODO: test townLocationName
+ }
+
+ /** Test the property 'districtName' */
+ @Test
+ public void districtNameTest() {
+ // TODO: test districtName
+ }
+
+ /** Test the property 'countrySubDivision' */
+ @Test
+ public void countrySubDivisionTest() {
+ // TODO: test countrySubDivision
+ }
+
+ /** Test the property 'addressLine' */
+ @Test
+ public void addressLineTest() {
+ // TODO: test addressLine
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleGetAllVASPsResponseTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleGetAllVASPsResponseTest.java
index af164356..35fea2b9 100644
--- a/src/test/java/com/fireblocks/sdk/model/TravelRuleGetAllVASPsResponseTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleGetAllVASPsResponseTest.java
@@ -25,9 +25,21 @@ public void testTravelRuleGetAllVASPsResponse() {
// TODO: test TravelRuleGetAllVASPsResponse
}
- /** Test the property 'vasps' */
+ /** Test the property 'data' */
@Test
- public void vaspsTest() {
- // TODO: test vasps
+ public void dataTest() {
+ // TODO: test data
+ }
+
+ /** Test the property 'total' */
+ @Test
+ public void totalTest() {
+ // TODO: test total
+ }
+
+ /** Test the property 'next' */
+ @Test
+ public void nextTest() {
+ // TODO: test next
}
}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleLegalPersonNameIdentifierTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleLegalPersonNameIdentifierTest.java
new file mode 100644
index 00000000..bbd6e568
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleLegalPersonNameIdentifierTest.java
@@ -0,0 +1,40 @@
+/*
+ * 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 TravelRuleLegalPersonNameIdentifier */
+public class TravelRuleLegalPersonNameIdentifierTest {
+ private final TravelRuleLegalPersonNameIdentifier model =
+ new TravelRuleLegalPersonNameIdentifier();
+
+ /** Model tests for TravelRuleLegalPersonNameIdentifier */
+ @Test
+ public void testTravelRuleLegalPersonNameIdentifier() {
+ // TODO: test TravelRuleLegalPersonNameIdentifier
+ }
+
+ /** Test the property 'legalPersonName' */
+ @Test
+ public void legalPersonNameTest() {
+ // TODO: test legalPersonName
+ }
+
+ /** Test the property 'legalPersonNameIdentifierType' */
+ @Test
+ public void legalPersonNameIdentifierTypeTest() {
+ // TODO: test legalPersonNameIdentifierType
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleLegalPersonTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleLegalPersonTest.java
new file mode 100644
index 00000000..d4829905
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleLegalPersonTest.java
@@ -0,0 +1,63 @@
+/*
+ * 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 TravelRuleLegalPerson */
+public class TravelRuleLegalPersonTest {
+ private final TravelRuleLegalPerson model = new TravelRuleLegalPerson();
+
+ /** Model tests for TravelRuleLegalPerson */
+ @Test
+ public void testTravelRuleLegalPerson() {
+ // TODO: test TravelRuleLegalPerson
+ }
+
+ /** Test the property 'name' */
+ @Test
+ public void nameTest() {
+ // TODO: test name
+ }
+
+ /** Test the property 'geographicAddress' */
+ @Test
+ public void geographicAddressTest() {
+ // TODO: test geographicAddress
+ }
+
+ /** Test the property 'nationalIdentification' */
+ @Test
+ public void nationalIdentificationTest() {
+ // TODO: test nationalIdentification
+ }
+
+ /** Test the property 'customerIdentification' */
+ @Test
+ public void customerIdentificationTest() {
+ // TODO: test customerIdentification
+ }
+
+ /** Test the property 'customerNumber' */
+ @Test
+ public void customerNumberTest() {
+ // TODO: test customerNumber
+ }
+
+ /** Test the property 'countryOfRegistration' */
+ @Test
+ public void countryOfRegistrationTest() {
+ // TODO: test countryOfRegistration
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleNationalIdentificationTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleNationalIdentificationTest.java
new file mode 100644
index 00000000..62884e07
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleNationalIdentificationTest.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 TravelRuleNationalIdentification */
+public class TravelRuleNationalIdentificationTest {
+ private final TravelRuleNationalIdentification model = new TravelRuleNationalIdentification();
+
+ /** Model tests for TravelRuleNationalIdentification */
+ @Test
+ public void testTravelRuleNationalIdentification() {
+ // TODO: test TravelRuleNationalIdentification
+ }
+
+ /** Test the property 'countryOfIssue' */
+ @Test
+ public void countryOfIssueTest() {
+ // TODO: test countryOfIssue
+ }
+
+ /** Test the property 'nationalIdentifier' */
+ @Test
+ public void nationalIdentifierTest() {
+ // TODO: test nationalIdentifier
+ }
+
+ /** Test the property 'nationalIdentifierType' */
+ @Test
+ public void nationalIdentifierTypeTest() {
+ // TODO: test nationalIdentifierType
+ }
+
+ /** Test the property 'registrationAuthority' */
+ @Test
+ public void registrationAuthorityTest() {
+ // TODO: test registrationAuthority
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleNaturalNameIdentifierTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleNaturalNameIdentifierTest.java
new file mode 100644
index 00000000..ce57ac48
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleNaturalNameIdentifierTest.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 TravelRuleNaturalNameIdentifier */
+public class TravelRuleNaturalNameIdentifierTest {
+ private final TravelRuleNaturalNameIdentifier model = new TravelRuleNaturalNameIdentifier();
+
+ /** Model tests for TravelRuleNaturalNameIdentifier */
+ @Test
+ public void testTravelRuleNaturalNameIdentifier() {
+ // TODO: test TravelRuleNaturalNameIdentifier
+ }
+
+ /** Test the property 'primaryIdentifier' */
+ @Test
+ public void primaryIdentifierTest() {
+ // TODO: test primaryIdentifier
+ }
+
+ /** Test the property 'secondaryIdentifier' */
+ @Test
+ public void secondaryIdentifierTest() {
+ // TODO: test secondaryIdentifier
+ }
+
+ /** Test the property 'nameIdentifierType' */
+ @Test
+ public void nameIdentifierTypeTest() {
+ // TODO: test nameIdentifierType
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleNaturalPersonNameIdentifierTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleNaturalPersonNameIdentifierTest.java
new file mode 100644
index 00000000..f5f5eb59
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleNaturalPersonNameIdentifierTest.java
@@ -0,0 +1,46 @@
+/*
+ * 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 TravelRuleNaturalPersonNameIdentifier */
+public class TravelRuleNaturalPersonNameIdentifierTest {
+ private final TravelRuleNaturalPersonNameIdentifier model =
+ new TravelRuleNaturalPersonNameIdentifier();
+
+ /** Model tests for TravelRuleNaturalPersonNameIdentifier */
+ @Test
+ public void testTravelRuleNaturalPersonNameIdentifier() {
+ // TODO: test TravelRuleNaturalPersonNameIdentifier
+ }
+
+ /** Test the property 'nameIdentifier' */
+ @Test
+ public void nameIdentifierTest() {
+ // TODO: test nameIdentifier
+ }
+
+ /** Test the property 'localNameIdentifier' */
+ @Test
+ public void localNameIdentifierTest() {
+ // TODO: test localNameIdentifier
+ }
+
+ /** Test the property 'phoneticNameIdentifier' */
+ @Test
+ public void phoneticNameIdentifierTest() {
+ // TODO: test phoneticNameIdentifier
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleNaturalPersonTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleNaturalPersonTest.java
new file mode 100644
index 00000000..2c795884
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleNaturalPersonTest.java
@@ -0,0 +1,69 @@
+/*
+ * 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 TravelRuleNaturalPerson */
+public class TravelRuleNaturalPersonTest {
+ private final TravelRuleNaturalPerson model = new TravelRuleNaturalPerson();
+
+ /** Model tests for TravelRuleNaturalPerson */
+ @Test
+ public void testTravelRuleNaturalPerson() {
+ // TODO: test TravelRuleNaturalPerson
+ }
+
+ /** Test the property 'name' */
+ @Test
+ public void nameTest() {
+ // TODO: test name
+ }
+
+ /** Test the property 'geographicAddress' */
+ @Test
+ public void geographicAddressTest() {
+ // TODO: test geographicAddress
+ }
+
+ /** Test the property 'nationalIdentification' */
+ @Test
+ public void nationalIdentificationTest() {
+ // TODO: test nationalIdentification
+ }
+
+ /** Test the property 'dateAndPlaceOfBirth' */
+ @Test
+ public void dateAndPlaceOfBirthTest() {
+ // TODO: test dateAndPlaceOfBirth
+ }
+
+ /** Test the property 'customerIdentification' */
+ @Test
+ public void customerIdentificationTest() {
+ // TODO: test customerIdentification
+ }
+
+ /** Test the property 'countryOfResidence' */
+ @Test
+ public void countryOfResidenceTest() {
+ // TODO: test countryOfResidence
+ }
+
+ /** Test the property 'customerNumber' */
+ @Test
+ public void customerNumberTest() {
+ // TODO: test customerNumber
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleOwnershipProofTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleOwnershipProofTest.java
index c3a925a4..fa7961ba 100644
--- a/src/test/java/com/fireblocks/sdk/model/TravelRuleOwnershipProofTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleOwnershipProofTest.java
@@ -36,4 +36,34 @@ public void typeTest() {
public void proofTest() {
// TODO: test proof
}
+
+ /** Test the property 'attestation' */
+ @Test
+ public void attestationTest() {
+ // TODO: test attestation
+ }
+
+ /** Test the property 'address' */
+ @Test
+ public void addressTest() {
+ // TODO: test address
+ }
+
+ /** Test the property 'walletProvider' */
+ @Test
+ public void walletProviderTest() {
+ // TODO: test walletProvider
+ }
+
+ /** Test the property 'url' */
+ @Test
+ public void urlTest() {
+ // TODO: test url
+ }
+
+ /** Test the property 'confirmed' */
+ @Test
+ public void confirmedTest() {
+ // TODO: test confirmed
+ }
}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRulePersonTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRulePersonTest.java
new file mode 100644
index 00000000..fcdb7282
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRulePersonTest.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 TravelRulePerson */
+public class TravelRulePersonTest {
+ private final TravelRulePerson model = new TravelRulePerson();
+
+ /** Model tests for TravelRulePerson */
+ @Test
+ public void testTravelRulePerson() {
+ // TODO: test TravelRulePerson
+ }
+
+ /** Test the property 'naturalPerson' */
+ @Test
+ public void naturalPersonTest() {
+ // TODO: test naturalPerson
+ }
+
+ /** Test the property 'legalPerson' */
+ @Test
+ public void legalPersonTest() {
+ // TODO: test legalPerson
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRulePiiIVMSTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRulePiiIVMSTest.java
index d37c93a8..016e33ac 100644
--- a/src/test/java/com/fireblocks/sdk/model/TravelRulePiiIVMSTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRulePiiIVMSTest.java
@@ -25,57 +25,21 @@ public void testTravelRulePiiIVMS() {
// TODO: test TravelRulePiiIVMS
}
- /** Test the property 'fullName' */
+ /** Test the property 'originatorPersons' */
@Test
- public void fullNameTest() {
- // TODO: test fullName
+ public void originatorPersonsTest() {
+ // TODO: test originatorPersons
}
- /** Test the property 'dateOfBirth' */
+ /** Test the property 'beneficiaryPersons' */
@Test
- public void dateOfBirthTest() {
- // TODO: test dateOfBirth
+ public void beneficiaryPersonsTest() {
+ // TODO: test beneficiaryPersons
}
- /** Test the property 'placeOfBirth' */
+ /** Test the property 'accountNumber' */
@Test
- public void placeOfBirthTest() {
- // TODO: test placeOfBirth
- }
-
- /** Test the property 'address' */
- @Test
- public void addressTest() {
- // TODO: test address
- }
-
- /** Test the property 'identificationNumber' */
- @Test
- public void identificationNumberTest() {
- // TODO: test identificationNumber
- }
-
- /** Test the property 'nationality' */
- @Test
- public void nationalityTest() {
- // TODO: test nationality
- }
-
- /** Test the property 'countryOfResidence' */
- @Test
- public void countryOfResidenceTest() {
- // TODO: test countryOfResidence
- }
-
- /** Test the property 'taxIdentificationNumber' */
- @Test
- public void taxIdentificationNumberTest() {
- // TODO: test taxIdentificationNumber
- }
-
- /** Test the property 'customerNumber' */
- @Test
- public void customerNumberTest() {
- // TODO: test customerNumber
+ public void accountNumberTest() {
+ // TODO: test accountNumber
}
}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateDateAndPlaceOfBirthTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateDateAndPlaceOfBirthTest.java
new file mode 100644
index 00000000..a8345f3e
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateDateAndPlaceOfBirthTest.java
@@ -0,0 +1,40 @@
+/*
+ * 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 TravelRuleValidateDateAndPlaceOfBirth */
+public class TravelRuleValidateDateAndPlaceOfBirthTest {
+ private final TravelRuleValidateDateAndPlaceOfBirth model =
+ new TravelRuleValidateDateAndPlaceOfBirth();
+
+ /** Model tests for TravelRuleValidateDateAndPlaceOfBirth */
+ @Test
+ public void testTravelRuleValidateDateAndPlaceOfBirth() {
+ // TODO: test TravelRuleValidateDateAndPlaceOfBirth
+ }
+
+ /** Test the property 'dateOfBirth' */
+ @Test
+ public void dateOfBirthTest() {
+ // TODO: test dateOfBirth
+ }
+
+ /** Test the property 'placeOfBirth' */
+ @Test
+ public void placeOfBirthTest() {
+ // TODO: test placeOfBirth
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateFullTransactionRequestTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateFullTransactionRequestTest.java
index 8e7a064a..98cb52e5 100644
--- a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateFullTransactionRequestTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateFullTransactionRequestTest.java
@@ -26,40 +26,34 @@ public void testTravelRuleValidateFullTransactionRequest() {
// TODO: test TravelRuleValidateFullTransactionRequest
}
- /** Test the property 'transactionAsset' */
- @Test
- public void transactionAssetTest() {
- // TODO: test transactionAsset
- }
-
- /** Test the property 'transactionAmount' */
+ /** Test the property 'originatorVASPdid' */
@Test
- public void transactionAmountTest() {
- // TODO: test transactionAmount
+ public void originatorVASPdidTest() {
+ // TODO: test originatorVASPdid
}
- /** Test the property 'originatorDid' */
+ /** Test the property 'beneficiaryVASPdid' */
@Test
- public void originatorDidTest() {
- // TODO: test originatorDid
+ public void beneficiaryVASPdidTest() {
+ // TODO: test beneficiaryVASPdid
}
- /** Test the property 'beneficiaryDid' */
+ /** Test the property 'transactionAsset' */
@Test
- public void beneficiaryDidTest() {
- // TODO: test beneficiaryDid
+ public void transactionAssetTest() {
+ // TODO: test transactionAsset
}
- /** Test the property 'originatorVASPdid' */
+ /** Test the property 'transactionAmount' */
@Test
- public void originatorVASPdidTest() {
- // TODO: test originatorVASPdid
+ public void transactionAmountTest() {
+ // TODO: test transactionAmount
}
- /** Test the property 'beneficiaryVASPdid' */
+ /** Test the property 'originatorVASPname' */
@Test
- public void beneficiaryVASPdidTest() {
- // TODO: test beneficiaryVASPdid
+ public void originatorVASPnameTest() {
+ // TODO: test originatorVASPname
}
/** Test the property 'beneficiaryVASPname' */
@@ -98,12 +92,6 @@ public void protocolTest() {
// TODO: test protocol
}
- /** Test the property 'notificationEmail' */
- @Test
- public void notificationEmailTest() {
- // TODO: test notificationEmail
- }
-
/** Test the property 'skipBeneficiaryDataValidation' */
@Test
public void skipBeneficiaryDataValidationTest() {
@@ -116,6 +104,24 @@ public void travelRuleBehaviorTest() {
// TODO: test travelRuleBehavior
}
+ /** Test the property 'originatorRef' */
+ @Test
+ public void originatorRefTest() {
+ // TODO: test originatorRef
+ }
+
+ /** Test the property 'beneficiaryRef' */
+ @Test
+ public void beneficiaryRefTest() {
+ // TODO: test beneficiaryRef
+ }
+
+ /** Test the property 'travelRuleBehaviorRef' */
+ @Test
+ public void travelRuleBehaviorRefTest() {
+ // TODO: test travelRuleBehaviorRef
+ }
+
/** Test the property 'originatorProof' */
@Test
public void originatorProofTest() {
@@ -128,9 +134,39 @@ public void beneficiaryProofTest() {
// TODO: test beneficiaryProof
}
+ /** Test the property 'beneficiaryDid' */
+ @Test
+ public void beneficiaryDidTest() {
+ // TODO: test beneficiaryDid
+ }
+
+ /** Test the property 'originatorDid' */
+ @Test
+ public void originatorDidTest() {
+ // TODO: test originatorDid
+ }
+
+ /** Test the property 'isNonCustodial' */
+ @Test
+ public void isNonCustodialTest() {
+ // TODO: test isNonCustodial
+ }
+
+ /** Test the property 'notificationEmail' */
+ @Test
+ public void notificationEmailTest() {
+ // TODO: test notificationEmail
+ }
+
/** Test the property 'pii' */
@Test
public void piiTest() {
// TODO: test pii
}
+
+ /** Test the property 'piiUrl' */
+ @Test
+ public void piiUrlTest() {
+ // TODO: test piiUrl
+ }
}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateGeographicAddressTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateGeographicAddressTest.java
new file mode 100644
index 00000000..1868332b
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateGeographicAddressTest.java
@@ -0,0 +1,124 @@
+/*
+ * 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 TravelRuleValidateGeographicAddress */
+public class TravelRuleValidateGeographicAddressTest {
+ private final TravelRuleValidateGeographicAddress model =
+ new TravelRuleValidateGeographicAddress();
+
+ /** Model tests for TravelRuleValidateGeographicAddress */
+ @Test
+ public void testTravelRuleValidateGeographicAddress() {
+ // TODO: test TravelRuleValidateGeographicAddress
+ }
+
+ /** Test the property 'streetName' */
+ @Test
+ public void streetNameTest() {
+ // TODO: test streetName
+ }
+
+ /** Test the property 'townName' */
+ @Test
+ public void townNameTest() {
+ // TODO: test townName
+ }
+
+ /** Test the property 'country' */
+ @Test
+ public void countryTest() {
+ // TODO: test country
+ }
+
+ /** Test the property 'buildingNumber' */
+ @Test
+ public void buildingNumberTest() {
+ // TODO: test buildingNumber
+ }
+
+ /** Test the property 'postCode' */
+ @Test
+ public void postCodeTest() {
+ // TODO: test postCode
+ }
+
+ /** Test the property 'addressType' */
+ @Test
+ public void addressTypeTest() {
+ // TODO: test addressType
+ }
+
+ /** Test the property 'department' */
+ @Test
+ public void departmentTest() {
+ // TODO: test department
+ }
+
+ /** Test the property 'subDepartment' */
+ @Test
+ public void subDepartmentTest() {
+ // TODO: test subDepartment
+ }
+
+ /** Test the property 'buildingName' */
+ @Test
+ public void buildingNameTest() {
+ // TODO: test buildingName
+ }
+
+ /** Test the property 'floor' */
+ @Test
+ public void floorTest() {
+ // TODO: test floor
+ }
+
+ /** Test the property 'postBox' */
+ @Test
+ public void postBoxTest() {
+ // TODO: test postBox
+ }
+
+ /** Test the property 'room' */
+ @Test
+ public void roomTest() {
+ // TODO: test room
+ }
+
+ /** Test the property 'townLocationName' */
+ @Test
+ public void townLocationNameTest() {
+ // TODO: test townLocationName
+ }
+
+ /** Test the property 'districtName' */
+ @Test
+ public void districtNameTest() {
+ // TODO: test districtName
+ }
+
+ /** Test the property 'countrySubDivision' */
+ @Test
+ public void countrySubDivisionTest() {
+ // TODO: test countrySubDivision
+ }
+
+ /** Test the property 'addressLine' */
+ @Test
+ public void addressLineTest() {
+ // TODO: test addressLine
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateLegalPersonNameIdentifierTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateLegalPersonNameIdentifierTest.java
new file mode 100644
index 00000000..c4916384
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateLegalPersonNameIdentifierTest.java
@@ -0,0 +1,40 @@
+/*
+ * 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 TravelRuleValidateLegalPersonNameIdentifier */
+public class TravelRuleValidateLegalPersonNameIdentifierTest {
+ private final TravelRuleValidateLegalPersonNameIdentifier model =
+ new TravelRuleValidateLegalPersonNameIdentifier();
+
+ /** Model tests for TravelRuleValidateLegalPersonNameIdentifier */
+ @Test
+ public void testTravelRuleValidateLegalPersonNameIdentifier() {
+ // TODO: test TravelRuleValidateLegalPersonNameIdentifier
+ }
+
+ /** Test the property 'legalPersonName' */
+ @Test
+ public void legalPersonNameTest() {
+ // TODO: test legalPersonName
+ }
+
+ /** Test the property 'legalPersonNameIdentifierType' */
+ @Test
+ public void legalPersonNameIdentifierTypeTest() {
+ // TODO: test legalPersonNameIdentifierType
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateLegalPersonTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateLegalPersonTest.java
new file mode 100644
index 00000000..b0f3b318
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateLegalPersonTest.java
@@ -0,0 +1,63 @@
+/*
+ * 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 TravelRuleValidateLegalPerson */
+public class TravelRuleValidateLegalPersonTest {
+ private final TravelRuleValidateLegalPerson model = new TravelRuleValidateLegalPerson();
+
+ /** Model tests for TravelRuleValidateLegalPerson */
+ @Test
+ public void testTravelRuleValidateLegalPerson() {
+ // TODO: test TravelRuleValidateLegalPerson
+ }
+
+ /** Test the property 'name' */
+ @Test
+ public void nameTest() {
+ // TODO: test name
+ }
+
+ /** Test the property 'geographicAddress' */
+ @Test
+ public void geographicAddressTest() {
+ // TODO: test geographicAddress
+ }
+
+ /** Test the property 'nationalIdentification' */
+ @Test
+ public void nationalIdentificationTest() {
+ // TODO: test nationalIdentification
+ }
+
+ /** Test the property 'customerIdentification' */
+ @Test
+ public void customerIdentificationTest() {
+ // TODO: test customerIdentification
+ }
+
+ /** Test the property 'customerNumber' */
+ @Test
+ public void customerNumberTest() {
+ // TODO: test customerNumber
+ }
+
+ /** Test the property 'countryOfRegistration' */
+ @Test
+ public void countryOfRegistrationTest() {
+ // TODO: test countryOfRegistration
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNationalIdentificationTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNationalIdentificationTest.java
new file mode 100644
index 00000000..dd914d15
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNationalIdentificationTest.java
@@ -0,0 +1,52 @@
+/*
+ * 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 TravelRuleValidateNationalIdentification */
+public class TravelRuleValidateNationalIdentificationTest {
+ private final TravelRuleValidateNationalIdentification model =
+ new TravelRuleValidateNationalIdentification();
+
+ /** Model tests for TravelRuleValidateNationalIdentification */
+ @Test
+ public void testTravelRuleValidateNationalIdentification() {
+ // TODO: test TravelRuleValidateNationalIdentification
+ }
+
+ /** Test the property 'countryOfIssue' */
+ @Test
+ public void countryOfIssueTest() {
+ // TODO: test countryOfIssue
+ }
+
+ /** Test the property 'nationalIdentifier' */
+ @Test
+ public void nationalIdentifierTest() {
+ // TODO: test nationalIdentifier
+ }
+
+ /** Test the property 'nationalIdentifierType' */
+ @Test
+ public void nationalIdentifierTypeTest() {
+ // TODO: test nationalIdentifierType
+ }
+
+ /** Test the property 'registrationAuthority' */
+ @Test
+ public void registrationAuthorityTest() {
+ // TODO: test registrationAuthority
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNaturalNameIdentifierTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNaturalNameIdentifierTest.java
new file mode 100644
index 00000000..b9db136d
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNaturalNameIdentifierTest.java
@@ -0,0 +1,46 @@
+/*
+ * 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 TravelRuleValidateNaturalNameIdentifier */
+public class TravelRuleValidateNaturalNameIdentifierTest {
+ private final TravelRuleValidateNaturalNameIdentifier model =
+ new TravelRuleValidateNaturalNameIdentifier();
+
+ /** Model tests for TravelRuleValidateNaturalNameIdentifier */
+ @Test
+ public void testTravelRuleValidateNaturalNameIdentifier() {
+ // TODO: test TravelRuleValidateNaturalNameIdentifier
+ }
+
+ /** Test the property 'primaryIdentifier' */
+ @Test
+ public void primaryIdentifierTest() {
+ // TODO: test primaryIdentifier
+ }
+
+ /** Test the property 'secondaryIdentifier' */
+ @Test
+ public void secondaryIdentifierTest() {
+ // TODO: test secondaryIdentifier
+ }
+
+ /** Test the property 'nameIdentifierType' */
+ @Test
+ public void nameIdentifierTypeTest() {
+ // TODO: test nameIdentifierType
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNaturalPersonNameIdentifierTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNaturalPersonNameIdentifierTest.java
new file mode 100644
index 00000000..3a751662
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNaturalPersonNameIdentifierTest.java
@@ -0,0 +1,46 @@
+/*
+ * 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 TravelRuleValidateNaturalPersonNameIdentifier */
+public class TravelRuleValidateNaturalPersonNameIdentifierTest {
+ private final TravelRuleValidateNaturalPersonNameIdentifier model =
+ new TravelRuleValidateNaturalPersonNameIdentifier();
+
+ /** Model tests for TravelRuleValidateNaturalPersonNameIdentifier */
+ @Test
+ public void testTravelRuleValidateNaturalPersonNameIdentifier() {
+ // TODO: test TravelRuleValidateNaturalPersonNameIdentifier
+ }
+
+ /** Test the property 'nameIdentifier' */
+ @Test
+ public void nameIdentifierTest() {
+ // TODO: test nameIdentifier
+ }
+
+ /** Test the property 'localNameIdentifier' */
+ @Test
+ public void localNameIdentifierTest() {
+ // TODO: test localNameIdentifier
+ }
+
+ /** Test the property 'phoneticNameIdentifier' */
+ @Test
+ public void phoneticNameIdentifierTest() {
+ // TODO: test phoneticNameIdentifier
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNaturalPersonTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNaturalPersonTest.java
new file mode 100644
index 00000000..30327ccc
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateNaturalPersonTest.java
@@ -0,0 +1,69 @@
+/*
+ * 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 TravelRuleValidateNaturalPerson */
+public class TravelRuleValidateNaturalPersonTest {
+ private final TravelRuleValidateNaturalPerson model = new TravelRuleValidateNaturalPerson();
+
+ /** Model tests for TravelRuleValidateNaturalPerson */
+ @Test
+ public void testTravelRuleValidateNaturalPerson() {
+ // TODO: test TravelRuleValidateNaturalPerson
+ }
+
+ /** Test the property 'name' */
+ @Test
+ public void nameTest() {
+ // TODO: test name
+ }
+
+ /** Test the property 'geographicAddress' */
+ @Test
+ public void geographicAddressTest() {
+ // TODO: test geographicAddress
+ }
+
+ /** Test the property 'nationalIdentification' */
+ @Test
+ public void nationalIdentificationTest() {
+ // TODO: test nationalIdentification
+ }
+
+ /** Test the property 'dateAndPlaceOfBirth' */
+ @Test
+ public void dateAndPlaceOfBirthTest() {
+ // TODO: test dateAndPlaceOfBirth
+ }
+
+ /** Test the property 'customerIdentification' */
+ @Test
+ public void customerIdentificationTest() {
+ // TODO: test customerIdentification
+ }
+
+ /** Test the property 'countryOfResidence' */
+ @Test
+ public void countryOfResidenceTest() {
+ // TODO: test countryOfResidence
+ }
+
+ /** Test the property 'customerNumber' */
+ @Test
+ public void customerNumberTest() {
+ // TODO: test customerNumber
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidatePersonTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidatePersonTest.java
new file mode 100644
index 00000000..7f54b4fd
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidatePersonTest.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 TravelRuleValidatePerson */
+public class TravelRuleValidatePersonTest {
+ private final TravelRuleValidatePerson model = new TravelRuleValidatePerson();
+
+ /** Model tests for TravelRuleValidatePerson */
+ @Test
+ public void testTravelRuleValidatePerson() {
+ // TODO: test TravelRuleValidatePerson
+ }
+
+ /** Test the property 'naturalPerson' */
+ @Test
+ public void naturalPersonTest() {
+ // TODO: test naturalPerson
+ }
+
+ /** Test the property 'legalPerson' */
+ @Test
+ public void legalPersonTest() {
+ // TODO: test legalPerson
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidatePiiIVMSTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidatePiiIVMSTest.java
new file mode 100644
index 00000000..1eedfdea
--- /dev/null
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidatePiiIVMSTest.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 TravelRuleValidatePiiIVMS */
+public class TravelRuleValidatePiiIVMSTest {
+ private final TravelRuleValidatePiiIVMS model = new TravelRuleValidatePiiIVMS();
+
+ /** Model tests for TravelRuleValidatePiiIVMS */
+ @Test
+ public void testTravelRuleValidatePiiIVMS() {
+ // TODO: test TravelRuleValidatePiiIVMS
+ }
+
+ /** Test the property 'originatorPersons' */
+ @Test
+ public void originatorPersonsTest() {
+ // TODO: test originatorPersons
+ }
+
+ /** Test the property 'beneficiaryPersons' */
+ @Test
+ public void beneficiaryPersonsTest() {
+ // TODO: test beneficiaryPersons
+ }
+
+ /** Test the property 'accountNumber' */
+ @Test
+ public void accountNumberTest() {
+ // TODO: test accountNumber
+ }
+}
diff --git a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionRequestTest.java b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionRequestTest.java
index 9ea4b610..0fb3afe8 100644
--- a/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionRequestTest.java
+++ b/src/test/java/com/fireblocks/sdk/model/TravelRuleValidateTransactionRequestTest.java
@@ -44,6 +44,12 @@ public void transactionAmountTest() {
// TODO: test transactionAmount
}
+ /** Test the property 'transactionAssetDecimals' */
+ @Test
+ public void transactionAssetDecimalsTest() {
+ // TODO: test transactionAssetDecimals
+ }
+
/** Test the property 'originatorVASPdid' */
@Test
public void originatorVASPdidTest() {