diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fd675b6dc..f3620a283 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.279.0" + ".": "0.280.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 70b3003b4..4e2a1cd4e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 202 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2ed4af5a2141f4524ffc8306c747f21c77e00fc5d478e08df7cbe53c92764038.yml -openapi_spec_hash: f693361a7fb14090da484e6a02b86021 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-86536168d84b951766d3c56adf7b371f15e15de83fff1de4b8052f55bb98034d.yml +openapi_spec_hash: 28053671bf8df1b93086dbe6123f8163 config_hash: a185e9a72778cc4658ea73fb3a7f1354 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c0c05da9..d15e3fa36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.280.0 (2025-08-13) + +Full Changelog: [v0.279.0...v0.280.0](https://github.com/Increase/increase-java/compare/v0.279.0...v0.280.0) + +### Features + +* **api:** api update ([c253db1](https://github.com/Increase/increase-java/commit/c253db1834a266939afda540111b3294f9a2fde7)) + + +### Chores + +* **internal:** dynamically determine included projects ([0fad6c0](https://github.com/Increase/increase-java/commit/0fad6c031f857f27dc46110debea0cf9f6729b61)) +* **internal:** format identity methods ([ef96bfd](https://github.com/Increase/increase-java/commit/ef96bfd6da05b1bad073e31054d6b37e9e0bd6fc)) +* **internal:** support passing arguments to test script ([20f4b3f](https://github.com/Increase/increase-java/commit/20f4b3fd0bdaa1a44c9ee151797ceffbea197ef4)) + ## 0.279.0 (2025-08-12) Full Changelog: [v0.278.0...v0.279.0](https://github.com/Increase/increase-java/compare/v0.278.0...v0.279.0) diff --git a/README.md b/README.md index 3c0ae1bb3..ea64f5504 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.279.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.279.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.279.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.280.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.280.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.280.0) @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe -The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.279.0). +The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.280.0). @@ -24,7 +24,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d ### Gradle ```kotlin -implementation("com.increase.api:increase-java:0.279.0") +implementation("com.increase.api:increase-java:0.280.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.279.0") com.increase.api increase-java - 0.279.0 + 0.280.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 51346d42a..b389ea4a1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.279.0" // x-release-please-version + version = "0.280.0" // x-release-please-version } subprojects { diff --git a/increase-java-core/src/main/kotlin/com/increase/api/core/Timeout.kt b/increase-java-core/src/main/kotlin/com/increase/api/core/Timeout.kt index 6229b741d..9f02d5187 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/core/Timeout.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/core/Timeout.kt @@ -157,10 +157,14 @@ private constructor( return true } - return /* spotless:off */ other is Timeout && connect == other.connect && read == other.read && write == other.write && request == other.request /* spotless:on */ + return other is Timeout && + connect == other.connect && + read == other.read && + write == other.write && + request == other.request } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(connect, read, write, request) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(connect, read, write, request) override fun toString() = "Timeout{connect=$connect, read=$read, write=$write, request=$request}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumber.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumber.kt index e153cbc92..918f91b0a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumber.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumber.kt @@ -873,7 +873,7 @@ private constructor( return true } - return /* spotless:off */ other is DebitStatus && value == other.value /* spotless:on */ + return other is DebitStatus && value == other.value } override fun hashCode() = value.hashCode() @@ -886,12 +886,12 @@ private constructor( return true } - return /* spotless:off */ other is InboundAch && debitStatus == other.debitStatus && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundAch && + debitStatus == other.debitStatus && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(debitStatus, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1183,7 +1183,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1196,12 +1196,12 @@ private constructor( return true } - return /* spotless:off */ other is InboundChecks && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundChecks && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(status, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1344,7 +1344,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1469,7 +1469,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1482,12 +1482,37 @@ private constructor( return true } - return /* spotless:off */ other is AccountNumber && id == other.id && accountId == other.accountId && accountNumber == other.accountNumber && createdAt == other.createdAt && idempotencyKey == other.idempotencyKey && inboundAch == other.inboundAch && inboundChecks == other.inboundChecks && name == other.name && routingNumber == other.routingNumber && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountNumber && + id == other.id && + accountId == other.accountId && + accountNumber == other.accountNumber && + createdAt == other.createdAt && + idempotencyKey == other.idempotencyKey && + inboundAch == other.inboundAch && + inboundChecks == other.inboundChecks && + name == other.name && + routingNumber == other.routingNumber && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, accountNumber, createdAt, idempotencyKey, inboundAch, inboundChecks, name, routingNumber, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + accountNumber, + createdAt, + idempotencyKey, + inboundAch, + inboundChecks, + name, + routingNumber, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberCreateParams.kt index 35402e140..8a8e10338 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberCreateParams.kt @@ -603,12 +603,17 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && name == other.name && inboundAch == other.inboundAch && inboundChecks == other.inboundChecks && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + name == other.name && + inboundAch == other.inboundAch && + inboundChecks == other.inboundChecks && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, name, inboundAch, inboundChecks, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountId, name, inboundAch, inboundChecks, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -904,7 +909,7 @@ private constructor( return true } - return /* spotless:off */ other is DebitStatus && value == other.value /* spotless:on */ + return other is DebitStatus && value == other.value } override fun hashCode() = value.hashCode() @@ -917,12 +922,12 @@ private constructor( return true } - return /* spotless:off */ other is InboundAch && debitStatus == other.debitStatus && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundAch && + debitStatus == other.debitStatus && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(debitStatus, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1221,7 +1226,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1234,12 +1239,12 @@ private constructor( return true } - return /* spotless:off */ other is InboundChecks && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundChecks && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(status, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1252,10 +1257,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountNumberCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountNumberCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "AccountNumberCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPage.kt index 84704b748..06d541cd2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPage.kt @@ -120,10 +120,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountNumberListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is AccountNumberListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "AccountNumberListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPageAsync.kt index 56c867947..a6af769cc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPageAsync.kt @@ -134,10 +134,14 @@ private constructor( return true } - return /* spotless:off */ other is AccountNumberListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is AccountNumberListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "AccountNumberListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPageResponse.kt index 3f5d8c05e..4be93aa18 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListPageResponse.kt @@ -224,12 +224,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountNumberListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountNumberListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListParams.kt index 4fcc8e2b8..634e0e8c8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberListParams.kt @@ -557,7 +557,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -570,12 +570,12 @@ private constructor( return true } - return /* spotless:off */ other is AchDebitStatus && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchDebitStatus && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -743,12 +743,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -997,7 +1002,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -1010,12 +1015,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1027,10 +1032,30 @@ private constructor( return true } - return /* spotless:off */ other is AccountNumberListParams && accountId == other.accountId && achDebitStatus == other.achDebitStatus && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountNumberListParams && + accountId == other.accountId && + achDebitStatus == other.achDebitStatus && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, achDebitStatus, createdAt, cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + achDebitStatus, + createdAt, + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "AccountNumberListParams{accountId=$accountId, achDebitStatus=$achDebitStatus, createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberRetrieveParams.kt index 54557ed84..7ffc0b235 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberRetrieveParams.kt @@ -187,10 +187,14 @@ private constructor( return true } - return /* spotless:off */ other is AccountNumberRetrieveParams && accountNumberId == other.accountNumberId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountNumberRetrieveParams && + accountNumberId == other.accountNumberId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountNumberId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(accountNumberId, additionalHeaders, additionalQueryParams) override fun toString() = "AccountNumberRetrieveParams{accountNumberId=$accountNumberId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberUpdateParams.kt index 6c13e2a9d..a1d818a58 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountnumbers/AccountNumberUpdateParams.kt @@ -588,12 +588,17 @@ private constructor( return true } - return /* spotless:off */ other is Body && inboundAch == other.inboundAch && inboundChecks == other.inboundChecks && name == other.name && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + inboundAch == other.inboundAch && + inboundChecks == other.inboundChecks && + name == other.name && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(inboundAch, inboundChecks, name, status, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(inboundAch, inboundChecks, name, status, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -868,7 +873,7 @@ private constructor( return true } - return /* spotless:off */ other is DebitStatus && value == other.value /* spotless:on */ + return other is DebitStatus && value == other.value } override fun hashCode() = value.hashCode() @@ -881,12 +886,12 @@ private constructor( return true } - return /* spotless:off */ other is InboundAch && debitStatus == other.debitStatus && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundAch && + debitStatus == other.debitStatus && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(debitStatus, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1178,7 +1183,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1191,12 +1196,12 @@ private constructor( return true } - return /* spotless:off */ other is InboundChecks && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundChecks && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(status, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1339,7 +1344,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1352,10 +1357,15 @@ private constructor( return true } - return /* spotless:off */ other is AccountNumberUpdateParams && accountNumberId == other.accountNumberId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountNumberUpdateParams && + accountNumberId == other.accountNumberId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountNumberId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(accountNumberId, body, additionalHeaders, additionalQueryParams) override fun toString() = "AccountNumberUpdateParams{accountNumberId=$accountNumberId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/Account.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/Account.kt index 4041003ab..752483606 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/Account.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/Account.kt @@ -137,10 +137,10 @@ private constructor( /** * The identifier for the Entity the Account belongs to. * - * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the - * server responded with an unexpected value). + * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or is + * unexpectedly missing or null (e.g. if the server responded with an unexpected value). */ - fun entityId(): Optional = entityId.getOptional("entity_id") + fun entityId(): String = entityId.getRequired("entity_id") /** * The idempotency key you chose for this object. This value is unique across Increase and is @@ -489,10 +489,7 @@ private constructor( fun currency(currency: JsonField) = apply { this.currency = currency } /** The identifier for the Entity the Account belongs to. */ - fun entityId(entityId: String?) = entityId(JsonField.ofNullable(entityId)) - - /** Alias for calling [Builder.entityId] with `entityId.orElse(null)`. */ - fun entityId(entityId: Optional) = entityId(entityId.getOrNull()) + fun entityId(entityId: String) = entityId(JsonField.of(entityId)) /** * Sets [Builder.entityId] to an arbitrary JSON value. @@ -914,7 +911,7 @@ private constructor( return true } - return /* spotless:off */ other is Bank && value == other.value /* spotless:on */ + return other is Bank && value == other.value } override fun hashCode() = value.hashCode() @@ -1084,7 +1081,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -1218,7 +1215,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1340,7 +1337,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1353,12 +1350,45 @@ private constructor( return true } - return /* spotless:off */ other is Account && id == other.id && bank == other.bank && closedAt == other.closedAt && createdAt == other.createdAt && currency == other.currency && entityId == other.entityId && idempotencyKey == other.idempotencyKey && informationalEntityId == other.informationalEntityId && interestAccrued == other.interestAccrued && interestAccruedAt == other.interestAccruedAt && interestRate == other.interestRate && name == other.name && programId == other.programId && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Account && + id == other.id && + bank == other.bank && + closedAt == other.closedAt && + createdAt == other.createdAt && + currency == other.currency && + entityId == other.entityId && + idempotencyKey == other.idempotencyKey && + informationalEntityId == other.informationalEntityId && + interestAccrued == other.interestAccrued && + interestAccruedAt == other.interestAccruedAt && + interestRate == other.interestRate && + name == other.name && + programId == other.programId && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, bank, closedAt, createdAt, currency, entityId, idempotencyKey, informationalEntityId, interestAccrued, interestAccruedAt, interestRate, name, programId, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + bank, + closedAt, + createdAt, + currency, + entityId, + idempotencyKey, + informationalEntityId, + interestAccrued, + interestAccruedAt, + interestRate, + name, + programId, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountBalanceParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountBalanceParams.kt index 5d3a711ef..715f2fe2d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountBalanceParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountBalanceParams.kt @@ -206,10 +206,15 @@ private constructor( return true } - return /* spotless:off */ other is AccountBalanceParams && accountId == other.accountId && atTime == other.atTime && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountBalanceParams && + accountId == other.accountId && + atTime == other.atTime && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, atTime, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(accountId, atTime, additionalHeaders, additionalQueryParams) override fun toString() = "AccountBalanceParams{accountId=$accountId, atTime=$atTime, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountCloseParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountCloseParams.kt index 47963267f..cecc502a6 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountCloseParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountCloseParams.kt @@ -216,10 +216,15 @@ private constructor( return true } - return /* spotless:off */ other is AccountCloseParams && accountId == other.accountId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is AccountCloseParams && + accountId == other.accountId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(accountId, additionalHeaders, additionalQueryParams, additionalBodyProperties) override fun toString() = "AccountCloseParams{accountId=$accountId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountCreateParams.kt index 5f62dfc87..2abfc9b73 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountCreateParams.kt @@ -608,12 +608,17 @@ private constructor( return true } - return /* spotless:off */ other is Body && name == other.name && entityId == other.entityId && informationalEntityId == other.informationalEntityId && programId == other.programId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + name == other.name && + entityId == other.entityId && + informationalEntityId == other.informationalEntityId && + programId == other.programId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(name, entityId, informationalEntityId, programId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(name, entityId, informationalEntityId, programId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -626,10 +631,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "AccountCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPage.kt index 358066570..83d277337 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is AccountListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "AccountListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageAsync.kt index 2e96867f6..d82c2d263 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is AccountListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is AccountListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "AccountListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageResponse.kt index b3e577cd9..a105ab03b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListParams.kt index 768a7ffd3..d8b397aaf 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListParams.kt @@ -494,12 +494,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -739,7 +744,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -752,12 +757,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -769,10 +774,32 @@ private constructor( return true } - return /* spotless:off */ other is AccountListParams && createdAt == other.createdAt && cursor == other.cursor && entityId == other.entityId && idempotencyKey == other.idempotencyKey && informationalEntityId == other.informationalEntityId && limit == other.limit && programId == other.programId && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountListParams && + createdAt == other.createdAt && + cursor == other.cursor && + entityId == other.entityId && + idempotencyKey == other.idempotencyKey && + informationalEntityId == other.informationalEntityId && + limit == other.limit && + programId == other.programId && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(createdAt, cursor, entityId, idempotencyKey, informationalEntityId, limit, programId, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + createdAt, + cursor, + entityId, + idempotencyKey, + informationalEntityId, + limit, + programId, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "AccountListParams{createdAt=$createdAt, cursor=$cursor, entityId=$entityId, idempotencyKey=$idempotencyKey, informationalEntityId=$informationalEntityId, limit=$limit, programId=$programId, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountRetrieveParams.kt index 790d3aef6..88a1103b9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountRetrieveParams.kt @@ -182,10 +182,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountRetrieveParams && accountId == other.accountId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountRetrieveParams && + accountId == other.accountId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(accountId, additionalHeaders, additionalQueryParams) override fun toString() = "AccountRetrieveParams{accountId=$accountId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountUpdateParams.kt index 30ca5819a..9fded4039 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountUpdateParams.kt @@ -445,12 +445,13 @@ private constructor( return true } - return /* spotless:off */ other is Body && creditLimit == other.creditLimit && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + creditLimit == other.creditLimit && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(creditLimit, name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -463,10 +464,15 @@ private constructor( return true } - return /* spotless:off */ other is AccountUpdateParams && accountId == other.accountId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountUpdateParams && + accountId == other.accountId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(accountId, body, additionalHeaders, additionalQueryParams) override fun toString() = "AccountUpdateParams{accountId=$accountId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/BalanceLookup.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/BalanceLookup.kt index 715f88439..0201f4e14 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/BalanceLookup.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/BalanceLookup.kt @@ -409,7 +409,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -422,12 +422,17 @@ private constructor( return true } - return /* spotless:off */ other is BalanceLookup && accountId == other.accountId && availableBalance == other.availableBalance && currentBalance == other.currentBalance && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BalanceLookup && + accountId == other.accountId && + availableBalance == other.availableBalance && + currentBalance == other.currentBalance && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, availableBalance, currentBalance, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountId, availableBalance, currentBalance, type, additionalProperties) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatement.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatement.kt index 9cf40454f..59fb08d4c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatement.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatement.kt @@ -626,7 +626,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -639,12 +639,33 @@ private constructor( return true } - return /* spotless:off */ other is AccountStatement && id == other.id && accountId == other.accountId && createdAt == other.createdAt && endingBalance == other.endingBalance && fileId == other.fileId && startingBalance == other.startingBalance && statementPeriodEnd == other.statementPeriodEnd && statementPeriodStart == other.statementPeriodStart && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountStatement && + id == other.id && + accountId == other.accountId && + createdAt == other.createdAt && + endingBalance == other.endingBalance && + fileId == other.fileId && + startingBalance == other.startingBalance && + statementPeriodEnd == other.statementPeriodEnd && + statementPeriodStart == other.statementPeriodStart && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, createdAt, endingBalance, fileId, startingBalance, statementPeriodEnd, statementPeriodStart, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + createdAt, + endingBalance, + fileId, + startingBalance, + statementPeriodEnd, + statementPeriodStart, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPage.kt index 0a5a623c2..aea9fbf46 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountStatementListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is AccountStatementListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "AccountStatementListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageAsync.kt index 04e78fa89..4f880a6e3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageAsync.kt @@ -137,10 +137,14 @@ private constructor( return true } - return /* spotless:off */ other is AccountStatementListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is AccountStatementListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "AccountStatementListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageResponse.kt index c00f1a544..fd1265b60 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountStatementListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountStatementListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListParams.kt index 7d4ef9a74..39c7c185e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListParams.kt @@ -433,12 +433,17 @@ private constructor( return true } - return /* spotless:off */ other is StatementPeriodStart && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is StatementPeriodStart && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -451,10 +456,24 @@ private constructor( return true } - return /* spotless:off */ other is AccountStatementListParams && accountId == other.accountId && cursor == other.cursor && limit == other.limit && statementPeriodStart == other.statementPeriodStart && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountStatementListParams && + accountId == other.accountId && + cursor == other.cursor && + limit == other.limit && + statementPeriodStart == other.statementPeriodStart && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, cursor, limit, statementPeriodStart, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + cursor, + limit, + statementPeriodStart, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "AccountStatementListParams{accountId=$accountId, cursor=$cursor, limit=$limit, statementPeriodStart=$statementPeriodStart, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementRetrieveParams.kt index a5c606fb8..8df98ef3a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementRetrieveParams.kt @@ -190,10 +190,14 @@ private constructor( return true } - return /* spotless:off */ other is AccountStatementRetrieveParams && accountStatementId == other.accountStatementId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountStatementRetrieveParams && + accountStatementId == other.accountStatementId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountStatementId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(accountStatementId, additionalHeaders, additionalQueryParams) override fun toString() = "AccountStatementRetrieveParams{accountStatementId=$accountStatementId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransfer.kt index 0205636f1..4a86c1d35 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransfer.kt @@ -1083,12 +1083,15 @@ private constructor( return true } - return /* spotless:off */ other is Approval && approvedAt == other.approvedAt && approvedBy == other.approvedBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Approval && + approvedAt == other.approvedAt && + approvedBy == other.approvedBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(approvedAt, approvedBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(approvedAt, approvedBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1303,12 +1306,15 @@ private constructor( return true } - return /* spotless:off */ other is Cancellation && canceledAt == other.canceledAt && canceledBy == other.canceledBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cancellation && + canceledAt == other.canceledAt && + canceledBy == other.canceledBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(canceledAt, canceledBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(canceledAt, canceledBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1752,12 +1758,12 @@ private constructor( return true } - return /* spotless:off */ other is ApiKey && description == other.description && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ApiKey && + description == other.description && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(description, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1912,7 +1918,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -2070,12 +2076,12 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplication && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthApplication && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2230,12 +2236,12 @@ private constructor( return true } - return /* spotless:off */ other is User && email == other.email && additionalProperties == other.additionalProperties /* spotless:on */ + return other is User && + email == other.email && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(email, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2248,12 +2254,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedBy && apiKey == other.apiKey && category == other.category && oauthApplication == other.oauthApplication && user == other.user && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedBy && + apiKey == other.apiKey && + category == other.category && + oauthApplication == other.oauthApplication && + user == other.user && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2426,7 +2437,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -2548,7 +2559,7 @@ private constructor( return true } - return /* spotless:off */ other is Network && value == other.value /* spotless:on */ + return other is Network && value == other.value } override fun hashCode() = value.hashCode() @@ -2691,7 +2702,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -2816,7 +2827,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -2829,12 +2840,49 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransfer && id == other.id && accountId == other.accountId && amount == other.amount && approval == other.approval && cancellation == other.cancellation && createdAt == other.createdAt && createdBy == other.createdBy && currency == other.currency && description == other.description && destinationAccountId == other.destinationAccountId && destinationTransactionId == other.destinationTransactionId && idempotencyKey == other.idempotencyKey && network == other.network && pendingTransactionId == other.pendingTransactionId && status == other.status && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountTransfer && + id == other.id && + accountId == other.accountId && + amount == other.amount && + approval == other.approval && + cancellation == other.cancellation && + createdAt == other.createdAt && + createdBy == other.createdBy && + currency == other.currency && + description == other.description && + destinationAccountId == other.destinationAccountId && + destinationTransactionId == other.destinationTransactionId && + idempotencyKey == other.idempotencyKey && + network == other.network && + pendingTransactionId == other.pendingTransactionId && + status == other.status && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, amount, approval, cancellation, createdAt, createdBy, currency, description, destinationAccountId, destinationTransactionId, idempotencyKey, network, pendingTransactionId, status, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + amount, + approval, + cancellation, + createdAt, + createdBy, + currency, + description, + destinationAccountId, + destinationTransactionId, + idempotencyKey, + network, + pendingTransactionId, + status, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferApproveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferApproveParams.kt index fc10a8085..421c7ef85 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferApproveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferApproveParams.kt @@ -222,10 +222,20 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferApproveParams && accountTransferId == other.accountTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is AccountTransferApproveParams && + accountTransferId == other.accountTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "AccountTransferApproveParams{accountTransferId=$accountTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferCancelParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferCancelParams.kt index 110ac0f80..43ec6c5de 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferCancelParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferCancelParams.kt @@ -222,10 +222,20 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferCancelParams && accountTransferId == other.accountTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is AccountTransferCancelParams && + accountTransferId == other.accountTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "AccountTransferCancelParams{accountTransferId=$accountTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferCreateParams.kt index a45c98516..fed9bad75 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferCreateParams.kt @@ -699,13 +699,26 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && amount == other.amount && description == other.description && destinationAccountId == other.destinationAccountId && requireApproval == other.requireApproval && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + amount == other.amount && + description == other.description && + destinationAccountId == other.destinationAccountId && + requireApproval == other.requireApproval && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + accountId, + amount, + description, + destinationAccountId, + requireApproval, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, amount, description, destinationAccountId, requireApproval, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -717,10 +730,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountTransferCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "AccountTransferCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPage.kt index 064893c7a..ee6c7e345 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPage.kt @@ -120,10 +120,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is AccountTransferListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "AccountTransferListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageAsync.kt index 03913c937..dd88fd425 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageAsync.kt @@ -134,10 +134,14 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is AccountTransferListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "AccountTransferListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageResponse.kt index d2b9b72ac..e6de1cd29 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountTransferListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListParams.kt index e6292a6ad..f4f5607b9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListParams.kt @@ -438,12 +438,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -456,10 +461,26 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferListParams && accountId == other.accountId && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountTransferListParams && + accountId == other.accountId && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, createdAt, cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + createdAt, + cursor, + idempotencyKey, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "AccountTransferListParams{accountId=$accountId, createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferRetrieveParams.kt index f7ac92297..3ed68dce1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferRetrieveParams.kt @@ -188,10 +188,14 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferRetrieveParams && accountTransferId == other.accountTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountTransferRetrieveParams && + accountTransferId == other.accountTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountTransferId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(accountTransferId, additionalHeaders, additionalQueryParams) override fun toString() = "AccountTransferRetrieveParams{accountTransferId=$accountTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotification.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotification.kt index b9a877153..71773e6c1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotification.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotification.kt @@ -1023,7 +1023,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditDebitIndicator && value == other.value /* spotless:on */ + return other is CreditDebitIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -1656,7 +1656,7 @@ private constructor( return true } - return /* spotless:off */ other is ChangeCode && value == other.value /* spotless:on */ + return other is ChangeCode && value == other.value } override fun hashCode() = value.hashCode() @@ -1669,12 +1669,16 @@ private constructor( return true } - return /* spotless:off */ other is NotificationsOfChange && changeCode == other.changeCode && correctedData == other.correctedData && createdAt == other.createdAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NotificationsOfChange && + changeCode == other.changeCode && + correctedData == other.correctedData && + createdAt == other.createdAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(changeCode, correctedData, createdAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(changeCode, correctedData, createdAt, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3118,7 +3122,7 @@ private constructor( return true } - return /* spotless:off */ other is ReturnReasonCode && value == other.value /* spotless:on */ + return other is ReturnReasonCode && value == other.value } override fun hashCode() = value.hashCode() @@ -3131,12 +3135,15 @@ private constructor( return true } - return /* spotless:off */ other is PrenotificationReturn && createdAt == other.createdAt && returnReasonCode == other.returnReasonCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PrenotificationReturn && + createdAt == other.createdAt && + returnReasonCode == other.returnReasonCode && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(createdAt, returnReasonCode, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(createdAt, returnReasonCode, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3288,7 +3295,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -3413,7 +3420,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -3426,12 +3433,47 @@ private constructor( return true } - return /* spotless:off */ other is AchPrenotification && id == other.id && accountNumber == other.accountNumber && addendum == other.addendum && companyDescriptiveDate == other.companyDescriptiveDate && companyDiscretionaryData == other.companyDiscretionaryData && companyEntryDescription == other.companyEntryDescription && companyName == other.companyName && createdAt == other.createdAt && creditDebitIndicator == other.creditDebitIndicator && effectiveDate == other.effectiveDate && idempotencyKey == other.idempotencyKey && notificationsOfChange == other.notificationsOfChange && prenotificationReturn == other.prenotificationReturn && routingNumber == other.routingNumber && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchPrenotification && + id == other.id && + accountNumber == other.accountNumber && + addendum == other.addendum && + companyDescriptiveDate == other.companyDescriptiveDate && + companyDiscretionaryData == other.companyDiscretionaryData && + companyEntryDescription == other.companyEntryDescription && + companyName == other.companyName && + createdAt == other.createdAt && + creditDebitIndicator == other.creditDebitIndicator && + effectiveDate == other.effectiveDate && + idempotencyKey == other.idempotencyKey && + notificationsOfChange == other.notificationsOfChange && + prenotificationReturn == other.prenotificationReturn && + routingNumber == other.routingNumber && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountNumber, addendum, companyDescriptiveDate, companyDiscretionaryData, companyEntryDescription, companyName, createdAt, creditDebitIndicator, effectiveDate, idempotencyKey, notificationsOfChange, prenotificationReturn, routingNumber, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountNumber, + addendum, + companyDescriptiveDate, + companyDiscretionaryData, + companyEntryDescription, + companyName, + createdAt, + creditDebitIndicator, + effectiveDate, + idempotencyKey, + notificationsOfChange, + prenotificationReturn, + routingNumber, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationCreateParams.kt index a33cc17e9..a97cd4249 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationCreateParams.kt @@ -1304,12 +1304,41 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && accountNumber == other.accountNumber && routingNumber == other.routingNumber && addendum == other.addendum && companyDescriptiveDate == other.companyDescriptiveDate && companyDiscretionaryData == other.companyDiscretionaryData && companyEntryDescription == other.companyEntryDescription && companyName == other.companyName && creditDebitIndicator == other.creditDebitIndicator && effectiveDate == other.effectiveDate && individualId == other.individualId && individualName == other.individualName && standardEntryClassCode == other.standardEntryClassCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + accountNumber == other.accountNumber && + routingNumber == other.routingNumber && + addendum == other.addendum && + companyDescriptiveDate == other.companyDescriptiveDate && + companyDiscretionaryData == other.companyDiscretionaryData && + companyEntryDescription == other.companyEntryDescription && + companyName == other.companyName && + creditDebitIndicator == other.creditDebitIndicator && + effectiveDate == other.effectiveDate && + individualId == other.individualId && + individualName == other.individualName && + standardEntryClassCode == other.standardEntryClassCode && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, accountNumber, routingNumber, addendum, companyDescriptiveDate, companyDiscretionaryData, companyEntryDescription, companyName, creditDebitIndicator, effectiveDate, individualId, individualName, standardEntryClassCode, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountId, + accountNumber, + routingNumber, + addendum, + companyDescriptiveDate, + companyDiscretionaryData, + companyEntryDescription, + companyName, + creditDebitIndicator, + effectiveDate, + individualId, + individualName, + standardEntryClassCode, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1449,7 +1478,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditDebitIndicator && value == other.value /* spotless:on */ + return other is CreditDebitIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -1608,7 +1637,7 @@ private constructor( return true } - return /* spotless:off */ other is StandardEntryClassCode && value == other.value /* spotless:on */ + return other is StandardEntryClassCode && value == other.value } override fun hashCode() = value.hashCode() @@ -1621,10 +1650,13 @@ private constructor( return true } - return /* spotless:off */ other is AchPrenotificationCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AchPrenotificationCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "AchPrenotificationCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPage.kt index 8b32db02d..525935209 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is AchPrenotificationListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is AchPrenotificationListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "AchPrenotificationListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageAsync.kt index 51acb6ca9..54ede4a4c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is AchPrenotificationListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is AchPrenotificationListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "AchPrenotificationListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageResponse.kt index 87b1ee438..916ac220e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is AchPrenotificationListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchPrenotificationListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListParams.kt index 198a3e692..4d0cb9ffb 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListParams.kt @@ -424,12 +424,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -442,10 +447,24 @@ private constructor( return true } - return /* spotless:off */ other is AchPrenotificationListParams && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AchPrenotificationListParams && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(createdAt, cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + createdAt, + cursor, + idempotencyKey, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "AchPrenotificationListParams{createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationRetrieveParams.kt index a195d747a..69a12afea 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is AchPrenotificationRetrieveParams && achPrenotificationId == other.achPrenotificationId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AchPrenotificationRetrieveParams && + achPrenotificationId == other.achPrenotificationId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(achPrenotificationId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(achPrenotificationId, additionalHeaders, additionalQueryParams) override fun toString() = "AchPrenotificationRetrieveParams{achPrenotificationId=$achPrenotificationId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransfer.kt index 04de3b597..648ec48a5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransfer.kt @@ -1958,12 +1958,12 @@ private constructor( return true } - return /* spotless:off */ other is Acknowledgement && acknowledgedAt == other.acknowledgedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Acknowledgement && + acknowledgedAt == other.acknowledgedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(acknowledgedAt, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2372,7 +2372,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -2706,12 +2706,14 @@ private constructor( return true } - return /* spotless:off */ other is Entry && paymentRelatedInformation == other.paymentRelatedInformation && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Entry && + paymentRelatedInformation == other.paymentRelatedInformation && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(paymentRelatedInformation, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(paymentRelatedInformation, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2724,12 +2726,12 @@ private constructor( return true } - return /* spotless:off */ other is Freeform && entries == other.entries && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Freeform && + entries == other.entries && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(entries, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -3119,12 +3121,15 @@ private constructor( return true } - return /* spotless:off */ other is Invoice && invoiceNumber == other.invoiceNumber && paidAmount == other.paidAmount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Invoice && + invoiceNumber == other.invoiceNumber && + paidAmount == other.paidAmount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(invoiceNumber, paidAmount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(invoiceNumber, paidAmount, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3137,12 +3142,12 @@ private constructor( return true } - return /* spotless:off */ other is PaymentOrderRemittanceAdvice && invoices == other.invoices && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PaymentOrderRemittanceAdvice && + invoices == other.invoices && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(invoices, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -3155,12 +3160,16 @@ private constructor( return true } - return /* spotless:off */ other is Addenda && category == other.category && freeform == other.freeform && paymentOrderRemittanceAdvice == other.paymentOrderRemittanceAdvice && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Addenda && + category == other.category && + freeform == other.freeform && + paymentOrderRemittanceAdvice == other.paymentOrderRemittanceAdvice && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, freeform, paymentOrderRemittanceAdvice, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, freeform, paymentOrderRemittanceAdvice, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3375,12 +3384,15 @@ private constructor( return true } - return /* spotless:off */ other is Approval && approvedAt == other.approvedAt && approvedBy == other.approvedBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Approval && + approvedAt == other.approvedAt && + approvedBy == other.approvedBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(approvedAt, approvedBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(approvedAt, approvedBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3595,12 +3607,15 @@ private constructor( return true } - return /* spotless:off */ other is Cancellation && canceledAt == other.canceledAt && canceledBy == other.canceledBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cancellation && + canceledAt == other.canceledAt && + canceledBy == other.canceledBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(canceledAt, canceledBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(canceledAt, canceledBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4044,12 +4059,12 @@ private constructor( return true } - return /* spotless:off */ other is ApiKey && description == other.description && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ApiKey && + description == other.description && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(description, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -4204,7 +4219,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -4362,12 +4377,12 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplication && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthApplication && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -4522,12 +4537,12 @@ private constructor( return true } - return /* spotless:off */ other is User && email == other.email && additionalProperties == other.additionalProperties /* spotless:on */ + return other is User && + email == other.email && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(email, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -4540,12 +4555,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedBy && apiKey == other.apiKey && category == other.category && oauthApplication == other.oauthApplication && user == other.user && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedBy && + apiKey == other.apiKey && + category == other.category && + oauthApplication == other.oauthApplication && + user == other.user && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4718,7 +4738,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -4869,7 +4889,7 @@ private constructor( return true } - return /* spotless:off */ other is DestinationAccountHolder && value == other.value /* spotless:on */ + return other is DestinationAccountHolder && value == other.value } override fun hashCode() = value.hashCode() @@ -5012,7 +5032,7 @@ private constructor( return true } - return /* spotless:off */ other is Funding && value == other.value /* spotless:on */ + return other is Funding && value == other.value } override fun hashCode() = value.hashCode() @@ -5745,7 +5765,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -5881,7 +5901,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -6006,7 +6026,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -6019,13 +6039,36 @@ private constructor( return true } - return /* spotless:off */ other is InboundFundsHold && id == other.id && amount == other.amount && automaticallyReleasesAt == other.automaticallyReleasesAt && createdAt == other.createdAt && currency == other.currency && heldTransactionId == other.heldTransactionId && pendingTransactionId == other.pendingTransactionId && releasedAt == other.releasedAt && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundFundsHold && + id == other.id && + amount == other.amount && + automaticallyReleasesAt == other.automaticallyReleasesAt && + createdAt == other.createdAt && + currency == other.currency && + heldTransactionId == other.heldTransactionId && + pendingTransactionId == other.pendingTransactionId && + releasedAt == other.releasedAt && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + automaticallyReleasesAt, + createdAt, + currency, + heldTransactionId, + pendingTransactionId, + releasedAt, + status, + type, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, automaticallyReleasesAt, createdAt, currency, heldTransactionId, pendingTransactionId, releasedAt, status, type, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -6146,7 +6189,7 @@ private constructor( return true } - return /* spotless:off */ other is Network && value == other.value /* spotless:on */ + return other is Network && value == other.value } override fun hashCode() = value.hashCode() @@ -6779,7 +6822,7 @@ private constructor( return true } - return /* spotless:off */ other is ChangeCode && value == other.value /* spotless:on */ + return other is ChangeCode && value == other.value } override fun hashCode() = value.hashCode() @@ -6792,12 +6835,16 @@ private constructor( return true } - return /* spotless:off */ other is NotificationsOfChange && changeCode == other.changeCode && correctedData == other.correctedData && createdAt == other.createdAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NotificationsOfChange && + changeCode == other.changeCode && + correctedData == other.correctedData && + createdAt == other.createdAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(changeCode, correctedData, createdAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(changeCode, correctedData, createdAt, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -7171,7 +7218,7 @@ private constructor( return true } - return /* spotless:off */ other is SettlementSchedule && value == other.value /* spotless:on */ + return other is SettlementSchedule && value == other.value } override fun hashCode() = value.hashCode() @@ -7184,12 +7231,15 @@ private constructor( return true } - return /* spotless:off */ other is PreferredEffectiveDate && date == other.date && settlementSchedule == other.settlementSchedule && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PreferredEffectiveDate && + date == other.date && + settlementSchedule == other.settlementSchedule && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(date, settlementSchedule, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(date, settlementSchedule, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -8826,7 +8876,7 @@ private constructor( return true } - return /* spotless:off */ other is ReturnReasonCode && value == other.value /* spotless:on */ + return other is ReturnReasonCode && value == other.value } override fun hashCode() = value.hashCode() @@ -8839,13 +8889,28 @@ private constructor( return true } - return /* spotless:off */ other is Return && createdAt == other.createdAt && rawReturnReasonCode == other.rawReturnReasonCode && returnReasonCode == other.returnReasonCode && traceNumber == other.traceNumber && transactionId == other.transactionId && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Return && + createdAt == other.createdAt && + rawReturnReasonCode == other.rawReturnReasonCode && + returnReasonCode == other.returnReasonCode && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + transferId == other.transferId && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + createdAt, + rawReturnReasonCode, + returnReasonCode, + traceNumber, + transactionId, + transferId, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(createdAt, rawReturnReasonCode, returnReasonCode, traceNumber, transactionId, transferId, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -9011,12 +9076,12 @@ private constructor( return true } - return /* spotless:off */ other is Settlement && settledAt == other.settledAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Settlement && + settledAt == other.settledAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(settledAt, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -9175,7 +9240,7 @@ private constructor( return true } - return /* spotless:off */ other is StandardEntryClassCode && value == other.value /* spotless:on */ + return other is StandardEntryClassCode && value == other.value } override fun hashCode() = value.hashCode() @@ -9373,7 +9438,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -9885,7 +9950,7 @@ private constructor( return true } - return /* spotless:off */ other is ExpectedSettlementSchedule && value == other.value /* spotless:on */ + return other is ExpectedSettlementSchedule && value == other.value } override fun hashCode() = value.hashCode() @@ -9898,12 +9963,25 @@ private constructor( return true } - return /* spotless:off */ other is Submission && effectiveDate == other.effectiveDate && expectedFundsSettlementAt == other.expectedFundsSettlementAt && expectedSettlementSchedule == other.expectedSettlementSchedule && submittedAt == other.submittedAt && traceNumber == other.traceNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Submission && + effectiveDate == other.effectiveDate && + expectedFundsSettlementAt == other.expectedFundsSettlementAt && + expectedSettlementSchedule == other.expectedSettlementSchedule && + submittedAt == other.submittedAt && + traceNumber == other.traceNumber && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(effectiveDate, expectedFundsSettlementAt, expectedSettlementSchedule, submittedAt, traceNumber, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + effectiveDate, + expectedFundsSettlementAt, + expectedSettlementSchedule, + submittedAt, + traceNumber, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -10028,7 +10106,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -10041,12 +10119,87 @@ private constructor( return true } - return /* spotless:off */ other is AchTransfer && id == other.id && accountId == other.accountId && accountNumber == other.accountNumber && acknowledgement == other.acknowledgement && addenda == other.addenda && amount == other.amount && approval == other.approval && cancellation == other.cancellation && companyDescriptiveDate == other.companyDescriptiveDate && companyDiscretionaryData == other.companyDiscretionaryData && companyEntryDescription == other.companyEntryDescription && companyId == other.companyId && companyName == other.companyName && createdAt == other.createdAt && createdBy == other.createdBy && currency == other.currency && destinationAccountHolder == other.destinationAccountHolder && externalAccountId == other.externalAccountId && funding == other.funding && idempotencyKey == other.idempotencyKey && inboundFundsHold == other.inboundFundsHold && individualId == other.individualId && individualName == other.individualName && network == other.network && notificationsOfChange == other.notificationsOfChange && pendingTransactionId == other.pendingTransactionId && preferredEffectiveDate == other.preferredEffectiveDate && return_ == other.return_ && routingNumber == other.routingNumber && settlement == other.settlement && standardEntryClassCode == other.standardEntryClassCode && statementDescriptor == other.statementDescriptor && status == other.status && submission == other.submission && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchTransfer && + id == other.id && + accountId == other.accountId && + accountNumber == other.accountNumber && + acknowledgement == other.acknowledgement && + addenda == other.addenda && + amount == other.amount && + approval == other.approval && + cancellation == other.cancellation && + companyDescriptiveDate == other.companyDescriptiveDate && + companyDiscretionaryData == other.companyDiscretionaryData && + companyEntryDescription == other.companyEntryDescription && + companyId == other.companyId && + companyName == other.companyName && + createdAt == other.createdAt && + createdBy == other.createdBy && + currency == other.currency && + destinationAccountHolder == other.destinationAccountHolder && + externalAccountId == other.externalAccountId && + funding == other.funding && + idempotencyKey == other.idempotencyKey && + inboundFundsHold == other.inboundFundsHold && + individualId == other.individualId && + individualName == other.individualName && + network == other.network && + notificationsOfChange == other.notificationsOfChange && + pendingTransactionId == other.pendingTransactionId && + preferredEffectiveDate == other.preferredEffectiveDate && + return_ == other.return_ && + routingNumber == other.routingNumber && + settlement == other.settlement && + standardEntryClassCode == other.standardEntryClassCode && + statementDescriptor == other.statementDescriptor && + status == other.status && + submission == other.submission && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, accountNumber, acknowledgement, addenda, amount, approval, cancellation, companyDescriptiveDate, companyDiscretionaryData, companyEntryDescription, companyId, companyName, createdAt, createdBy, currency, destinationAccountHolder, externalAccountId, funding, idempotencyKey, inboundFundsHold, individualId, individualName, network, notificationsOfChange, pendingTransactionId, preferredEffectiveDate, return_, routingNumber, settlement, standardEntryClassCode, statementDescriptor, status, submission, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + accountNumber, + acknowledgement, + addenda, + amount, + approval, + cancellation, + companyDescriptiveDate, + companyDiscretionaryData, + companyEntryDescription, + companyId, + companyName, + createdAt, + createdBy, + currency, + destinationAccountHolder, + externalAccountId, + funding, + idempotencyKey, + inboundFundsHold, + individualId, + individualName, + network, + notificationsOfChange, + pendingTransactionId, + preferredEffectiveDate, + return_, + routingNumber, + settlement, + standardEntryClassCode, + statementDescriptor, + status, + submission, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferApproveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferApproveParams.kt index ac8adbe18..9e75c57c1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferApproveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferApproveParams.kt @@ -218,10 +218,20 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferApproveParams && achTransferId == other.achTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is AchTransferApproveParams && + achTransferId == other.achTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(achTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + achTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "AchTransferApproveParams{achTransferId=$achTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCancelParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCancelParams.kt index 5ba0e4050..b86a69df0 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCancelParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCancelParams.kt @@ -218,10 +218,20 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferCancelParams && achTransferId == other.achTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is AchTransferCancelParams && + achTransferId == other.achTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(achTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + achTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "AchTransferCancelParams{achTransferId=$achTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCreateParams.kt index d74d31641..07fb33965 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferCreateParams.kt @@ -1830,13 +1830,54 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && amount == other.amount && statementDescriptor == other.statementDescriptor && accountNumber == other.accountNumber && addenda == other.addenda && companyDescriptiveDate == other.companyDescriptiveDate && companyDiscretionaryData == other.companyDiscretionaryData && companyEntryDescription == other.companyEntryDescription && companyName == other.companyName && destinationAccountHolder == other.destinationAccountHolder && externalAccountId == other.externalAccountId && funding == other.funding && individualId == other.individualId && individualName == other.individualName && preferredEffectiveDate == other.preferredEffectiveDate && requireApproval == other.requireApproval && routingNumber == other.routingNumber && standardEntryClassCode == other.standardEntryClassCode && transactionTiming == other.transactionTiming && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + amount == other.amount && + statementDescriptor == other.statementDescriptor && + accountNumber == other.accountNumber && + addenda == other.addenda && + companyDescriptiveDate == other.companyDescriptiveDate && + companyDiscretionaryData == other.companyDiscretionaryData && + companyEntryDescription == other.companyEntryDescription && + companyName == other.companyName && + destinationAccountHolder == other.destinationAccountHolder && + externalAccountId == other.externalAccountId && + funding == other.funding && + individualId == other.individualId && + individualName == other.individualName && + preferredEffectiveDate == other.preferredEffectiveDate && + requireApproval == other.requireApproval && + routingNumber == other.routingNumber && + standardEntryClassCode == other.standardEntryClassCode && + transactionTiming == other.transactionTiming && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + accountId, + amount, + statementDescriptor, + accountNumber, + addenda, + companyDescriptiveDate, + companyDiscretionaryData, + companyEntryDescription, + companyName, + destinationAccountHolder, + externalAccountId, + funding, + individualId, + individualName, + preferredEffectiveDate, + requireApproval, + routingNumber, + standardEntryClassCode, + transactionTiming, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, amount, statementDescriptor, accountNumber, addenda, companyDescriptiveDate, companyDiscretionaryData, companyEntryDescription, companyName, destinationAccountHolder, externalAccountId, funding, individualId, individualName, preferredEffectiveDate, requireApproval, routingNumber, standardEntryClassCode, transactionTiming, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -2216,7 +2257,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -2559,12 +2600,14 @@ private constructor( return true } - return /* spotless:off */ other is Entry && paymentRelatedInformation == other.paymentRelatedInformation && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Entry && + paymentRelatedInformation == other.paymentRelatedInformation && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(paymentRelatedInformation, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(paymentRelatedInformation, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2577,12 +2620,12 @@ private constructor( return true } - return /* spotless:off */ other is Freeform && entries == other.entries && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Freeform && + entries == other.entries && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(entries, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2972,12 +3015,15 @@ private constructor( return true } - return /* spotless:off */ other is Invoice && invoiceNumber == other.invoiceNumber && paidAmount == other.paidAmount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Invoice && + invoiceNumber == other.invoiceNumber && + paidAmount == other.paidAmount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(invoiceNumber, paidAmount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(invoiceNumber, paidAmount, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2990,12 +3036,12 @@ private constructor( return true } - return /* spotless:off */ other is PaymentOrderRemittanceAdvice && invoices == other.invoices && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PaymentOrderRemittanceAdvice && + invoices == other.invoices && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(invoices, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -3008,12 +3054,16 @@ private constructor( return true } - return /* spotless:off */ other is Addenda && category == other.category && freeform == other.freeform && paymentOrderRemittanceAdvice == other.paymentOrderRemittanceAdvice && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Addenda && + category == other.category && + freeform == other.freeform && + paymentOrderRemittanceAdvice == other.paymentOrderRemittanceAdvice && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, freeform, paymentOrderRemittanceAdvice, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, freeform, paymentOrderRemittanceAdvice, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3164,7 +3214,7 @@ private constructor( return true } - return /* spotless:off */ other is DestinationAccountHolder && value == other.value /* spotless:on */ + return other is DestinationAccountHolder && value == other.value } override fun hashCode() = value.hashCode() @@ -3307,7 +3357,7 @@ private constructor( return true } - return /* spotless:off */ other is Funding && value == other.value /* spotless:on */ + return other is Funding && value == other.value } override fun hashCode() = value.hashCode() @@ -3657,7 +3707,7 @@ private constructor( return true } - return /* spotless:off */ other is SettlementSchedule && value == other.value /* spotless:on */ + return other is SettlementSchedule && value == other.value } override fun hashCode() = value.hashCode() @@ -3670,12 +3720,15 @@ private constructor( return true } - return /* spotless:off */ other is PreferredEffectiveDate && date == other.date && settlementSchedule == other.settlementSchedule && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PreferredEffectiveDate && + date == other.date && + settlementSchedule == other.settlementSchedule && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(date, settlementSchedule, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(date, settlementSchedule, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3834,7 +3887,7 @@ private constructor( return true } - return /* spotless:off */ other is StandardEntryClassCode && value == other.value /* spotless:on */ + return other is StandardEntryClassCode && value == other.value } override fun hashCode() = value.hashCode() @@ -3972,7 +4025,7 @@ private constructor( return true } - return /* spotless:off */ other is TransactionTiming && value == other.value /* spotless:on */ + return other is TransactionTiming && value == other.value } override fun hashCode() = value.hashCode() @@ -3985,10 +4038,13 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AchTransferCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "AchTransferCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPage.kt index ec9c6945c..53ba0c336 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is AchTransferListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "AchTransferListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageAsync.kt index f2455829e..ed0c92d58 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is AchTransferListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "AchTransferListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageResponse.kt index 3663b51d1..c6aa0c172 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchTransferListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListParams.kt index 9b3c22cc7..7eb3b7d57 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListParams.kt @@ -477,12 +477,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -789,7 +794,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -802,12 +807,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -819,10 +824,30 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferListParams && accountId == other.accountId && createdAt == other.createdAt && cursor == other.cursor && externalAccountId == other.externalAccountId && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AchTransferListParams && + accountId == other.accountId && + createdAt == other.createdAt && + cursor == other.cursor && + externalAccountId == other.externalAccountId && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, createdAt, cursor, externalAccountId, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + createdAt, + cursor, + externalAccountId, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "AchTransferListParams{accountId=$accountId, createdAt=$createdAt, cursor=$cursor, externalAccountId=$externalAccountId, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferRetrieveParams.kt index 1e07aa3b9..60a689731 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferRetrieveParams.kt @@ -185,10 +185,14 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferRetrieveParams && achTransferId == other.achTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AchTransferRetrieveParams && + achTransferId == other.achTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(achTransferId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(achTransferId, additionalHeaders, additionalQueryParams) override fun toString() = "AchTransferRetrieveParams{achTransferId=$achTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccount.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccount.kt index 02f52ab57..2dcf2eb19 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccount.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccount.kt @@ -558,7 +558,7 @@ private constructor( return true } - return /* spotless:off */ other is ComplianceCategory && value == other.value /* spotless:on */ + return other is ComplianceCategory && value == other.value } override fun hashCode() = value.hashCode() @@ -683,7 +683,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -696,12 +696,29 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingAccount && id == other.id && accountId == other.accountId && complianceCategory == other.complianceCategory && entityId == other.entityId && idempotencyKey == other.idempotencyKey && name == other.name && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BookkeepingAccount && + id == other.id && + accountId == other.accountId && + complianceCategory == other.complianceCategory && + entityId == other.entityId && + idempotencyKey == other.idempotencyKey && + name == other.name && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, complianceCategory, entityId, idempotencyKey, name, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + complianceCategory, + entityId, + idempotencyKey, + name, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountBalanceParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountBalanceParams.kt index 16051e21b..b4cdd3e4f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountBalanceParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountBalanceParams.kt @@ -214,10 +214,15 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingAccountBalanceParams && bookkeepingAccountId == other.bookkeepingAccountId && atTime == other.atTime && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is BookkeepingAccountBalanceParams && + bookkeepingAccountId == other.bookkeepingAccountId && + atTime == other.atTime && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(bookkeepingAccountId, atTime, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(bookkeepingAccountId, atTime, additionalHeaders, additionalQueryParams) override fun toString() = "BookkeepingAccountBalanceParams{bookkeepingAccountId=$bookkeepingAccountId, atTime=$atTime, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountCreateParams.kt index b371e3076..cbd70d30e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountCreateParams.kt @@ -595,12 +595,17 @@ private constructor( return true } - return /* spotless:off */ other is Body && name == other.name && accountId == other.accountId && complianceCategory == other.complianceCategory && entityId == other.entityId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + name == other.name && + accountId == other.accountId && + complianceCategory == other.complianceCategory && + entityId == other.entityId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(name, accountId, complianceCategory, entityId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(name, accountId, complianceCategory, entityId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -739,7 +744,7 @@ private constructor( return true } - return /* spotless:off */ other is ComplianceCategory && value == other.value /* spotless:on */ + return other is ComplianceCategory && value == other.value } override fun hashCode() = value.hashCode() @@ -752,10 +757,13 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingAccountCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is BookkeepingAccountCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "BookkeepingAccountCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPage.kt index e18c77500..cd7b6b4e7 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingAccountListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is BookkeepingAccountListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "BookkeepingAccountListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageAsync.kt index 916fedd4a..80eecd7c9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingAccountListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is BookkeepingAccountListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "BookkeepingAccountListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageResponse.kt index db7ebece1..d77395794 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingAccountListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BookkeepingAccountListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListParams.kt index ea29aa0a1..33f07577f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListParams.kt @@ -231,10 +231,16 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingAccountListParams && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is BookkeepingAccountListParams && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) override fun toString() = "BookkeepingAccountListParams{cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountUpdateParams.kt index e08f0f3ea..84f089aa4 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountUpdateParams.kt @@ -411,12 +411,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -428,10 +428,15 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingAccountUpdateParams && bookkeepingAccountId == other.bookkeepingAccountId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is BookkeepingAccountUpdateParams && + bookkeepingAccountId == other.bookkeepingAccountId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(bookkeepingAccountId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(bookkeepingAccountId, body, additionalHeaders, additionalQueryParams) override fun toString() = "BookkeepingAccountUpdateParams{bookkeepingAccountId=$bookkeepingAccountId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingBalanceLookup.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingBalanceLookup.kt index 7f406ee21..c944f7f88 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingBalanceLookup.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingBalanceLookup.kt @@ -364,7 +364,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -377,12 +377,16 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingBalanceLookup && balance == other.balance && bookkeepingAccountId == other.bookkeepingAccountId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BookkeepingBalanceLookup && + balance == other.balance && + bookkeepingAccountId == other.bookkeepingAccountId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(balance, bookkeepingAccountId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(balance, bookkeepingAccountId, type, additionalProperties) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntry.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntry.kt index 22f2f5465..ef577d60e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntry.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntry.kt @@ -471,7 +471,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -484,12 +484,19 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntry && id == other.id && accountId == other.accountId && amount == other.amount && createdAt == other.createdAt && entrySetId == other.entrySetId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BookkeepingEntry && + id == other.id && + accountId == other.accountId && + amount == other.amount && + createdAt == other.createdAt && + entrySetId == other.entrySetId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, amount, createdAt, entrySetId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(id, accountId, amount, createdAt, entrySetId, type, additionalProperties) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPage.kt index 3a0902f62..7a7224782 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntryListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is BookkeepingEntryListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "BookkeepingEntryListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageAsync.kt index cf8edb4bf..0b5495cb4 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageAsync.kt @@ -137,10 +137,14 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntryListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is BookkeepingEntryListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "BookkeepingEntryListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageResponse.kt index 9d5dd3f4e..ee6845b2c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntryListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BookkeepingEntryListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListParams.kt index e747fca72..09b7bd8c8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListParams.kt @@ -221,10 +221,16 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntryListParams && accountId == other.accountId && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is BookkeepingEntryListParams && + accountId == other.accountId && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(accountId, cursor, limit, additionalHeaders, additionalQueryParams) override fun toString() = "BookkeepingEntryListParams{accountId=$accountId, cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryRetrieveParams.kt index 5c9d38740..9e3d57884 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryRetrieveParams.kt @@ -190,10 +190,14 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntryRetrieveParams && bookkeepingEntryId == other.bookkeepingEntryId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is BookkeepingEntryRetrieveParams && + bookkeepingEntryId == other.bookkeepingEntryId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(bookkeepingEntryId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(bookkeepingEntryId, additionalHeaders, additionalQueryParams) override fun toString() = "BookkeepingEntryRetrieveParams{bookkeepingEntryId=$bookkeepingEntryId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySet.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySet.kt index c16c1f31f..571c328e0 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySet.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySet.kt @@ -652,12 +652,16 @@ private constructor( return true } - return /* spotless:off */ other is Entry && id == other.id && accountId == other.accountId && amount == other.amount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Entry && + id == other.id && + accountId == other.accountId && + amount == other.amount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, amount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(id, accountId, amount, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -782,7 +786,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -795,12 +799,29 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntrySet && id == other.id && createdAt == other.createdAt && date == other.date && entries == other.entries && idempotencyKey == other.idempotencyKey && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BookkeepingEntrySet && + id == other.id && + createdAt == other.createdAt && + date == other.date && + entries == other.entries && + idempotencyKey == other.idempotencyKey && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, createdAt, date, entries, idempotencyKey, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + createdAt, + date, + entries, + idempotencyKey, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetCreateParams.kt index 69928420b..a3ed1757c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetCreateParams.kt @@ -563,12 +563,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && entries == other.entries && date == other.date && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + entries == other.entries && + date == other.date && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(entries, date, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(entries, date, transactionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -766,12 +770,13 @@ private constructor( return true } - return /* spotless:off */ other is Entry && accountId == other.accountId && amount == other.amount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Entry && + accountId == other.accountId && + amount == other.amount && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(accountId, amount, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -784,10 +789,13 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntrySetCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is BookkeepingEntrySetCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "BookkeepingEntrySetCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPage.kt index 200f3524f..daaa7cd7d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntrySetListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is BookkeepingEntrySetListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "BookkeepingEntrySetListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageAsync.kt index d1f1ce931..b7b003f0a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntrySetListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is BookkeepingEntrySetListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "BookkeepingEntrySetListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageResponse.kt index 33c9b185a..f9a811a52 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageResponse.kt @@ -227,12 +227,13 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntrySetListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BookkeepingEntrySetListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListParams.kt index 4637cda1d..343722496 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListParams.kt @@ -247,10 +247,24 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntrySetListParams && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && transactionId == other.transactionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is BookkeepingEntrySetListParams && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + transactionId == other.transactionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, idempotencyKey, limit, transactionId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + cursor, + idempotencyKey, + limit, + transactionId, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "BookkeepingEntrySetListParams{cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, transactionId=$transactionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetRetrieveParams.kt index eb121edde..aac1bbbb7 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingEntrySetRetrieveParams && bookkeepingEntrySetId == other.bookkeepingEntrySetId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is BookkeepingEntrySetRetrieveParams && + bookkeepingEntrySetId == other.bookkeepingEntrySetId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(bookkeepingEntrySetId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(bookkeepingEntrySetId, additionalHeaders, additionalQueryParams) override fun toString() = "BookkeepingEntrySetRetrieveParams{bookkeepingEntrySetId=$bookkeepingEntrySetId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDispute.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDispute.kt index e5449773b..ae014c8d5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDispute.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDispute.kt @@ -897,12 +897,16 @@ private constructor( return true } - return /* spotless:off */ other is Acceptance && acceptedAt == other.acceptedAt && cardDisputeId == other.cardDisputeId && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Acceptance && + acceptedAt == other.acceptedAt && + cardDisputeId == other.cardDisputeId && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(acceptedAt, cardDisputeId, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(acceptedAt, cardDisputeId, transactionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1196,12 +1200,17 @@ private constructor( return true } - return /* spotless:off */ other is Loss && cardDisputeId == other.cardDisputeId && explanation == other.explanation && lostAt == other.lostAt && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Loss && + cardDisputeId == other.cardDisputeId && + explanation == other.explanation && + lostAt == other.lostAt && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardDisputeId, explanation, lostAt, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardDisputeId, explanation, lostAt, transactionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1455,12 +1464,16 @@ private constructor( return true } - return /* spotless:off */ other is Rejection && cardDisputeId == other.cardDisputeId && explanation == other.explanation && rejectedAt == other.rejectedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Rejection && + cardDisputeId == other.cardDisputeId && + explanation == other.explanation && + rejectedAt == other.rejectedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardDisputeId, explanation, rejectedAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardDisputeId, explanation, rejectedAt, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1648,7 +1661,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1773,7 +1786,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1978,12 +1991,15 @@ private constructor( return true } - return /* spotless:off */ other is Win && cardDisputeId == other.cardDisputeId && wonAt == other.wonAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Win && + cardDisputeId == other.cardDisputeId && + wonAt == other.wonAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardDisputeId, wonAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardDisputeId, wonAt, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1996,12 +2012,39 @@ private constructor( return true } - return /* spotless:off */ other is CardDispute && id == other.id && acceptance == other.acceptance && amount == other.amount && createdAt == other.createdAt && disputedTransactionId == other.disputedTransactionId && explanation == other.explanation && idempotencyKey == other.idempotencyKey && loss == other.loss && rejection == other.rejection && status == other.status && type == other.type && win == other.win && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardDispute && + id == other.id && + acceptance == other.acceptance && + amount == other.amount && + createdAt == other.createdAt && + disputedTransactionId == other.disputedTransactionId && + explanation == other.explanation && + idempotencyKey == other.idempotencyKey && + loss == other.loss && + rejection == other.rejection && + status == other.status && + type == other.type && + win == other.win && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, acceptance, amount, createdAt, disputedTransactionId, explanation, idempotencyKey, loss, rejection, status, type, win, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + acceptance, + amount, + createdAt, + disputedTransactionId, + explanation, + idempotencyKey, + loss, + rejection, + status, + type, + win, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeCreateParams.kt index ca4fa321f..a6625be86 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeCreateParams.kt @@ -557,12 +557,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && disputedTransactionId == other.disputedTransactionId && explanation == other.explanation && amount == other.amount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + disputedTransactionId == other.disputedTransactionId && + explanation == other.explanation && + amount == other.amount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(disputedTransactionId, explanation, amount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(disputedTransactionId, explanation, amount, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -575,10 +579,13 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardDisputeCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CardDisputeCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPage.kt index 26148f2dd..abea17ee5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is CardDisputeListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "CardDisputeListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageAsync.kt index 217693add..a7c681639 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is CardDisputeListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "CardDisputeListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageResponse.kt index 5383cf1af..7e3106976 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardDisputeListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListParams.kt index df076c5a4..9f7962746 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListParams.kt @@ -446,12 +446,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -746,7 +751,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -759,12 +764,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -776,10 +781,26 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeListParams && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardDisputeListParams && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(createdAt, cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + createdAt, + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "CardDisputeListParams{createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeRetrieveParams.kt index c559690cb..2c014dad0 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeRetrieveParams.kt @@ -185,10 +185,14 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeRetrieveParams && cardDisputeId == other.cardDisputeId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardDisputeRetrieveParams && + cardDisputeId == other.cardDisputeId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardDisputeId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cardDisputeId, additionalHeaders, additionalQueryParams) override fun toString() = "CardDisputeRetrieveParams{cardDisputeId=$cardDisputeId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPayment.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPayment.kt index 107055fa0..ac22214b4 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPayment.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPayment.kt @@ -2366,7 +2366,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -3079,7 +3079,7 @@ private constructor( return true } - return /* spotless:off */ other is Outcome && value == other.value /* spotless:on */ + return other is Outcome && value == other.value } override fun hashCode() = value.hashCode() @@ -3092,12 +3092,15 @@ private constructor( return true } - return /* spotless:off */ other is Attempt && createdAt == other.createdAt && outcome == other.outcome && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Attempt && + createdAt == other.createdAt && + outcome == other.outcome && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(createdAt, outcome, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(createdAt, outcome, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3252,7 +3255,7 @@ private constructor( return true } - return /* spotless:off */ other is VerificationMethod && value == other.value /* spotless:on */ + return other is VerificationMethod && value == other.value } override fun hashCode() = value.hashCode() @@ -3265,12 +3268,25 @@ private constructor( return true } - return /* spotless:off */ other is Challenge && attempts == other.attempts && createdAt == other.createdAt && oneTimeCode == other.oneTimeCode && verificationMethod == other.verificationMethod && verificationValue == other.verificationValue && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Challenge && + attempts == other.attempts && + createdAt == other.createdAt && + oneTimeCode == other.oneTimeCode && + verificationMethod == other.verificationMethod && + verificationValue == other.verificationValue && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(attempts, createdAt, oneTimeCode, verificationMethod, verificationValue, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + attempts, + createdAt, + oneTimeCode, + verificationMethod, + verificationValue, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -3445,7 +3461,7 @@ private constructor( return true } - return /* spotless:off */ other is DenyReason && value == other.value /* spotless:on */ + return other is DenyReason && value == other.value } override fun hashCode() = value.hashCode() @@ -3594,7 +3610,7 @@ private constructor( return true } - return /* spotless:off */ other is DeviceChannel && value == other.value /* spotless:on */ + return other is DeviceChannel && value == other.value } override fun hashCode() = value.hashCode() @@ -3796,7 +3812,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -3924,7 +3940,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -3937,12 +3953,49 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthentication && id == other.id && cardId == other.cardId && cardPaymentId == other.cardPaymentId && category == other.category && challenge == other.challenge && createdAt == other.createdAt && denyReason == other.denyReason && deviceChannel == other.deviceChannel && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCountry == other.merchantCountry && merchantName == other.merchantName && purchaseAmount == other.purchaseAmount && purchaseCurrency == other.purchaseCurrency && realTimeDecisionId == other.realTimeDecisionId && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthentication && + id == other.id && + cardId == other.cardId && + cardPaymentId == other.cardPaymentId && + category == other.category && + challenge == other.challenge && + createdAt == other.createdAt && + denyReason == other.denyReason && + deviceChannel == other.deviceChannel && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCountry == other.merchantCountry && + merchantName == other.merchantName && + purchaseAmount == other.purchaseAmount && + purchaseCurrency == other.purchaseCurrency && + realTimeDecisionId == other.realTimeDecisionId && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, cardId, cardPaymentId, category, challenge, createdAt, denyReason, deviceChannel, merchantAcceptorId, merchantCategoryCode, merchantCountry, merchantName, purchaseAmount, purchaseCurrency, realTimeDecisionId, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + cardId, + cardPaymentId, + category, + challenge, + createdAt, + denyReason, + deviceChannel, + merchantAcceptorId, + merchantCategoryCode, + merchantCountry, + merchantName, + purchaseAmount, + purchaseCurrency, + realTimeDecisionId, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -5596,7 +5649,7 @@ private constructor( return true } - return /* spotless:off */ other is Actioner && value == other.value /* spotless:on */ + return other is Actioner && value == other.value } override fun hashCode() = value.hashCode() @@ -6357,12 +6410,15 @@ private constructor( return true } - return /* spotless:off */ other is Clinic && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Clinic && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6574,12 +6630,15 @@ private constructor( return true } - return /* spotless:off */ other is Dental && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Dental && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6791,12 +6850,15 @@ private constructor( return true } - return /* spotless:off */ other is Prescription && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Prescription && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -7008,12 +7070,15 @@ private constructor( return true } - return /* spotless:off */ other is Surcharge && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Surcharge && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -7229,12 +7294,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalCumulative && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalCumulative && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -7448,12 +7516,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalHealthcare && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalHealthcare && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -7665,12 +7736,15 @@ private constructor( return true } - return /* spotless:off */ other is Transit && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Transit && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -7882,12 +7956,15 @@ private constructor( return true } - return /* spotless:off */ other is Unknown && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Unknown && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -8099,12 +8176,15 @@ private constructor( return true } - return /* spotless:off */ other is Vision && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Vision && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -8117,13 +8197,34 @@ private constructor( return true } - return /* spotless:off */ other is AdditionalAmounts && clinic == other.clinic && dental == other.dental && prescription == other.prescription && surcharge == other.surcharge && totalCumulative == other.totalCumulative && totalHealthcare == other.totalHealthcare && transit == other.transit && unknown == other.unknown && vision == other.vision && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AdditionalAmounts && + clinic == other.clinic && + dental == other.dental && + prescription == other.prescription && + surcharge == other.surcharge && + totalCumulative == other.totalCumulative && + totalHealthcare == other.totalHealthcare && + transit == other.transit && + unknown == other.unknown && + vision == other.vision && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + clinic, + dental, + prescription, + surcharge, + totalCumulative, + totalHealthcare, + transit, + unknown, + vision, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(clinic, dental, prescription, surcharge, totalCumulative, totalHealthcare, transit, unknown, vision, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -8299,7 +8400,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -8449,7 +8550,7 @@ private constructor( return true } - return /* spotless:off */ other is Direction && value == other.value /* spotless:on */ + return other is Direction && value == other.value } override fun hashCode() = value.hashCode() @@ -8774,7 +8875,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -9410,7 +9511,7 @@ private constructor( return true } - return /* spotless:off */ other is ElectronicCommerceIndicator && value == other.value /* spotless:on */ + return other is ElectronicCommerceIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -9646,7 +9747,7 @@ private constructor( return true } - return /* spotless:off */ other is PointOfServiceEntryMode && value == other.value /* spotless:on */ + return other is PointOfServiceEntryMode && value == other.value } override fun hashCode() = value.hashCode() @@ -9900,7 +10001,7 @@ private constructor( return true } - return /* spotless:off */ other is StandInProcessingReason && value == other.value /* spotless:on */ + return other is StandInProcessingReason && value == other.value } override fun hashCode() = value.hashCode() @@ -9913,12 +10014,21 @@ private constructor( return true } - return /* spotless:off */ other is Visa && electronicCommerceIndicator == other.electronicCommerceIndicator && pointOfServiceEntryMode == other.pointOfServiceEntryMode && standInProcessingReason == other.standInProcessingReason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Visa && + electronicCommerceIndicator == other.electronicCommerceIndicator && + pointOfServiceEntryMode == other.pointOfServiceEntryMode && + standInProcessingReason == other.standInProcessingReason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(electronicCommerceIndicator, pointOfServiceEntryMode, standInProcessingReason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + electronicCommerceIndicator, + pointOfServiceEntryMode, + standInProcessingReason, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -9931,12 +10041,15 @@ private constructor( return true } - return /* spotless:off */ other is NetworkDetails && category == other.category && visa == other.visa && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkDetails && + category == other.category && + visa == other.visa && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, visa, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, visa, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -10226,12 +10339,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && retrievalReferenceNumber == other.retrievalReferenceNumber && traceNumber == other.traceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + retrievalReferenceNumber == other.retrievalReferenceNumber && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(retrievalReferenceNumber, traceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + retrievalReferenceNumber, + traceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -10487,7 +10609,7 @@ private constructor( return true } - return /* spotless:off */ other is ProcessingCategory && value == other.value /* spotless:on */ + return other is ProcessingCategory && value == other.value } override fun hashCode() = value.hashCode() @@ -10615,7 +10737,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -11140,7 +11262,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -11153,12 +11275,12 @@ private constructor( return true } - return /* spotless:off */ other is CardVerificationCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardVerificationCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(result, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -11726,7 +11848,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -11739,12 +11861,25 @@ private constructor( return true } - return /* spotless:off */ other is CardholderAddress && actualLine1 == other.actualLine1 && actualPostalCode == other.actualPostalCode && providedLine1 == other.providedLine1 && providedPostalCode == other.providedPostalCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardholderAddress && + actualLine1 == other.actualLine1 && + actualPostalCode == other.actualPostalCode && + providedLine1 == other.providedLine1 && + providedPostalCode == other.providedPostalCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(actualLine1, actualPostalCode, providedLine1, providedPostalCode, result, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + actualLine1, + actualPostalCode, + providedLine1, + providedPostalCode, + result, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -11757,12 +11892,15 @@ private constructor( return true } - return /* spotless:off */ other is Verification && cardVerificationCode == other.cardVerificationCode && cardholderAddress == other.cardholderAddress && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Verification && + cardVerificationCode == other.cardVerificationCode && + cardholderAddress == other.cardholderAddress && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -11775,12 +11913,71 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthorization && id == other.id && actioner == other.actioner && additionalAmounts == other.additionalAmounts && amount == other.amount && cardPaymentId == other.cardPaymentId && currency == other.currency && digitalWalletTokenId == other.digitalWalletTokenId && direction == other.direction && expiresAt == other.expiresAt && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantDescriptor == other.merchantDescriptor && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkDetails == other.networkDetails && networkIdentifiers == other.networkIdentifiers && networkRiskScore == other.networkRiskScore && pendingTransactionId == other.pendingTransactionId && physicalCardId == other.physicalCardId && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && processingCategory == other.processingCategory && realTimeDecisionId == other.realTimeDecisionId && terminalId == other.terminalId && type == other.type && verification == other.verification && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthorization && + id == other.id && + actioner == other.actioner && + additionalAmounts == other.additionalAmounts && + amount == other.amount && + cardPaymentId == other.cardPaymentId && + currency == other.currency && + digitalWalletTokenId == other.digitalWalletTokenId && + direction == other.direction && + expiresAt == other.expiresAt && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantDescriptor == other.merchantDescriptor && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkDetails == other.networkDetails && + networkIdentifiers == other.networkIdentifiers && + networkRiskScore == other.networkRiskScore && + pendingTransactionId == other.pendingTransactionId && + physicalCardId == other.physicalCardId && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + processingCategory == other.processingCategory && + realTimeDecisionId == other.realTimeDecisionId && + terminalId == other.terminalId && + type == other.type && + verification == other.verification && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, actioner, additionalAmounts, amount, cardPaymentId, currency, digitalWalletTokenId, direction, expiresAt, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantDescriptor, merchantPostalCode, merchantState, networkDetails, networkIdentifiers, networkRiskScore, pendingTransactionId, physicalCardId, presentmentAmount, presentmentCurrency, processingCategory, realTimeDecisionId, terminalId, type, verification, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + actioner, + additionalAmounts, + amount, + cardPaymentId, + currency, + digitalWalletTokenId, + direction, + expiresAt, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantDescriptor, + merchantPostalCode, + merchantState, + networkDetails, + networkIdentifiers, + networkRiskScore, + pendingTransactionId, + physicalCardId, + presentmentAmount, + presentmentCurrency, + processingCategory, + realTimeDecisionId, + terminalId, + type, + verification, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -12339,7 +12536,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -12468,7 +12665,7 @@ private constructor( return true } - return /* spotless:off */ other is Network && value == other.value /* spotless:on */ + return other is Network && value == other.value } override fun hashCode() = value.hashCode() @@ -12597,7 +12794,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -12610,12 +12807,27 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthorizationExpiration && id == other.id && cardAuthorizationId == other.cardAuthorizationId && currency == other.currency && expiredAmount == other.expiredAmount && network == other.network && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthorizationExpiration && + id == other.id && + cardAuthorizationId == other.cardAuthorizationId && + currency == other.currency && + expiredAmount == other.expiredAmount && + network == other.network && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, cardAuthorizationId, currency, expiredAmount, network, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + cardAuthorizationId, + currency, + expiredAmount, + network, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -14332,7 +14544,7 @@ private constructor( return true } - return /* spotless:off */ other is Actioner && value == other.value /* spotless:on */ + return other is Actioner && value == other.value } override fun hashCode() = value.hashCode() @@ -15093,12 +15305,15 @@ private constructor( return true } - return /* spotless:off */ other is Clinic && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Clinic && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -15310,12 +15525,15 @@ private constructor( return true } - return /* spotless:off */ other is Dental && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Dental && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -15527,12 +15745,15 @@ private constructor( return true } - return /* spotless:off */ other is Prescription && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Prescription && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -15744,12 +15965,15 @@ private constructor( return true } - return /* spotless:off */ other is Surcharge && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Surcharge && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -15965,12 +16189,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalCumulative && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalCumulative && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -16184,12 +16411,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalHealthcare && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalHealthcare && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -16401,12 +16631,15 @@ private constructor( return true } - return /* spotless:off */ other is Transit && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Transit && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -16618,12 +16851,15 @@ private constructor( return true } - return /* spotless:off */ other is Unknown && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Unknown && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -16835,12 +17071,15 @@ private constructor( return true } - return /* spotless:off */ other is Vision && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Vision && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -16853,13 +17092,34 @@ private constructor( return true } - return /* spotless:off */ other is AdditionalAmounts && clinic == other.clinic && dental == other.dental && prescription == other.prescription && surcharge == other.surcharge && totalCumulative == other.totalCumulative && totalHealthcare == other.totalHealthcare && transit == other.transit && unknown == other.unknown && vision == other.vision && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AdditionalAmounts && + clinic == other.clinic && + dental == other.dental && + prescription == other.prescription && + surcharge == other.surcharge && + totalCumulative == other.totalCumulative && + totalHealthcare == other.totalHealthcare && + transit == other.transit && + unknown == other.unknown && + vision == other.vision && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + clinic, + dental, + prescription, + surcharge, + totalCumulative, + totalHealthcare, + transit, + unknown, + vision, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(clinic, dental, prescription, surcharge, totalCumulative, totalHealthcare, transit, unknown, vision, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -17035,7 +17295,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -17185,7 +17445,7 @@ private constructor( return true } - return /* spotless:off */ other is Direction && value == other.value /* spotless:on */ + return other is Direction && value == other.value } override fun hashCode() = value.hashCode() @@ -17510,7 +17770,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -18146,7 +18406,7 @@ private constructor( return true } - return /* spotless:off */ other is ElectronicCommerceIndicator && value == other.value /* spotless:on */ + return other is ElectronicCommerceIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -18382,7 +18642,7 @@ private constructor( return true } - return /* spotless:off */ other is PointOfServiceEntryMode && value == other.value /* spotless:on */ + return other is PointOfServiceEntryMode && value == other.value } override fun hashCode() = value.hashCode() @@ -18636,7 +18896,7 @@ private constructor( return true } - return /* spotless:off */ other is StandInProcessingReason && value == other.value /* spotless:on */ + return other is StandInProcessingReason && value == other.value } override fun hashCode() = value.hashCode() @@ -18649,12 +18909,21 @@ private constructor( return true } - return /* spotless:off */ other is Visa && electronicCommerceIndicator == other.electronicCommerceIndicator && pointOfServiceEntryMode == other.pointOfServiceEntryMode && standInProcessingReason == other.standInProcessingReason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Visa && + electronicCommerceIndicator == other.electronicCommerceIndicator && + pointOfServiceEntryMode == other.pointOfServiceEntryMode && + standInProcessingReason == other.standInProcessingReason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(electronicCommerceIndicator, pointOfServiceEntryMode, standInProcessingReason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + electronicCommerceIndicator, + pointOfServiceEntryMode, + standInProcessingReason, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -18667,12 +18936,15 @@ private constructor( return true } - return /* spotless:off */ other is NetworkDetails && category == other.category && visa == other.visa && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkDetails && + category == other.category && + visa == other.visa && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, visa, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, visa, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -18962,12 +19234,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && retrievalReferenceNumber == other.retrievalReferenceNumber && traceNumber == other.traceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + retrievalReferenceNumber == other.retrievalReferenceNumber && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(retrievalReferenceNumber, traceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + retrievalReferenceNumber, + traceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -19223,7 +19504,7 @@ private constructor( return true } - return /* spotless:off */ other is ProcessingCategory && value == other.value /* spotless:on */ + return other is ProcessingCategory && value == other.value } override fun hashCode() = value.hashCode() @@ -19457,7 +19738,7 @@ private constructor( return true } - return /* spotless:off */ other is RealTimeDecisionReason && value == other.value /* spotless:on */ + return other is RealTimeDecisionReason && value == other.value } override fun hashCode() = value.hashCode() @@ -19801,7 +20082,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -20326,7 +20607,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -20339,12 +20620,12 @@ private constructor( return true } - return /* spotless:off */ other is CardVerificationCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardVerificationCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(result, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -20912,7 +21193,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -20925,12 +21206,25 @@ private constructor( return true } - return /* spotless:off */ other is CardholderAddress && actualLine1 == other.actualLine1 && actualPostalCode == other.actualPostalCode && providedLine1 == other.providedLine1 && providedPostalCode == other.providedPostalCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardholderAddress && + actualLine1 == other.actualLine1 && + actualPostalCode == other.actualPostalCode && + providedLine1 == other.providedLine1 && + providedPostalCode == other.providedPostalCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(actualLine1, actualPostalCode, providedLine1, providedPostalCode, result, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + actualLine1, + actualPostalCode, + providedLine1, + providedPostalCode, + result, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -20943,12 +21237,15 @@ private constructor( return true } - return /* spotless:off */ other is Verification && cardVerificationCode == other.cardVerificationCode && cardholderAddress == other.cardholderAddress && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Verification && + cardVerificationCode == other.cardVerificationCode && + cardholderAddress == other.cardholderAddress && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -20961,12 +21258,73 @@ private constructor( return true } - return /* spotless:off */ other is CardDecline && id == other.id && actioner == other.actioner && additionalAmounts == other.additionalAmounts && amount == other.amount && cardPaymentId == other.cardPaymentId && currency == other.currency && declinedTransactionId == other.declinedTransactionId && digitalWalletTokenId == other.digitalWalletTokenId && direction == other.direction && incrementedCardAuthorizationId == other.incrementedCardAuthorizationId && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantDescriptor == other.merchantDescriptor && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkDetails == other.networkDetails && networkIdentifiers == other.networkIdentifiers && networkRiskScore == other.networkRiskScore && physicalCardId == other.physicalCardId && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && processingCategory == other.processingCategory && realTimeDecisionId == other.realTimeDecisionId && realTimeDecisionReason == other.realTimeDecisionReason && reason == other.reason && terminalId == other.terminalId && verification == other.verification && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardDecline && + id == other.id && + actioner == other.actioner && + additionalAmounts == other.additionalAmounts && + amount == other.amount && + cardPaymentId == other.cardPaymentId && + currency == other.currency && + declinedTransactionId == other.declinedTransactionId && + digitalWalletTokenId == other.digitalWalletTokenId && + direction == other.direction && + incrementedCardAuthorizationId == other.incrementedCardAuthorizationId && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantDescriptor == other.merchantDescriptor && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkDetails == other.networkDetails && + networkIdentifiers == other.networkIdentifiers && + networkRiskScore == other.networkRiskScore && + physicalCardId == other.physicalCardId && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + processingCategory == other.processingCategory && + realTimeDecisionId == other.realTimeDecisionId && + realTimeDecisionReason == other.realTimeDecisionReason && + reason == other.reason && + terminalId == other.terminalId && + verification == other.verification && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, actioner, additionalAmounts, amount, cardPaymentId, currency, declinedTransactionId, digitalWalletTokenId, direction, incrementedCardAuthorizationId, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantDescriptor, merchantPostalCode, merchantState, networkDetails, networkIdentifiers, networkRiskScore, physicalCardId, presentmentAmount, presentmentCurrency, processingCategory, realTimeDecisionId, realTimeDecisionReason, reason, terminalId, verification, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + actioner, + additionalAmounts, + amount, + cardPaymentId, + currency, + declinedTransactionId, + digitalWalletTokenId, + direction, + incrementedCardAuthorizationId, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantDescriptor, + merchantPostalCode, + merchantState, + networkDetails, + networkIdentifiers, + networkRiskScore, + physicalCardId, + presentmentAmount, + presentmentCurrency, + processingCategory, + realTimeDecisionId, + realTimeDecisionReason, + reason, + terminalId, + verification, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -21629,7 +21987,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -21758,7 +22116,7 @@ private constructor( return true } - return /* spotless:off */ other is Network && value == other.value /* spotless:on */ + return other is Network && value == other.value } override fun hashCode() = value.hashCode() @@ -22048,12 +22406,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && retrievalReferenceNumber == other.retrievalReferenceNumber && traceNumber == other.traceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + retrievalReferenceNumber == other.retrievalReferenceNumber && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(retrievalReferenceNumber, traceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + retrievalReferenceNumber, + traceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -22181,7 +22548,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -22194,12 +22561,31 @@ private constructor( return true } - return /* spotless:off */ other is CardFuelConfirmation && id == other.id && cardAuthorizationId == other.cardAuthorizationId && currency == other.currency && network == other.network && networkIdentifiers == other.networkIdentifiers && pendingTransactionId == other.pendingTransactionId && type == other.type && updatedAuthorizationAmount == other.updatedAuthorizationAmount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardFuelConfirmation && + id == other.id && + cardAuthorizationId == other.cardAuthorizationId && + currency == other.currency && + network == other.network && + networkIdentifiers == other.networkIdentifiers && + pendingTransactionId == other.pendingTransactionId && + type == other.type && + updatedAuthorizationAmount == other.updatedAuthorizationAmount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, cardAuthorizationId, currency, network, networkIdentifiers, pendingTransactionId, type, updatedAuthorizationAmount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + cardAuthorizationId, + currency, + network, + networkIdentifiers, + pendingTransactionId, + type, + updatedAuthorizationAmount, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -23198,7 +23584,7 @@ private constructor( return true } - return /* spotless:off */ other is Actioner && value == other.value /* spotless:on */ + return other is Actioner && value == other.value } override fun hashCode() = value.hashCode() @@ -23959,12 +24345,15 @@ private constructor( return true } - return /* spotless:off */ other is Clinic && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Clinic && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -24176,12 +24565,15 @@ private constructor( return true } - return /* spotless:off */ other is Dental && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Dental && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -24393,12 +24785,15 @@ private constructor( return true } - return /* spotless:off */ other is Prescription && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Prescription && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -24610,12 +25005,15 @@ private constructor( return true } - return /* spotless:off */ other is Surcharge && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Surcharge && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -24831,12 +25229,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalCumulative && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalCumulative && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -25050,12 +25451,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalHealthcare && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalHealthcare && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -25267,12 +25671,15 @@ private constructor( return true } - return /* spotless:off */ other is Transit && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Transit && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -25484,12 +25891,15 @@ private constructor( return true } - return /* spotless:off */ other is Unknown && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Unknown && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -25701,12 +26111,15 @@ private constructor( return true } - return /* spotless:off */ other is Vision && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Vision && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -25719,13 +26132,34 @@ private constructor( return true } - return /* spotless:off */ other is AdditionalAmounts && clinic == other.clinic && dental == other.dental && prescription == other.prescription && surcharge == other.surcharge && totalCumulative == other.totalCumulative && totalHealthcare == other.totalHealthcare && transit == other.transit && unknown == other.unknown && vision == other.vision && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AdditionalAmounts && + clinic == other.clinic && + dental == other.dental && + prescription == other.prescription && + surcharge == other.surcharge && + totalCumulative == other.totalCumulative && + totalHealthcare == other.totalHealthcare && + transit == other.transit && + unknown == other.unknown && + vision == other.vision && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + clinic, + dental, + prescription, + surcharge, + totalCumulative, + totalHealthcare, + transit, + unknown, + vision, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(clinic, dental, prescription, surcharge, totalCumulative, totalHealthcare, transit, unknown, vision, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -25901,7 +26335,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -26030,7 +26464,7 @@ private constructor( return true } - return /* spotless:off */ other is Network && value == other.value /* spotless:on */ + return other is Network && value == other.value } override fun hashCode() = value.hashCode() @@ -26320,12 +26754,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && retrievalReferenceNumber == other.retrievalReferenceNumber && traceNumber == other.traceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + retrievalReferenceNumber == other.retrievalReferenceNumber && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(retrievalReferenceNumber, traceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + retrievalReferenceNumber, + traceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -26453,7 +26896,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -26466,12 +26909,45 @@ private constructor( return true } - return /* spotless:off */ other is CardIncrement && id == other.id && actioner == other.actioner && additionalAmounts == other.additionalAmounts && amount == other.amount && cardAuthorizationId == other.cardAuthorizationId && currency == other.currency && network == other.network && networkIdentifiers == other.networkIdentifiers && networkRiskScore == other.networkRiskScore && pendingTransactionId == other.pendingTransactionId && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && realTimeDecisionId == other.realTimeDecisionId && type == other.type && updatedAuthorizationAmount == other.updatedAuthorizationAmount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardIncrement && + id == other.id && + actioner == other.actioner && + additionalAmounts == other.additionalAmounts && + amount == other.amount && + cardAuthorizationId == other.cardAuthorizationId && + currency == other.currency && + network == other.network && + networkIdentifiers == other.networkIdentifiers && + networkRiskScore == other.networkRiskScore && + pendingTransactionId == other.pendingTransactionId && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + realTimeDecisionId == other.realTimeDecisionId && + type == other.type && + updatedAuthorizationAmount == other.updatedAuthorizationAmount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, actioner, additionalAmounts, amount, cardAuthorizationId, currency, network, networkIdentifiers, networkRiskScore, pendingTransactionId, presentmentAmount, presentmentCurrency, realTimeDecisionId, type, updatedAuthorizationAmount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + actioner, + additionalAmounts, + amount, + cardAuthorizationId, + currency, + network, + networkIdentifiers, + networkRiskScore, + pendingTransactionId, + presentmentAmount, + presentmentCurrency, + realTimeDecisionId, + type, + updatedAuthorizationAmount, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -27865,7 +28341,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -27878,12 +28354,15 @@ private constructor( return true } - return /* spotless:off */ other is Cashback && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cashback && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -28060,7 +28539,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -28487,7 +28966,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -28500,12 +28979,16 @@ private constructor( return true } - return /* spotless:off */ other is Interchange && amount == other.amount && code == other.code && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Interchange && + amount == other.amount && + code == other.code && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, code, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, code, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -28781,12 +29264,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && acquirerBusinessId == other.acquirerBusinessId && acquirerReferenceNumber == other.acquirerReferenceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + acquirerBusinessId == other.acquirerBusinessId && + acquirerReferenceNumber == other.acquirerReferenceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(acquirerBusinessId, acquirerReferenceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + acquirerBusinessId, + acquirerReferenceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -30683,7 +31175,7 @@ private constructor( return true } - return /* spotless:off */ other is ExtraCharges && value == other.value /* spotless:on */ + return other is ExtraCharges && value == other.value } override fun hashCode() = value.hashCode() @@ -30836,7 +31328,7 @@ private constructor( return true } - return /* spotless:off */ other is NoShowIndicator && value == other.value /* spotless:on */ + return other is NoShowIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -30849,13 +31341,48 @@ private constructor( return true } - return /* spotless:off */ other is CarRental && carClassCode == other.carClassCode && checkoutDate == other.checkoutDate && dailyRentalRateAmount == other.dailyRentalRateAmount && dailyRentalRateCurrency == other.dailyRentalRateCurrency && daysRented == other.daysRented && extraCharges == other.extraCharges && fuelChargesAmount == other.fuelChargesAmount && fuelChargesCurrency == other.fuelChargesCurrency && insuranceChargesAmount == other.insuranceChargesAmount && insuranceChargesCurrency == other.insuranceChargesCurrency && noShowIndicator == other.noShowIndicator && oneWayDropOffChargesAmount == other.oneWayDropOffChargesAmount && oneWayDropOffChargesCurrency == other.oneWayDropOffChargesCurrency && renterName == other.renterName && weeklyRentalRateAmount == other.weeklyRentalRateAmount && weeklyRentalRateCurrency == other.weeklyRentalRateCurrency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CarRental && + carClassCode == other.carClassCode && + checkoutDate == other.checkoutDate && + dailyRentalRateAmount == other.dailyRentalRateAmount && + dailyRentalRateCurrency == other.dailyRentalRateCurrency && + daysRented == other.daysRented && + extraCharges == other.extraCharges && + fuelChargesAmount == other.fuelChargesAmount && + fuelChargesCurrency == other.fuelChargesCurrency && + insuranceChargesAmount == other.insuranceChargesAmount && + insuranceChargesCurrency == other.insuranceChargesCurrency && + noShowIndicator == other.noShowIndicator && + oneWayDropOffChargesAmount == other.oneWayDropOffChargesAmount && + oneWayDropOffChargesCurrency == other.oneWayDropOffChargesCurrency && + renterName == other.renterName && + weeklyRentalRateAmount == other.weeklyRentalRateAmount && + weeklyRentalRateCurrency == other.weeklyRentalRateCurrency && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carClassCode, + checkoutDate, + dailyRentalRateAmount, + dailyRentalRateCurrency, + daysRented, + extraCharges, + fuelChargesAmount, + fuelChargesCurrency, + insuranceChargesAmount, + insuranceChargesCurrency, + noShowIndicator, + oneWayDropOffChargesAmount, + oneWayDropOffChargesCurrency, + renterName, + weeklyRentalRateAmount, + weeklyRentalRateCurrency, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carClassCode, checkoutDate, dailyRentalRateAmount, dailyRentalRateCurrency, daysRented, extraCharges, fuelChargesAmount, fuelChargesCurrency, insuranceChargesAmount, insuranceChargesCurrency, noShowIndicator, oneWayDropOffChargesAmount, oneWayDropOffChargesCurrency, renterName, weeklyRentalRateAmount, weeklyRentalRateCurrency, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -32107,7 +32634,7 @@ private constructor( return true } - return /* spotless:off */ other is ExtraCharges && value == other.value /* spotless:on */ + return other is ExtraCharges && value == other.value } override fun hashCode() = value.hashCode() @@ -32256,7 +32783,7 @@ private constructor( return true } - return /* spotless:off */ other is NoShowIndicator && value == other.value /* spotless:on */ + return other is NoShowIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -32269,13 +32796,48 @@ private constructor( return true } - return /* spotless:off */ other is Lodging && checkInDate == other.checkInDate && dailyRoomRateAmount == other.dailyRoomRateAmount && dailyRoomRateCurrency == other.dailyRoomRateCurrency && extraCharges == other.extraCharges && folioCashAdvancesAmount == other.folioCashAdvancesAmount && folioCashAdvancesCurrency == other.folioCashAdvancesCurrency && foodBeverageChargesAmount == other.foodBeverageChargesAmount && foodBeverageChargesCurrency == other.foodBeverageChargesCurrency && noShowIndicator == other.noShowIndicator && prepaidExpensesAmount == other.prepaidExpensesAmount && prepaidExpensesCurrency == other.prepaidExpensesCurrency && roomNights == other.roomNights && totalRoomTaxAmount == other.totalRoomTaxAmount && totalRoomTaxCurrency == other.totalRoomTaxCurrency && totalTaxAmount == other.totalTaxAmount && totalTaxCurrency == other.totalTaxCurrency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Lodging && + checkInDate == other.checkInDate && + dailyRoomRateAmount == other.dailyRoomRateAmount && + dailyRoomRateCurrency == other.dailyRoomRateCurrency && + extraCharges == other.extraCharges && + folioCashAdvancesAmount == other.folioCashAdvancesAmount && + folioCashAdvancesCurrency == other.folioCashAdvancesCurrency && + foodBeverageChargesAmount == other.foodBeverageChargesAmount && + foodBeverageChargesCurrency == other.foodBeverageChargesCurrency && + noShowIndicator == other.noShowIndicator && + prepaidExpensesAmount == other.prepaidExpensesAmount && + prepaidExpensesCurrency == other.prepaidExpensesCurrency && + roomNights == other.roomNights && + totalRoomTaxAmount == other.totalRoomTaxAmount && + totalRoomTaxCurrency == other.totalRoomTaxCurrency && + totalTaxAmount == other.totalTaxAmount && + totalTaxCurrency == other.totalTaxCurrency && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + checkInDate, + dailyRoomRateAmount, + dailyRoomRateCurrency, + extraCharges, + folioCashAdvancesAmount, + folioCashAdvancesCurrency, + foodBeverageChargesAmount, + foodBeverageChargesCurrency, + noShowIndicator, + prepaidExpensesAmount, + prepaidExpensesCurrency, + roomNights, + totalRoomTaxAmount, + totalRoomTaxCurrency, + totalTaxAmount, + totalTaxCurrency, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(checkInDate, dailyRoomRateAmount, dailyRoomRateCurrency, extraCharges, folioCashAdvancesAmount, folioCashAdvancesCurrency, foodBeverageChargesAmount, foodBeverageChargesCurrency, noShowIndicator, prepaidExpensesAmount, prepaidExpensesCurrency, roomNights, totalRoomTaxAmount, totalRoomTaxCurrency, totalTaxAmount, totalTaxCurrency, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -32448,7 +33010,7 @@ private constructor( return true } - return /* spotless:off */ other is PurchaseIdentifierFormat && value == other.value /* spotless:on */ + return other is PurchaseIdentifierFormat && value == other.value } override fun hashCode() = value.hashCode() @@ -33854,7 +34416,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditReasonIndicator && value == other.value /* spotless:on */ + return other is CreditReasonIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -34424,7 +34986,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -34437,12 +34999,15 @@ private constructor( return true } - return /* spotless:off */ other is Service && category == other.category && subCategory == other.subCategory && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Service && + category == other.category && + subCategory == other.subCategory && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, subCategory, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, subCategory, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -34455,13 +35020,27 @@ private constructor( return true } - return /* spotless:off */ other is Ancillary && connectedTicketDocumentNumber == other.connectedTicketDocumentNumber && creditReasonIndicator == other.creditReasonIndicator && passengerNameOrDescription == other.passengerNameOrDescription && services == other.services && ticketDocumentNumber == other.ticketDocumentNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Ancillary && + connectedTicketDocumentNumber == + other.connectedTicketDocumentNumber && + creditReasonIndicator == other.creditReasonIndicator && + passengerNameOrDescription == other.passengerNameOrDescription && + services == other.services && + ticketDocumentNumber == other.ticketDocumentNumber && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + connectedTicketDocumentNumber, + creditReasonIndicator, + passengerNameOrDescription, + services, + ticketDocumentNumber, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(connectedTicketDocumentNumber, creditReasonIndicator, passengerNameOrDescription, services, ticketDocumentNumber, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -34669,7 +35248,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditReasonIndicator && value == other.value /* spotless:on */ + return other is CreditReasonIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -34820,7 +35399,7 @@ private constructor( return true } - return /* spotless:off */ other is RestrictedTicketIndicator && value == other.value /* spotless:on */ + return other is RestrictedTicketIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -34977,7 +35556,7 @@ private constructor( return true } - return /* spotless:off */ other is TicketChangeIndicator && value == other.value /* spotless:on */ + return other is TicketChangeIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -35573,7 +36152,7 @@ private constructor( return true } - return /* spotless:off */ other is StopOverCode && value == other.value /* spotless:on */ + return other is StopOverCode && value == other.value } override fun hashCode() = value.hashCode() @@ -35586,13 +36165,28 @@ private constructor( return true } - return /* spotless:off */ other is TripLeg && carrierCode == other.carrierCode && destinationCityAirportCode == other.destinationCityAirportCode && fareBasisCode == other.fareBasisCode && flightNumber == other.flightNumber && serviceClass == other.serviceClass && stopOverCode == other.stopOverCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TripLeg && + carrierCode == other.carrierCode && + destinationCityAirportCode == other.destinationCityAirportCode && + fareBasisCode == other.fareBasisCode && + flightNumber == other.flightNumber && + serviceClass == other.serviceClass && + stopOverCode == other.stopOverCode && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carrierCode, + destinationCityAirportCode, + fareBasisCode, + flightNumber, + serviceClass, + stopOverCode, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carrierCode, destinationCityAirportCode, fareBasisCode, flightNumber, serviceClass, stopOverCode, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -35604,13 +36198,40 @@ private constructor( return true } - return /* spotless:off */ other is Travel && ancillary == other.ancillary && computerizedReservationSystem == other.computerizedReservationSystem && creditReasonIndicator == other.creditReasonIndicator && departureDate == other.departureDate && originationCityAirportCode == other.originationCityAirportCode && passengerName == other.passengerName && restrictedTicketIndicator == other.restrictedTicketIndicator && ticketChangeIndicator == other.ticketChangeIndicator && ticketNumber == other.ticketNumber && travelAgencyCode == other.travelAgencyCode && travelAgencyName == other.travelAgencyName && tripLegs == other.tripLegs && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Travel && + ancillary == other.ancillary && + computerizedReservationSystem == other.computerizedReservationSystem && + creditReasonIndicator == other.creditReasonIndicator && + departureDate == other.departureDate && + originationCityAirportCode == other.originationCityAirportCode && + passengerName == other.passengerName && + restrictedTicketIndicator == other.restrictedTicketIndicator && + ticketChangeIndicator == other.ticketChangeIndicator && + ticketNumber == other.ticketNumber && + travelAgencyCode == other.travelAgencyCode && + travelAgencyName == other.travelAgencyName && + tripLegs == other.tripLegs && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + ancillary, + computerizedReservationSystem, + creditReasonIndicator, + departureDate, + originationCityAirportCode, + passengerName, + restrictedTicketIndicator, + ticketChangeIndicator, + ticketNumber, + travelAgencyCode, + travelAgencyName, + tripLegs, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(ancillary, computerizedReservationSystem, creditReasonIndicator, departureDate, originationCityAirportCode, passengerName, restrictedTicketIndicator, ticketChangeIndicator, ticketNumber, travelAgencyCode, travelAgencyName, tripLegs, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -35622,13 +36243,36 @@ private constructor( return true } - return /* spotless:off */ other is PurchaseDetails && carRental == other.carRental && customerReferenceIdentifier == other.customerReferenceIdentifier && localTaxAmount == other.localTaxAmount && localTaxCurrency == other.localTaxCurrency && lodging == other.lodging && nationalTaxAmount == other.nationalTaxAmount && nationalTaxCurrency == other.nationalTaxCurrency && purchaseIdentifier == other.purchaseIdentifier && purchaseIdentifierFormat == other.purchaseIdentifierFormat && travel == other.travel && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PurchaseDetails && + carRental == other.carRental && + customerReferenceIdentifier == other.customerReferenceIdentifier && + localTaxAmount == other.localTaxAmount && + localTaxCurrency == other.localTaxCurrency && + lodging == other.lodging && + nationalTaxAmount == other.nationalTaxAmount && + nationalTaxCurrency == other.nationalTaxCurrency && + purchaseIdentifier == other.purchaseIdentifier && + purchaseIdentifierFormat == other.purchaseIdentifierFormat && + travel == other.travel && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carRental, + customerReferenceIdentifier, + localTaxAmount, + localTaxCurrency, + lodging, + nationalTaxAmount, + nationalTaxCurrency, + purchaseIdentifier, + purchaseIdentifierFormat, + travel, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carRental, customerReferenceIdentifier, localTaxAmount, localTaxCurrency, lodging, nationalTaxAmount, nationalTaxCurrency, purchaseIdentifier, purchaseIdentifierFormat, travel, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -35755,7 +36399,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -35768,12 +36412,53 @@ private constructor( return true } - return /* spotless:off */ other is CardRefund && id == other.id && amount == other.amount && cardPaymentId == other.cardPaymentId && cashback == other.cashback && currency == other.currency && interchange == other.interchange && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantName == other.merchantName && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkIdentifiers == other.networkIdentifiers && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && purchaseDetails == other.purchaseDetails && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardRefund && + id == other.id && + amount == other.amount && + cardPaymentId == other.cardPaymentId && + cashback == other.cashback && + currency == other.currency && + interchange == other.interchange && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantName == other.merchantName && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkIdentifiers == other.networkIdentifiers && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + purchaseDetails == other.purchaseDetails && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, cardPaymentId, cashback, currency, interchange, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantName, merchantPostalCode, merchantState, networkIdentifiers, presentmentAmount, presentmentCurrency, purchaseDetails, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + cardPaymentId, + cashback, + currency, + interchange, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantName, + merchantPostalCode, + merchantState, + networkIdentifiers, + presentmentAmount, + presentmentCurrency, + purchaseDetails, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -37107,7 +37792,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -37236,7 +37921,7 @@ private constructor( return true } - return /* spotless:off */ other is Network && value == other.value /* spotless:on */ + return other is Network && value == other.value } override fun hashCode() = value.hashCode() @@ -37526,12 +38211,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && retrievalReferenceNumber == other.retrievalReferenceNumber && traceNumber == other.traceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + retrievalReferenceNumber == other.retrievalReferenceNumber && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(retrievalReferenceNumber, traceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + retrievalReferenceNumber, + traceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -37691,7 +38385,7 @@ private constructor( return true } - return /* spotless:off */ other is ReversalReason && value == other.value /* spotless:on */ + return other is ReversalReason && value == other.value } override fun hashCode() = value.hashCode() @@ -37819,7 +38513,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -37832,12 +38526,58 @@ private constructor( return true } - return /* spotless:off */ other is CardReversal && id == other.id && cardAuthorizationId == other.cardAuthorizationId && currency == other.currency && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantDescriptor == other.merchantDescriptor && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && network == other.network && networkIdentifiers == other.networkIdentifiers && pendingTransactionId == other.pendingTransactionId && presentmentCurrency == other.presentmentCurrency && reversalAmount == other.reversalAmount && reversalPresentmentAmount == other.reversalPresentmentAmount && reversalReason == other.reversalReason && terminalId == other.terminalId && type == other.type && updatedAuthorizationAmount == other.updatedAuthorizationAmount && updatedAuthorizationPresentmentAmount == other.updatedAuthorizationPresentmentAmount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardReversal && + id == other.id && + cardAuthorizationId == other.cardAuthorizationId && + currency == other.currency && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantDescriptor == other.merchantDescriptor && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + network == other.network && + networkIdentifiers == other.networkIdentifiers && + pendingTransactionId == other.pendingTransactionId && + presentmentCurrency == other.presentmentCurrency && + reversalAmount == other.reversalAmount && + reversalPresentmentAmount == other.reversalPresentmentAmount && + reversalReason == other.reversalReason && + terminalId == other.terminalId && + type == other.type && + updatedAuthorizationAmount == other.updatedAuthorizationAmount && + updatedAuthorizationPresentmentAmount == + other.updatedAuthorizationPresentmentAmount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, cardAuthorizationId, currency, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantDescriptor, merchantPostalCode, merchantState, network, networkIdentifiers, pendingTransactionId, presentmentCurrency, reversalAmount, reversalPresentmentAmount, reversalReason, terminalId, type, updatedAuthorizationAmount, updatedAuthorizationPresentmentAmount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + cardAuthorizationId, + currency, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantDescriptor, + merchantPostalCode, + merchantState, + network, + networkIdentifiers, + pendingTransactionId, + presentmentCurrency, + reversalAmount, + reversalPresentmentAmount, + reversalReason, + terminalId, + type, + updatedAuthorizationAmount, + updatedAuthorizationPresentmentAmount, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -39340,7 +40080,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -39353,12 +40093,15 @@ private constructor( return true } - return /* spotless:off */ other is Cashback && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cashback && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -39535,7 +40278,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -39962,7 +40705,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -39975,12 +40718,16 @@ private constructor( return true } - return /* spotless:off */ other is Interchange && amount == other.amount && code == other.code && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Interchange && + amount == other.amount && + code == other.code && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, code, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, code, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -40256,12 +41003,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && acquirerBusinessId == other.acquirerBusinessId && acquirerReferenceNumber == other.acquirerReferenceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + acquirerBusinessId == other.acquirerBusinessId && + acquirerReferenceNumber == other.acquirerReferenceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(acquirerBusinessId, acquirerReferenceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + acquirerBusinessId, + acquirerReferenceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -42158,7 +42914,7 @@ private constructor( return true } - return /* spotless:off */ other is ExtraCharges && value == other.value /* spotless:on */ + return other is ExtraCharges && value == other.value } override fun hashCode() = value.hashCode() @@ -42311,7 +43067,7 @@ private constructor( return true } - return /* spotless:off */ other is NoShowIndicator && value == other.value /* spotless:on */ + return other is NoShowIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -42324,13 +43080,48 @@ private constructor( return true } - return /* spotless:off */ other is CarRental && carClassCode == other.carClassCode && checkoutDate == other.checkoutDate && dailyRentalRateAmount == other.dailyRentalRateAmount && dailyRentalRateCurrency == other.dailyRentalRateCurrency && daysRented == other.daysRented && extraCharges == other.extraCharges && fuelChargesAmount == other.fuelChargesAmount && fuelChargesCurrency == other.fuelChargesCurrency && insuranceChargesAmount == other.insuranceChargesAmount && insuranceChargesCurrency == other.insuranceChargesCurrency && noShowIndicator == other.noShowIndicator && oneWayDropOffChargesAmount == other.oneWayDropOffChargesAmount && oneWayDropOffChargesCurrency == other.oneWayDropOffChargesCurrency && renterName == other.renterName && weeklyRentalRateAmount == other.weeklyRentalRateAmount && weeklyRentalRateCurrency == other.weeklyRentalRateCurrency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CarRental && + carClassCode == other.carClassCode && + checkoutDate == other.checkoutDate && + dailyRentalRateAmount == other.dailyRentalRateAmount && + dailyRentalRateCurrency == other.dailyRentalRateCurrency && + daysRented == other.daysRented && + extraCharges == other.extraCharges && + fuelChargesAmount == other.fuelChargesAmount && + fuelChargesCurrency == other.fuelChargesCurrency && + insuranceChargesAmount == other.insuranceChargesAmount && + insuranceChargesCurrency == other.insuranceChargesCurrency && + noShowIndicator == other.noShowIndicator && + oneWayDropOffChargesAmount == other.oneWayDropOffChargesAmount && + oneWayDropOffChargesCurrency == other.oneWayDropOffChargesCurrency && + renterName == other.renterName && + weeklyRentalRateAmount == other.weeklyRentalRateAmount && + weeklyRentalRateCurrency == other.weeklyRentalRateCurrency && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carClassCode, + checkoutDate, + dailyRentalRateAmount, + dailyRentalRateCurrency, + daysRented, + extraCharges, + fuelChargesAmount, + fuelChargesCurrency, + insuranceChargesAmount, + insuranceChargesCurrency, + noShowIndicator, + oneWayDropOffChargesAmount, + oneWayDropOffChargesCurrency, + renterName, + weeklyRentalRateAmount, + weeklyRentalRateCurrency, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carClassCode, checkoutDate, dailyRentalRateAmount, dailyRentalRateCurrency, daysRented, extraCharges, fuelChargesAmount, fuelChargesCurrency, insuranceChargesAmount, insuranceChargesCurrency, noShowIndicator, oneWayDropOffChargesAmount, oneWayDropOffChargesCurrency, renterName, weeklyRentalRateAmount, weeklyRentalRateCurrency, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -43582,7 +44373,7 @@ private constructor( return true } - return /* spotless:off */ other is ExtraCharges && value == other.value /* spotless:on */ + return other is ExtraCharges && value == other.value } override fun hashCode() = value.hashCode() @@ -43731,7 +44522,7 @@ private constructor( return true } - return /* spotless:off */ other is NoShowIndicator && value == other.value /* spotless:on */ + return other is NoShowIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -43744,13 +44535,48 @@ private constructor( return true } - return /* spotless:off */ other is Lodging && checkInDate == other.checkInDate && dailyRoomRateAmount == other.dailyRoomRateAmount && dailyRoomRateCurrency == other.dailyRoomRateCurrency && extraCharges == other.extraCharges && folioCashAdvancesAmount == other.folioCashAdvancesAmount && folioCashAdvancesCurrency == other.folioCashAdvancesCurrency && foodBeverageChargesAmount == other.foodBeverageChargesAmount && foodBeverageChargesCurrency == other.foodBeverageChargesCurrency && noShowIndicator == other.noShowIndicator && prepaidExpensesAmount == other.prepaidExpensesAmount && prepaidExpensesCurrency == other.prepaidExpensesCurrency && roomNights == other.roomNights && totalRoomTaxAmount == other.totalRoomTaxAmount && totalRoomTaxCurrency == other.totalRoomTaxCurrency && totalTaxAmount == other.totalTaxAmount && totalTaxCurrency == other.totalTaxCurrency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Lodging && + checkInDate == other.checkInDate && + dailyRoomRateAmount == other.dailyRoomRateAmount && + dailyRoomRateCurrency == other.dailyRoomRateCurrency && + extraCharges == other.extraCharges && + folioCashAdvancesAmount == other.folioCashAdvancesAmount && + folioCashAdvancesCurrency == other.folioCashAdvancesCurrency && + foodBeverageChargesAmount == other.foodBeverageChargesAmount && + foodBeverageChargesCurrency == other.foodBeverageChargesCurrency && + noShowIndicator == other.noShowIndicator && + prepaidExpensesAmount == other.prepaidExpensesAmount && + prepaidExpensesCurrency == other.prepaidExpensesCurrency && + roomNights == other.roomNights && + totalRoomTaxAmount == other.totalRoomTaxAmount && + totalRoomTaxCurrency == other.totalRoomTaxCurrency && + totalTaxAmount == other.totalTaxAmount && + totalTaxCurrency == other.totalTaxCurrency && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + checkInDate, + dailyRoomRateAmount, + dailyRoomRateCurrency, + extraCharges, + folioCashAdvancesAmount, + folioCashAdvancesCurrency, + foodBeverageChargesAmount, + foodBeverageChargesCurrency, + noShowIndicator, + prepaidExpensesAmount, + prepaidExpensesCurrency, + roomNights, + totalRoomTaxAmount, + totalRoomTaxCurrency, + totalTaxAmount, + totalTaxCurrency, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(checkInDate, dailyRoomRateAmount, dailyRoomRateCurrency, extraCharges, folioCashAdvancesAmount, folioCashAdvancesCurrency, foodBeverageChargesAmount, foodBeverageChargesCurrency, noShowIndicator, prepaidExpensesAmount, prepaidExpensesCurrency, roomNights, totalRoomTaxAmount, totalRoomTaxCurrency, totalTaxAmount, totalTaxCurrency, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -43923,7 +44749,7 @@ private constructor( return true } - return /* spotless:off */ other is PurchaseIdentifierFormat && value == other.value /* spotless:on */ + return other is PurchaseIdentifierFormat && value == other.value } override fun hashCode() = value.hashCode() @@ -45329,7 +46155,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditReasonIndicator && value == other.value /* spotless:on */ + return other is CreditReasonIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -45899,7 +46725,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -45912,12 +46738,15 @@ private constructor( return true } - return /* spotless:off */ other is Service && category == other.category && subCategory == other.subCategory && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Service && + category == other.category && + subCategory == other.subCategory && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, subCategory, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, subCategory, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -45930,13 +46759,27 @@ private constructor( return true } - return /* spotless:off */ other is Ancillary && connectedTicketDocumentNumber == other.connectedTicketDocumentNumber && creditReasonIndicator == other.creditReasonIndicator && passengerNameOrDescription == other.passengerNameOrDescription && services == other.services && ticketDocumentNumber == other.ticketDocumentNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Ancillary && + connectedTicketDocumentNumber == + other.connectedTicketDocumentNumber && + creditReasonIndicator == other.creditReasonIndicator && + passengerNameOrDescription == other.passengerNameOrDescription && + services == other.services && + ticketDocumentNumber == other.ticketDocumentNumber && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + connectedTicketDocumentNumber, + creditReasonIndicator, + passengerNameOrDescription, + services, + ticketDocumentNumber, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(connectedTicketDocumentNumber, creditReasonIndicator, passengerNameOrDescription, services, ticketDocumentNumber, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -46144,7 +46987,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditReasonIndicator && value == other.value /* spotless:on */ + return other is CreditReasonIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -46295,7 +47138,7 @@ private constructor( return true } - return /* spotless:off */ other is RestrictedTicketIndicator && value == other.value /* spotless:on */ + return other is RestrictedTicketIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -46452,7 +47295,7 @@ private constructor( return true } - return /* spotless:off */ other is TicketChangeIndicator && value == other.value /* spotless:on */ + return other is TicketChangeIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -47048,7 +47891,7 @@ private constructor( return true } - return /* spotless:off */ other is StopOverCode && value == other.value /* spotless:on */ + return other is StopOverCode && value == other.value } override fun hashCode() = value.hashCode() @@ -47061,13 +47904,28 @@ private constructor( return true } - return /* spotless:off */ other is TripLeg && carrierCode == other.carrierCode && destinationCityAirportCode == other.destinationCityAirportCode && fareBasisCode == other.fareBasisCode && flightNumber == other.flightNumber && serviceClass == other.serviceClass && stopOverCode == other.stopOverCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TripLeg && + carrierCode == other.carrierCode && + destinationCityAirportCode == other.destinationCityAirportCode && + fareBasisCode == other.fareBasisCode && + flightNumber == other.flightNumber && + serviceClass == other.serviceClass && + stopOverCode == other.stopOverCode && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carrierCode, + destinationCityAirportCode, + fareBasisCode, + flightNumber, + serviceClass, + stopOverCode, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carrierCode, destinationCityAirportCode, fareBasisCode, flightNumber, serviceClass, stopOverCode, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -47079,13 +47937,40 @@ private constructor( return true } - return /* spotless:off */ other is Travel && ancillary == other.ancillary && computerizedReservationSystem == other.computerizedReservationSystem && creditReasonIndicator == other.creditReasonIndicator && departureDate == other.departureDate && originationCityAirportCode == other.originationCityAirportCode && passengerName == other.passengerName && restrictedTicketIndicator == other.restrictedTicketIndicator && ticketChangeIndicator == other.ticketChangeIndicator && ticketNumber == other.ticketNumber && travelAgencyCode == other.travelAgencyCode && travelAgencyName == other.travelAgencyName && tripLegs == other.tripLegs && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Travel && + ancillary == other.ancillary && + computerizedReservationSystem == other.computerizedReservationSystem && + creditReasonIndicator == other.creditReasonIndicator && + departureDate == other.departureDate && + originationCityAirportCode == other.originationCityAirportCode && + passengerName == other.passengerName && + restrictedTicketIndicator == other.restrictedTicketIndicator && + ticketChangeIndicator == other.ticketChangeIndicator && + ticketNumber == other.ticketNumber && + travelAgencyCode == other.travelAgencyCode && + travelAgencyName == other.travelAgencyName && + tripLegs == other.tripLegs && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + ancillary, + computerizedReservationSystem, + creditReasonIndicator, + departureDate, + originationCityAirportCode, + passengerName, + restrictedTicketIndicator, + ticketChangeIndicator, + ticketNumber, + travelAgencyCode, + travelAgencyName, + tripLegs, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(ancillary, computerizedReservationSystem, creditReasonIndicator, departureDate, originationCityAirportCode, passengerName, restrictedTicketIndicator, ticketChangeIndicator, ticketNumber, travelAgencyCode, travelAgencyName, tripLegs, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -47097,13 +47982,36 @@ private constructor( return true } - return /* spotless:off */ other is PurchaseDetails && carRental == other.carRental && customerReferenceIdentifier == other.customerReferenceIdentifier && localTaxAmount == other.localTaxAmount && localTaxCurrency == other.localTaxCurrency && lodging == other.lodging && nationalTaxAmount == other.nationalTaxAmount && nationalTaxCurrency == other.nationalTaxCurrency && purchaseIdentifier == other.purchaseIdentifier && purchaseIdentifierFormat == other.purchaseIdentifierFormat && travel == other.travel && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PurchaseDetails && + carRental == other.carRental && + customerReferenceIdentifier == other.customerReferenceIdentifier && + localTaxAmount == other.localTaxAmount && + localTaxCurrency == other.localTaxCurrency && + lodging == other.lodging && + nationalTaxAmount == other.nationalTaxAmount && + nationalTaxCurrency == other.nationalTaxCurrency && + purchaseIdentifier == other.purchaseIdentifier && + purchaseIdentifierFormat == other.purchaseIdentifierFormat && + travel == other.travel && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carRental, + customerReferenceIdentifier, + localTaxAmount, + localTaxCurrency, + lodging, + nationalTaxAmount, + nationalTaxCurrency, + purchaseIdentifier, + purchaseIdentifierFormat, + travel, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carRental, customerReferenceIdentifier, localTaxAmount, localTaxCurrency, lodging, nationalTaxAmount, nationalTaxCurrency, purchaseIdentifier, purchaseIdentifierFormat, travel, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -47230,7 +48138,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -47243,12 +48151,57 @@ private constructor( return true } - return /* spotless:off */ other is CardSettlement && id == other.id && amount == other.amount && cardAuthorization == other.cardAuthorization && cardPaymentId == other.cardPaymentId && cashback == other.cashback && currency == other.currency && interchange == other.interchange && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantName == other.merchantName && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkIdentifiers == other.networkIdentifiers && pendingTransactionId == other.pendingTransactionId && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && purchaseDetails == other.purchaseDetails && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardSettlement && + id == other.id && + amount == other.amount && + cardAuthorization == other.cardAuthorization && + cardPaymentId == other.cardPaymentId && + cashback == other.cashback && + currency == other.currency && + interchange == other.interchange && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantName == other.merchantName && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkIdentifiers == other.networkIdentifiers && + pendingTransactionId == other.pendingTransactionId && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + purchaseDetails == other.purchaseDetails && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, cardAuthorization, cardPaymentId, cashback, currency, interchange, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantName, merchantPostalCode, merchantState, networkIdentifiers, pendingTransactionId, presentmentAmount, presentmentCurrency, purchaseDetails, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + cardAuthorization, + cardPaymentId, + cashback, + currency, + interchange, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantName, + merchantPostalCode, + merchantState, + networkIdentifiers, + pendingTransactionId, + presentmentAmount, + presentmentCurrency, + purchaseDetails, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -48560,7 +49513,7 @@ private constructor( return true } - return /* spotless:off */ other is Actioner && value == other.value /* spotless:on */ + return other is Actioner && value == other.value } override fun hashCode() = value.hashCode() @@ -49321,12 +50274,15 @@ private constructor( return true } - return /* spotless:off */ other is Clinic && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Clinic && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -49538,12 +50494,15 @@ private constructor( return true } - return /* spotless:off */ other is Dental && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Dental && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -49755,12 +50714,15 @@ private constructor( return true } - return /* spotless:off */ other is Prescription && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Prescription && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -49972,12 +50934,15 @@ private constructor( return true } - return /* spotless:off */ other is Surcharge && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Surcharge && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -50193,12 +51158,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalCumulative && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalCumulative && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -50412,12 +51380,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalHealthcare && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalHealthcare && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -50629,12 +51600,15 @@ private constructor( return true } - return /* spotless:off */ other is Transit && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Transit && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -50846,12 +51820,15 @@ private constructor( return true } - return /* spotless:off */ other is Unknown && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Unknown && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -51063,12 +52040,15 @@ private constructor( return true } - return /* spotless:off */ other is Vision && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Vision && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -51081,13 +52061,34 @@ private constructor( return true } - return /* spotless:off */ other is AdditionalAmounts && clinic == other.clinic && dental == other.dental && prescription == other.prescription && surcharge == other.surcharge && totalCumulative == other.totalCumulative && totalHealthcare == other.totalHealthcare && transit == other.transit && unknown == other.unknown && vision == other.vision && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AdditionalAmounts && + clinic == other.clinic && + dental == other.dental && + prescription == other.prescription && + surcharge == other.surcharge && + totalCumulative == other.totalCumulative && + totalHealthcare == other.totalHealthcare && + transit == other.transit && + unknown == other.unknown && + vision == other.vision && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + clinic, + dental, + prescription, + surcharge, + totalCumulative, + totalHealthcare, + transit, + unknown, + vision, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(clinic, dental, prescription, surcharge, totalCumulative, totalHealthcare, transit, unknown, vision, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -51263,7 +52264,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -51588,7 +52589,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -52224,7 +53225,7 @@ private constructor( return true } - return /* spotless:off */ other is ElectronicCommerceIndicator && value == other.value /* spotless:on */ + return other is ElectronicCommerceIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -52460,7 +53461,7 @@ private constructor( return true } - return /* spotless:off */ other is PointOfServiceEntryMode && value == other.value /* spotless:on */ + return other is PointOfServiceEntryMode && value == other.value } override fun hashCode() = value.hashCode() @@ -52714,7 +53715,7 @@ private constructor( return true } - return /* spotless:off */ other is StandInProcessingReason && value == other.value /* spotless:on */ + return other is StandInProcessingReason && value == other.value } override fun hashCode() = value.hashCode() @@ -52727,12 +53728,21 @@ private constructor( return true } - return /* spotless:off */ other is Visa && electronicCommerceIndicator == other.electronicCommerceIndicator && pointOfServiceEntryMode == other.pointOfServiceEntryMode && standInProcessingReason == other.standInProcessingReason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Visa && + electronicCommerceIndicator == other.electronicCommerceIndicator && + pointOfServiceEntryMode == other.pointOfServiceEntryMode && + standInProcessingReason == other.standInProcessingReason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(electronicCommerceIndicator, pointOfServiceEntryMode, standInProcessingReason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + electronicCommerceIndicator, + pointOfServiceEntryMode, + standInProcessingReason, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -52745,12 +53755,15 @@ private constructor( return true } - return /* spotless:off */ other is NetworkDetails && category == other.category && visa == other.visa && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkDetails && + category == other.category && + visa == other.visa && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, visa, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, visa, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -53040,12 +54053,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && retrievalReferenceNumber == other.retrievalReferenceNumber && traceNumber == other.traceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + retrievalReferenceNumber == other.retrievalReferenceNumber && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(retrievalReferenceNumber, traceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + retrievalReferenceNumber, + traceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -53173,7 +54195,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -53698,7 +54720,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -53711,12 +54733,12 @@ private constructor( return true } - return /* spotless:off */ other is CardVerificationCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardVerificationCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(result, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -54284,7 +55306,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -54297,12 +55319,25 @@ private constructor( return true } - return /* spotless:off */ other is CardholderAddress && actualLine1 == other.actualLine1 && actualPostalCode == other.actualPostalCode && providedLine1 == other.providedLine1 && providedPostalCode == other.providedPostalCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardholderAddress && + actualLine1 == other.actualLine1 && + actualPostalCode == other.actualPostalCode && + providedLine1 == other.providedLine1 && + providedPostalCode == other.providedPostalCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(actualLine1, actualPostalCode, providedLine1, providedPostalCode, result, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + actualLine1, + actualPostalCode, + providedLine1, + providedPostalCode, + result, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -54315,12 +55350,15 @@ private constructor( return true } - return /* spotless:off */ other is Verification && cardVerificationCode == other.cardVerificationCode && cardholderAddress == other.cardholderAddress && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Verification && + cardVerificationCode == other.cardVerificationCode && + cardholderAddress == other.cardholderAddress && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -54333,12 +55371,57 @@ private constructor( return true } - return /* spotless:off */ other is CardValidation && id == other.id && actioner == other.actioner && additionalAmounts == other.additionalAmounts && cardPaymentId == other.cardPaymentId && currency == other.currency && digitalWalletTokenId == other.digitalWalletTokenId && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantDescriptor == other.merchantDescriptor && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkDetails == other.networkDetails && networkIdentifiers == other.networkIdentifiers && networkRiskScore == other.networkRiskScore && physicalCardId == other.physicalCardId && realTimeDecisionId == other.realTimeDecisionId && terminalId == other.terminalId && type == other.type && verification == other.verification && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardValidation && + id == other.id && + actioner == other.actioner && + additionalAmounts == other.additionalAmounts && + cardPaymentId == other.cardPaymentId && + currency == other.currency && + digitalWalletTokenId == other.digitalWalletTokenId && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantDescriptor == other.merchantDescriptor && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkDetails == other.networkDetails && + networkIdentifiers == other.networkIdentifiers && + networkRiskScore == other.networkRiskScore && + physicalCardId == other.physicalCardId && + realTimeDecisionId == other.realTimeDecisionId && + terminalId == other.terminalId && + type == other.type && + verification == other.verification && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, actioner, additionalAmounts, cardPaymentId, currency, digitalWalletTokenId, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantDescriptor, merchantPostalCode, merchantState, networkDetails, networkIdentifiers, networkRiskScore, physicalCardId, realTimeDecisionId, terminalId, type, verification, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + actioner, + additionalAmounts, + cardPaymentId, + currency, + digitalWalletTokenId, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantDescriptor, + merchantPostalCode, + merchantState, + networkDetails, + networkIdentifiers, + networkRiskScore, + physicalCardId, + realTimeDecisionId, + terminalId, + type, + verification, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -54577,7 +55660,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -54590,12 +55673,41 @@ private constructor( return true } - return /* spotless:off */ other is Element && cardAuthentication == other.cardAuthentication && cardAuthorization == other.cardAuthorization && cardAuthorizationExpiration == other.cardAuthorizationExpiration && cardDecline == other.cardDecline && cardFuelConfirmation == other.cardFuelConfirmation && cardIncrement == other.cardIncrement && cardRefund == other.cardRefund && cardReversal == other.cardReversal && cardSettlement == other.cardSettlement && cardValidation == other.cardValidation && category == other.category && createdAt == other.createdAt && this.other == other.other && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Element && + cardAuthentication == other.cardAuthentication && + cardAuthorization == other.cardAuthorization && + cardAuthorizationExpiration == other.cardAuthorizationExpiration && + cardDecline == other.cardDecline && + cardFuelConfirmation == other.cardFuelConfirmation && + cardIncrement == other.cardIncrement && + cardRefund == other.cardRefund && + cardReversal == other.cardReversal && + cardSettlement == other.cardSettlement && + cardValidation == other.cardValidation && + category == other.category && + createdAt == other.createdAt && + this.other == other.other && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardAuthentication, cardAuthorization, cardAuthorizationExpiration, cardDecline, cardFuelConfirmation, cardIncrement, cardRefund, cardReversal, cardSettlement, cardValidation, category, createdAt, other, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + cardAuthentication, + cardAuthorization, + cardAuthorizationExpiration, + cardDecline, + cardFuelConfirmation, + cardIncrement, + cardRefund, + cardReversal, + cardSettlement, + cardValidation, + category, + createdAt, + other, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -54960,12 +56072,25 @@ private constructor( return true } - return /* spotless:off */ other is State && authorizedAmount == other.authorizedAmount && fuelConfirmedAmount == other.fuelConfirmedAmount && incrementedAmount == other.incrementedAmount && reversedAmount == other.reversedAmount && settledAmount == other.settledAmount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is State && + authorizedAmount == other.authorizedAmount && + fuelConfirmedAmount == other.fuelConfirmedAmount && + incrementedAmount == other.incrementedAmount && + reversedAmount == other.reversedAmount && + settledAmount == other.settledAmount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(authorizedAmount, fuelConfirmedAmount, incrementedAmount, reversedAmount, settledAmount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + authorizedAmount, + fuelConfirmedAmount, + incrementedAmount, + reversedAmount, + settledAmount, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -55090,7 +56215,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -55103,12 +56228,33 @@ private constructor( return true } - return /* spotless:off */ other is CardPayment && id == other.id && accountId == other.accountId && cardId == other.cardId && createdAt == other.createdAt && digitalWalletTokenId == other.digitalWalletTokenId && elements == other.elements && physicalCardId == other.physicalCardId && state == other.state && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardPayment && + id == other.id && + accountId == other.accountId && + cardId == other.cardId && + createdAt == other.createdAt && + digitalWalletTokenId == other.digitalWalletTokenId && + elements == other.elements && + physicalCardId == other.physicalCardId && + state == other.state && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, cardId, createdAt, digitalWalletTokenId, elements, physicalCardId, state, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + cardId, + createdAt, + digitalWalletTokenId, + elements, + physicalCardId, + state, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPage.kt index 7de45ec14..ea3282ec6 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is CardPaymentListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is CardPaymentListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "CardPaymentListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageAsync.kt index 3c0e26f40..3660c86a5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is CardPaymentListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is CardPaymentListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "CardPaymentListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageResponse.kt index 95f43f9c2..b3a0f9cec 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is CardPaymentListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardPaymentListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListParams.kt index 6b6af8af8..5e0edf632 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListParams.kt @@ -426,12 +426,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -444,10 +449,26 @@ private constructor( return true } - return /* spotless:off */ other is CardPaymentListParams && accountId == other.accountId && cardId == other.cardId && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardPaymentListParams && + accountId == other.accountId && + cardId == other.cardId && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, cardId, createdAt, cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + cardId, + createdAt, + cursor, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "CardPaymentListParams{accountId=$accountId, cardId=$cardId, createdAt=$createdAt, cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentRetrieveParams.kt index 42fdf3138..a833f05c6 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentRetrieveParams.kt @@ -185,10 +185,14 @@ private constructor( return true } - return /* spotless:off */ other is CardPaymentRetrieveParams && cardPaymentId == other.cardPaymentId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardPaymentRetrieveParams && + cardPaymentId == other.cardPaymentId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardPaymentId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cardPaymentId, additionalHeaders, additionalQueryParams) override fun toString() = "CardPaymentRetrieveParams{cardPaymentId=$cardPaymentId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplement.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplement.kt index 08d2494cb..4dbc8a260 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplement.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplement.kt @@ -1504,7 +1504,7 @@ private constructor( return true } - return /* spotless:off */ other is DiscountTreatmentCode && value == other.value /* spotless:on */ + return other is DiscountTreatmentCode && value == other.value } override fun hashCode() = value.hashCode() @@ -1669,7 +1669,7 @@ private constructor( return true } - return /* spotless:off */ other is TaxTreatments && value == other.value /* spotless:on */ + return other is TaxTreatments && value == other.value } override fun hashCode() = value.hashCode() @@ -1682,12 +1682,47 @@ private constructor( return true } - return /* spotless:off */ other is Invoice && discountAmount == other.discountAmount && discountCurrency == other.discountCurrency && discountTreatmentCode == other.discountTreatmentCode && dutyTaxAmount == other.dutyTaxAmount && dutyTaxCurrency == other.dutyTaxCurrency && orderDate == other.orderDate && shippingAmount == other.shippingAmount && shippingCurrency == other.shippingCurrency && shippingDestinationCountryCode == other.shippingDestinationCountryCode && shippingDestinationPostalCode == other.shippingDestinationPostalCode && shippingSourcePostalCode == other.shippingSourcePostalCode && shippingTaxAmount == other.shippingTaxAmount && shippingTaxCurrency == other.shippingTaxCurrency && shippingTaxRate == other.shippingTaxRate && taxTreatments == other.taxTreatments && uniqueValueAddedTaxInvoiceReference == other.uniqueValueAddedTaxInvoiceReference && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Invoice && + discountAmount == other.discountAmount && + discountCurrency == other.discountCurrency && + discountTreatmentCode == other.discountTreatmentCode && + dutyTaxAmount == other.dutyTaxAmount && + dutyTaxCurrency == other.dutyTaxCurrency && + orderDate == other.orderDate && + shippingAmount == other.shippingAmount && + shippingCurrency == other.shippingCurrency && + shippingDestinationCountryCode == other.shippingDestinationCountryCode && + shippingDestinationPostalCode == other.shippingDestinationPostalCode && + shippingSourcePostalCode == other.shippingSourcePostalCode && + shippingTaxAmount == other.shippingTaxAmount && + shippingTaxCurrency == other.shippingTaxCurrency && + shippingTaxRate == other.shippingTaxRate && + taxTreatments == other.taxTreatments && + uniqueValueAddedTaxInvoiceReference == other.uniqueValueAddedTaxInvoiceReference && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(discountAmount, discountCurrency, discountTreatmentCode, dutyTaxAmount, dutyTaxCurrency, orderDate, shippingAmount, shippingCurrency, shippingDestinationCountryCode, shippingDestinationPostalCode, shippingSourcePostalCode, shippingTaxAmount, shippingTaxCurrency, shippingTaxRate, taxTreatments, uniqueValueAddedTaxInvoiceReference, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + discountAmount, + discountCurrency, + discountTreatmentCode, + dutyTaxAmount, + dutyTaxCurrency, + orderDate, + shippingAmount, + shippingCurrency, + shippingDestinationCountryCode, + shippingDestinationPostalCode, + shippingSourcePostalCode, + shippingTaxAmount, + shippingTaxCurrency, + shippingTaxRate, + taxTreatments, + uniqueValueAddedTaxInvoiceReference, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2797,7 +2832,7 @@ private constructor( return true } - return /* spotless:off */ other is DetailIndicator && value == other.value /* spotless:on */ + return other is DetailIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -2960,7 +2995,7 @@ private constructor( return true } - return /* spotless:off */ other is DiscountTreatmentCode && value == other.value /* spotless:on */ + return other is DiscountTreatmentCode && value == other.value } override fun hashCode() = value.hashCode() @@ -2973,12 +3008,49 @@ private constructor( return true } - return /* spotless:off */ other is LineItem && id == other.id && detailIndicator == other.detailIndicator && discountAmount == other.discountAmount && discountCurrency == other.discountCurrency && discountTreatmentCode == other.discountTreatmentCode && itemCommodityCode == other.itemCommodityCode && itemDescriptor == other.itemDescriptor && itemQuantity == other.itemQuantity && productCode == other.productCode && salesTaxAmount == other.salesTaxAmount && salesTaxCurrency == other.salesTaxCurrency && salesTaxRate == other.salesTaxRate && totalAmount == other.totalAmount && totalAmountCurrency == other.totalAmountCurrency && unitCost == other.unitCost && unitCostCurrency == other.unitCostCurrency && unitOfMeasureCode == other.unitOfMeasureCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is LineItem && + id == other.id && + detailIndicator == other.detailIndicator && + discountAmount == other.discountAmount && + discountCurrency == other.discountCurrency && + discountTreatmentCode == other.discountTreatmentCode && + itemCommodityCode == other.itemCommodityCode && + itemDescriptor == other.itemDescriptor && + itemQuantity == other.itemQuantity && + productCode == other.productCode && + salesTaxAmount == other.salesTaxAmount && + salesTaxCurrency == other.salesTaxCurrency && + salesTaxRate == other.salesTaxRate && + totalAmount == other.totalAmount && + totalAmountCurrency == other.totalAmountCurrency && + unitCost == other.unitCost && + unitCostCurrency == other.unitCostCurrency && + unitOfMeasureCode == other.unitOfMeasureCode && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, detailIndicator, discountAmount, discountCurrency, discountTreatmentCode, itemCommodityCode, itemDescriptor, itemQuantity, productCode, salesTaxAmount, salesTaxCurrency, salesTaxRate, totalAmount, totalAmountCurrency, unitCost, unitCostCurrency, unitOfMeasureCode, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + detailIndicator, + discountAmount, + discountCurrency, + discountTreatmentCode, + itemCommodityCode, + itemDescriptor, + itemQuantity, + productCode, + salesTaxAmount, + salesTaxCurrency, + salesTaxRate, + totalAmount, + totalAmountCurrency, + unitCost, + unitCostCurrency, + unitOfMeasureCode, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -3103,7 +3175,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -3116,12 +3188,27 @@ private constructor( return true } - return /* spotless:off */ other is CardPurchaseSupplement && id == other.id && cardPaymentId == other.cardPaymentId && invoice == other.invoice && lineItems == other.lineItems && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardPurchaseSupplement && + id == other.id && + cardPaymentId == other.cardPaymentId && + invoice == other.invoice && + lineItems == other.lineItems && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, cardPaymentId, invoice, lineItems, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + cardPaymentId, + invoice, + lineItems, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPage.kt index 16e71d2a1..9e36ee9ed 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPage.kt @@ -123,10 +123,13 @@ private constructor( return true } - return /* spotless:off */ other is CardPurchaseSupplementListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is CardPurchaseSupplementListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "CardPurchaseSupplementListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageAsync.kt index 8c98a9e24..14c46682e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageAsync.kt @@ -139,10 +139,14 @@ private constructor( return true } - return /* spotless:off */ other is CardPurchaseSupplementListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is CardPurchaseSupplementListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "CardPurchaseSupplementListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageResponse.kt index ba5584db6..8b53f0993 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageResponse.kt @@ -229,12 +229,13 @@ private constructor( return true } - return /* spotless:off */ other is CardPurchaseSupplementListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardPurchaseSupplementListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListParams.kt index 08494cdd2..e74063937 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListParams.kt @@ -418,12 +418,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -436,10 +441,24 @@ private constructor( return true } - return /* spotless:off */ other is CardPurchaseSupplementListParams && cardPaymentId == other.cardPaymentId && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardPurchaseSupplementListParams && + cardPaymentId == other.cardPaymentId && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardPaymentId, createdAt, cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + cardPaymentId, + createdAt, + cursor, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "CardPurchaseSupplementListParams{cardPaymentId=$cardPaymentId, createdAt=$createdAt, cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementRetrieveParams.kt index 63666fd01..fba6da8df 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementRetrieveParams.kt @@ -194,10 +194,14 @@ private constructor( return true } - return /* spotless:off */ other is CardPurchaseSupplementRetrieveParams && cardPurchaseSupplementId == other.cardPurchaseSupplementId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardPurchaseSupplementRetrieveParams && + cardPurchaseSupplementId == other.cardPurchaseSupplementId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardPurchaseSupplementId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cardPurchaseSupplementId, additionalHeaders, additionalQueryParams) override fun toString() = "CardPurchaseSupplementRetrieveParams{cardPurchaseSupplementId=$cardPurchaseSupplementId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/Card.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/Card.kt index 9b00304be..9c4c67ad6 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/Card.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/Card.kt @@ -987,12 +987,18 @@ private constructor( return true } - return /* spotless:off */ other is BillingAddress && city == other.city && line1 == other.line1 && line2 == other.line2 && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BillingAddress && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, postalCode, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, postalCode, state, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1256,12 +1262,16 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWallet && digitalCardProfileId == other.digitalCardProfileId && email == other.email && phone == other.phone && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWallet && + digitalCardProfileId == other.digitalCardProfileId && + email == other.email && + phone == other.phone && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(digitalCardProfileId, email, phone, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(digitalCardProfileId, email, phone, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1404,7 +1414,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1526,7 +1536,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1539,12 +1549,41 @@ private constructor( return true } - return /* spotless:off */ other is Card && id == other.id && accountId == other.accountId && billingAddress == other.billingAddress && createdAt == other.createdAt && description == other.description && digitalWallet == other.digitalWallet && entityId == other.entityId && expirationMonth == other.expirationMonth && expirationYear == other.expirationYear && idempotencyKey == other.idempotencyKey && last4 == other.last4 && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Card && + id == other.id && + accountId == other.accountId && + billingAddress == other.billingAddress && + createdAt == other.createdAt && + description == other.description && + digitalWallet == other.digitalWallet && + entityId == other.entityId && + expirationMonth == other.expirationMonth && + expirationYear == other.expirationYear && + idempotencyKey == other.idempotencyKey && + last4 == other.last4 && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, billingAddress, createdAt, description, digitalWallet, entityId, expirationMonth, expirationYear, idempotencyKey, last4, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + billingAddress, + createdAt, + description, + digitalWallet, + entityId, + expirationMonth, + expirationYear, + idempotencyKey, + last4, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardCreateParams.kt index 64ff4a377..da7671190 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardCreateParams.kt @@ -695,12 +695,25 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && billingAddress == other.billingAddress && description == other.description && digitalWallet == other.digitalWallet && entityId == other.entityId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + billingAddress == other.billingAddress && + description == other.description && + digitalWallet == other.digitalWallet && + entityId == other.entityId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, billingAddress, description, digitalWallet, entityId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountId, + billingAddress, + description, + digitalWallet, + entityId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1002,12 +1015,18 @@ private constructor( return true } - return /* spotless:off */ other is BillingAddress && city == other.city && line1 == other.line1 && postalCode == other.postalCode && state == other.state && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BillingAddress && + city == other.city && + line1 == other.line1 && + postalCode == other.postalCode && + state == other.state && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, postalCode, state, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, postalCode, state, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1239,12 +1258,16 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWallet && digitalCardProfileId == other.digitalCardProfileId && email == other.email && phone == other.phone && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWallet && + digitalCardProfileId == other.digitalCardProfileId && + email == other.email && + phone == other.phone && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(digitalCardProfileId, email, phone, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(digitalCardProfileId, email, phone, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1257,10 +1280,13 @@ private constructor( return true } - return /* spotless:off */ other is CardCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CardCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardDetails.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardDetails.kt index eea7b68c4..11d4a5b23 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardDetails.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardDetails.kt @@ -534,7 +534,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -547,12 +547,29 @@ private constructor( return true } - return /* spotless:off */ other is CardDetails && cardId == other.cardId && expirationMonth == other.expirationMonth && expirationYear == other.expirationYear && pin == other.pin && primaryAccountNumber == other.primaryAccountNumber && type == other.type && verificationCode == other.verificationCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardDetails && + cardId == other.cardId && + expirationMonth == other.expirationMonth && + expirationYear == other.expirationYear && + pin == other.pin && + primaryAccountNumber == other.primaryAccountNumber && + type == other.type && + verificationCode == other.verificationCode && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardId, expirationMonth, expirationYear, pin, primaryAccountNumber, type, verificationCode, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + cardId, + expirationMonth, + expirationYear, + pin, + primaryAccountNumber, + type, + verificationCode, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardDetailsParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardDetailsParams.kt index 32913b65f..ae066aaef 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardDetailsParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardDetailsParams.kt @@ -178,10 +178,13 @@ private constructor( return true } - return /* spotless:off */ other is CardDetailsParams && cardId == other.cardId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardDetailsParams && + cardId == other.cardId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(cardId, additionalHeaders, additionalQueryParams) override fun toString() = "CardDetailsParams{cardId=$cardId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPage.kt index b9e1618d8..e9f8b8978 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is CardListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is CardListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "CardListPage{service=$service, params=$params, response=$response}" } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageAsync.kt index 46d5aae9f..4b8f0975b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageAsync.kt @@ -131,10 +131,14 @@ private constructor( return true } - return /* spotless:off */ other is CardListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is CardListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "CardListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageResponse.kt index e08bf278b..b433c7053 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageResponse.kt @@ -220,12 +220,13 @@ private constructor( return true } - return /* spotless:off */ other is CardListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListParams.kt index e43d7dff6..12efbd40a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListParams.kt @@ -460,12 +460,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -714,7 +719,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -727,12 +732,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -744,10 +749,28 @@ private constructor( return true } - return /* spotless:off */ other is CardListParams && accountId == other.accountId && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardListParams && + accountId == other.accountId && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, createdAt, cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + createdAt, + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "CardListParams{accountId=$accountId, createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardRetrieveParams.kt index 526476fb6..f9014bd78 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardRetrieveParams.kt @@ -178,10 +178,13 @@ private constructor( return true } - return /* spotless:off */ other is CardRetrieveParams && cardId == other.cardId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardRetrieveParams && + cardId == other.cardId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(cardId, additionalHeaders, additionalQueryParams) override fun toString() = "CardRetrieveParams{cardId=$cardId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardUpdateParams.kt index 9ce8c59c4..9d5ca7299 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardUpdateParams.kt @@ -681,12 +681,25 @@ private constructor( return true } - return /* spotless:off */ other is Body && billingAddress == other.billingAddress && description == other.description && digitalWallet == other.digitalWallet && entityId == other.entityId && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + billingAddress == other.billingAddress && + description == other.description && + digitalWallet == other.digitalWallet && + entityId == other.entityId && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(billingAddress, description, digitalWallet, entityId, status, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + billingAddress, + description, + digitalWallet, + entityId, + status, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -988,12 +1001,18 @@ private constructor( return true } - return /* spotless:off */ other is BillingAddress && city == other.city && line1 == other.line1 && postalCode == other.postalCode && state == other.state && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BillingAddress && + city == other.city && + line1 == other.line1 && + postalCode == other.postalCode && + state == other.state && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, postalCode, state, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, postalCode, state, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1222,12 +1241,16 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWallet && digitalCardProfileId == other.digitalCardProfileId && email == other.email && phone == other.phone && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWallet && + digitalCardProfileId == other.digitalCardProfileId && + email == other.email && + phone == other.phone && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(digitalCardProfileId, email, phone, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(digitalCardProfileId, email, phone, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1370,7 +1393,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1383,10 +1406,15 @@ private constructor( return true } - return /* spotless:off */ other is CardUpdateParams && cardId == other.cardId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardUpdateParams && + cardId == other.cardId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cardId, body, additionalHeaders, additionalQueryParams) override fun toString() = "CardUpdateParams{cardId=$cardId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDeposit.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDeposit.kt index 860e3e67c..9a56ca39f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDeposit.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDeposit.kt @@ -1558,7 +1558,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -1571,12 +1571,29 @@ private constructor( return true } - return /* spotless:off */ other is DepositAcceptance && accountNumber == other.accountNumber && amount == other.amount && auxiliaryOnUs == other.auxiliaryOnUs && checkDepositId == other.checkDepositId && currency == other.currency && routingNumber == other.routingNumber && serialNumber == other.serialNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DepositAcceptance && + accountNumber == other.accountNumber && + amount == other.amount && + auxiliaryOnUs == other.auxiliaryOnUs && + checkDepositId == other.checkDepositId && + currency == other.currency && + routingNumber == other.routingNumber && + serialNumber == other.serialNumber && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumber, amount, auxiliaryOnUs, checkDepositId, currency, routingNumber, serialNumber, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountNumber, + amount, + auxiliaryOnUs, + checkDepositId, + currency, + routingNumber, + serialNumber, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2117,7 +2134,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -2335,7 +2352,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -2348,12 +2365,27 @@ private constructor( return true } - return /* spotless:off */ other is DepositRejection && amount == other.amount && checkDepositId == other.checkDepositId && currency == other.currency && declinedTransactionId == other.declinedTransactionId && reason == other.reason && rejectedAt == other.rejectedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DepositRejection && + amount == other.amount && + checkDepositId == other.checkDepositId && + currency == other.currency && + declinedTransactionId == other.declinedTransactionId && + reason == other.reason && + rejectedAt == other.rejectedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, checkDepositId, currency, declinedTransactionId, reason, rejectedAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + checkDepositId, + currency, + declinedTransactionId, + reason, + rejectedAt, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2901,7 +2933,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -3279,7 +3311,7 @@ private constructor( return true } - return /* spotless:off */ other is ReturnReason && value == other.value /* spotless:on */ + return other is ReturnReason && value == other.value } override fun hashCode() = value.hashCode() @@ -3292,12 +3324,27 @@ private constructor( return true } - return /* spotless:off */ other is DepositReturn && amount == other.amount && checkDepositId == other.checkDepositId && currency == other.currency && returnReason == other.returnReason && returnedAt == other.returnedAt && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DepositReturn && + amount == other.amount && + checkDepositId == other.checkDepositId && + currency == other.currency && + returnReason == other.returnReason && + returnedAt == other.returnedAt && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, checkDepositId, currency, returnReason, returnedAt, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + checkDepositId, + currency, + returnReason, + returnedAt, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -3557,12 +3604,16 @@ private constructor( return true } - return /* spotless:off */ other is DepositSubmission && backFileId == other.backFileId && frontFileId == other.frontFileId && submittedAt == other.submittedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DepositSubmission && + backFileId == other.backFileId && + frontFileId == other.frontFileId && + submittedAt == other.submittedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(backFileId, frontFileId, submittedAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(backFileId, frontFileId, submittedAt, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4295,7 +4346,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -4431,7 +4482,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -4556,7 +4607,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -4569,12 +4620,35 @@ private constructor( return true } - return /* spotless:off */ other is InboundFundsHold && id == other.id && amount == other.amount && automaticallyReleasesAt == other.automaticallyReleasesAt && createdAt == other.createdAt && currency == other.currency && heldTransactionId == other.heldTransactionId && pendingTransactionId == other.pendingTransactionId && releasedAt == other.releasedAt && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundFundsHold && + id == other.id && + amount == other.amount && + automaticallyReleasesAt == other.automaticallyReleasesAt && + createdAt == other.createdAt && + currency == other.currency && + heldTransactionId == other.heldTransactionId && + pendingTransactionId == other.pendingTransactionId && + releasedAt == other.releasedAt && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, automaticallyReleasesAt, createdAt, currency, heldTransactionId, pendingTransactionId, releasedAt, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + automaticallyReleasesAt, + createdAt, + currency, + heldTransactionId, + pendingTransactionId, + releasedAt, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -4726,7 +4800,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -4851,7 +4925,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -4864,12 +4938,51 @@ private constructor( return true } - return /* spotless:off */ other is CheckDeposit && id == other.id && accountId == other.accountId && amount == other.amount && backImageFileId == other.backImageFileId && createdAt == other.createdAt && depositAcceptance == other.depositAcceptance && depositRejection == other.depositRejection && depositReturn == other.depositReturn && depositSubmission == other.depositSubmission && description == other.description && frontImageFileId == other.frontImageFileId && idempotencyKey == other.idempotencyKey && inboundFundsHold == other.inboundFundsHold && inboundMailItemId == other.inboundMailItemId && lockboxId == other.lockboxId && status == other.status && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckDeposit && + id == other.id && + accountId == other.accountId && + amount == other.amount && + backImageFileId == other.backImageFileId && + createdAt == other.createdAt && + depositAcceptance == other.depositAcceptance && + depositRejection == other.depositRejection && + depositReturn == other.depositReturn && + depositSubmission == other.depositSubmission && + description == other.description && + frontImageFileId == other.frontImageFileId && + idempotencyKey == other.idempotencyKey && + inboundFundsHold == other.inboundFundsHold && + inboundMailItemId == other.inboundMailItemId && + lockboxId == other.lockboxId && + status == other.status && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, amount, backImageFileId, createdAt, depositAcceptance, depositRejection, depositReturn, depositSubmission, description, frontImageFileId, idempotencyKey, inboundFundsHold, inboundMailItemId, lockboxId, status, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + amount, + backImageFileId, + createdAt, + depositAcceptance, + depositRejection, + depositReturn, + depositSubmission, + description, + frontImageFileId, + idempotencyKey, + inboundFundsHold, + inboundMailItemId, + lockboxId, + status, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositCreateParams.kt index 49eea7da6..ca7439381 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositCreateParams.kt @@ -683,13 +683,26 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && amount == other.amount && backImageFileId == other.backImageFileId && frontImageFileId == other.frontImageFileId && description == other.description && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + amount == other.amount && + backImageFileId == other.backImageFileId && + frontImageFileId == other.frontImageFileId && + description == other.description && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + accountId, + amount, + backImageFileId, + frontImageFileId, + description, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, amount, backImageFileId, frontImageFileId, description, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -701,10 +714,13 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CheckDepositCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CheckDepositCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPage.kt index 7af1d1883..a148ee5bb 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is CheckDepositListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "CheckDepositListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageAsync.kt index c9be1b75c..c383eda8f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is CheckDepositListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "CheckDepositListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageResponse.kt index 9acdbc70b..a7f04d2be 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageResponse.kt @@ -223,12 +223,13 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckDepositListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListParams.kt index 3b622e4ce..5550ae64a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListParams.kt @@ -436,12 +436,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -454,10 +459,26 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositListParams && accountId == other.accountId && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CheckDepositListParams && + accountId == other.accountId && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, createdAt, cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + createdAt, + cursor, + idempotencyKey, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "CheckDepositListParams{accountId=$accountId, createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositRetrieveParams.kt index ec779496c..fc6b6b074 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositRetrieveParams.kt @@ -185,10 +185,14 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositRetrieveParams && checkDepositId == other.checkDepositId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CheckDepositRetrieveParams && + checkDepositId == other.checkDepositId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(checkDepositId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(checkDepositId, additionalHeaders, additionalQueryParams) override fun toString() = "CheckDepositRetrieveParams{checkDepositId=$checkDepositId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransfer.kt index 2710c3a27..b3bf90cc7 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransfer.kt @@ -1379,12 +1379,15 @@ private constructor( return true } - return /* spotless:off */ other is Approval && approvedAt == other.approvedAt && approvedBy == other.approvedBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Approval && + approvedAt == other.approvedAt && + approvedBy == other.approvedBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(approvedAt, approvedBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(approvedAt, approvedBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1599,12 +1602,15 @@ private constructor( return true } - return /* spotless:off */ other is Cancellation && canceledAt == other.canceledAt && canceledBy == other.canceledBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cancellation && + canceledAt == other.canceledAt && + canceledBy == other.canceledBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(canceledAt, canceledBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(canceledAt, canceledBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2048,12 +2054,12 @@ private constructor( return true } - return /* spotless:off */ other is ApiKey && description == other.description && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ApiKey && + description == other.description && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(description, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2208,7 +2214,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -2366,12 +2372,12 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplication && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthApplication && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2526,12 +2532,12 @@ private constructor( return true } - return /* spotless:off */ other is User && email == other.email && additionalProperties == other.additionalProperties /* spotless:on */ + return other is User && + email == other.email && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(email, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2544,12 +2550,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedBy && apiKey == other.apiKey && category == other.category && oauthApplication == other.oauthApplication && user == other.user && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedBy && + apiKey == other.apiKey && + category == other.category && + oauthApplication == other.oauthApplication && + user == other.user && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2719,7 +2730,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -2866,7 +2877,7 @@ private constructor( return true } - return /* spotless:off */ other is FulfillmentMethod && value == other.value /* spotless:on */ + return other is FulfillmentMethod && value == other.value } override fun hashCode() = value.hashCode() @@ -3120,12 +3131,16 @@ private constructor( return true } - return /* spotless:off */ other is Mailing && imageId == other.imageId && mailedAt == other.mailedAt && trackingNumber == other.trackingNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Mailing && + imageId == other.imageId && + mailedAt == other.mailedAt && + trackingNumber == other.trackingNumber && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(imageId, mailedAt, trackingNumber, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(imageId, mailedAt, trackingNumber, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4087,12 +4102,19 @@ private constructor( return true } - return /* spotless:off */ other is MailingAddress && city == other.city && line1 == other.line1 && line2 == other.line2 && name == other.name && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is MailingAddress && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + name == other.name && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, name, postalCode, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, name, postalCode, state, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4250,12 +4272,12 @@ private constructor( return true } - return /* spotless:off */ other is Payer && contents == other.contents && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Payer && + contents == other.contents && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(contents, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -4619,12 +4641,19 @@ private constructor( return true } - return /* spotless:off */ other is ReturnAddress && city == other.city && line1 == other.line1 && line2 == other.line2 && name == other.name && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ReturnAddress && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + name == other.name && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, name, postalCode, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, name, postalCode, state, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4763,7 +4792,7 @@ private constructor( return true } - return /* spotless:off */ other is ShippingMethod && value == other.value /* spotless:on */ + return other is ShippingMethod && value == other.value } override fun hashCode() = value.hashCode() @@ -5162,7 +5191,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -5175,12 +5204,16 @@ private constructor( return true } - return /* spotless:off */ other is TrackingUpdate && category == other.category && createdAt == other.createdAt && postalCode == other.postalCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TrackingUpdate && + category == other.category && + createdAt == other.createdAt && + postalCode == other.postalCode && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, createdAt, postalCode, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, createdAt, postalCode, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5193,12 +5226,35 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCheck && attachmentFileId == other.attachmentFileId && mailingAddress == other.mailingAddress && memo == other.memo && note == other.note && payer == other.payer && recipientName == other.recipientName && returnAddress == other.returnAddress && shippingMethod == other.shippingMethod && signatureText == other.signatureText && trackingUpdates == other.trackingUpdates && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PhysicalCheck && + attachmentFileId == other.attachmentFileId && + mailingAddress == other.mailingAddress && + memo == other.memo && + note == other.note && + payer == other.payer && + recipientName == other.recipientName && + returnAddress == other.returnAddress && + shippingMethod == other.shippingMethod && + signatureText == other.signatureText && + trackingUpdates == other.trackingUpdates && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(attachmentFileId, mailingAddress, memo, note, payer, recipientName, returnAddress, shippingMethod, signatureText, trackingUpdates, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + attachmentFileId, + mailingAddress, + memo, + note, + payer, + recipientName, + returnAddress, + shippingMethod, + signatureText, + trackingUpdates, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -5404,7 +5460,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -5832,7 +5888,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -5958,7 +6014,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -5971,12 +6027,17 @@ private constructor( return true } - return /* spotless:off */ other is StopPaymentRequest && reason == other.reason && requestedAt == other.requestedAt && transferId == other.transferId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is StopPaymentRequest && + reason == other.reason && + requestedAt == other.requestedAt && + transferId == other.transferId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(reason, requestedAt, transferId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(reason, requestedAt, transferId, type, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6408,7 +6469,7 @@ private constructor( return true } - return /* spotless:off */ other is AddressCorrectionAction && value == other.value /* spotless:on */ + return other is AddressCorrectionAction && value == other.value } override fun hashCode() = value.hashCode() @@ -6765,12 +6826,19 @@ private constructor( return true } - return /* spotless:off */ other is SubmittedAddress && city == other.city && line1 == other.line1 && line2 == other.line2 && recipientName == other.recipientName && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is SubmittedAddress && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + recipientName == other.recipientName && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, recipientName, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, recipientName, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6783,12 +6851,21 @@ private constructor( return true } - return /* spotless:off */ other is Submission && addressCorrectionAction == other.addressCorrectionAction && submittedAddress == other.submittedAddress && submittedAt == other.submittedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Submission && + addressCorrectionAction == other.addressCorrectionAction && + submittedAddress == other.submittedAddress && + submittedAt == other.submittedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(addressCorrectionAction, submittedAddress, submittedAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + addressCorrectionAction, + submittedAddress, + submittedAt, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -6958,12 +7035,12 @@ private constructor( return true } - return /* spotless:off */ other is ThirdParty && recipientName == other.recipientName && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ThirdParty && + recipientName == other.recipientName && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(recipientName, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -7088,7 +7165,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -7101,12 +7178,61 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransfer && id == other.id && accountId == other.accountId && accountNumber == other.accountNumber && amount == other.amount && approval == other.approval && approvedInboundCheckDepositId == other.approvedInboundCheckDepositId && cancellation == other.cancellation && checkNumber == other.checkNumber && createdAt == other.createdAt && createdBy == other.createdBy && currency == other.currency && fulfillmentMethod == other.fulfillmentMethod && idempotencyKey == other.idempotencyKey && mailing == other.mailing && pendingTransactionId == other.pendingTransactionId && physicalCheck == other.physicalCheck && routingNumber == other.routingNumber && sourceAccountNumberId == other.sourceAccountNumberId && status == other.status && stopPaymentRequest == other.stopPaymentRequest && submission == other.submission && thirdParty == other.thirdParty && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckTransfer && + id == other.id && + accountId == other.accountId && + accountNumber == other.accountNumber && + amount == other.amount && + approval == other.approval && + approvedInboundCheckDepositId == other.approvedInboundCheckDepositId && + cancellation == other.cancellation && + checkNumber == other.checkNumber && + createdAt == other.createdAt && + createdBy == other.createdBy && + currency == other.currency && + fulfillmentMethod == other.fulfillmentMethod && + idempotencyKey == other.idempotencyKey && + mailing == other.mailing && + pendingTransactionId == other.pendingTransactionId && + physicalCheck == other.physicalCheck && + routingNumber == other.routingNumber && + sourceAccountNumberId == other.sourceAccountNumberId && + status == other.status && + stopPaymentRequest == other.stopPaymentRequest && + submission == other.submission && + thirdParty == other.thirdParty && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, accountNumber, amount, approval, approvedInboundCheckDepositId, cancellation, checkNumber, createdAt, createdBy, currency, fulfillmentMethod, idempotencyKey, mailing, pendingTransactionId, physicalCheck, routingNumber, sourceAccountNumberId, status, stopPaymentRequest, submission, thirdParty, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + accountNumber, + amount, + approval, + approvedInboundCheckDepositId, + cancellation, + checkNumber, + createdAt, + createdBy, + currency, + fulfillmentMethod, + idempotencyKey, + mailing, + pendingTransactionId, + physicalCheck, + routingNumber, + sourceAccountNumberId, + status, + stopPaymentRequest, + submission, + thirdParty, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferApproveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferApproveParams.kt index 77b2cddaa..ba36d07c9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferApproveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferApproveParams.kt @@ -222,10 +222,20 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferApproveParams && checkTransferId == other.checkTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is CheckTransferApproveParams && + checkTransferId == other.checkTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(checkTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + checkTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "CheckTransferApproveParams{checkTransferId=$checkTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCancelParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCancelParams.kt index a7ccbe7cb..f5c2850a7 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCancelParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCancelParams.kt @@ -222,10 +222,20 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferCancelParams && checkTransferId == other.checkTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is CheckTransferCancelParams && + checkTransferId == other.checkTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(checkTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + checkTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "CheckTransferCancelParams{checkTransferId=$checkTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCreateParams.kt index 3ef081483..765829b12 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferCreateParams.kt @@ -956,12 +956,31 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && amount == other.amount && fulfillmentMethod == other.fulfillmentMethod && sourceAccountNumberId == other.sourceAccountNumberId && checkNumber == other.checkNumber && physicalCheck == other.physicalCheck && requireApproval == other.requireApproval && thirdParty == other.thirdParty && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + amount == other.amount && + fulfillmentMethod == other.fulfillmentMethod && + sourceAccountNumberId == other.sourceAccountNumberId && + checkNumber == other.checkNumber && + physicalCheck == other.physicalCheck && + requireApproval == other.requireApproval && + thirdParty == other.thirdParty && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, amount, fulfillmentMethod, sourceAccountNumberId, checkNumber, physicalCheck, requireApproval, thirdParty, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountId, + amount, + fulfillmentMethod, + sourceAccountNumberId, + checkNumber, + physicalCheck, + requireApproval, + thirdParty, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1108,7 +1127,7 @@ private constructor( return true } - return /* spotless:off */ other is FulfillmentMethod && value == other.value /* spotless:on */ + return other is FulfillmentMethod && value == other.value } override fun hashCode() = value.hashCode() @@ -1940,12 +1959,18 @@ private constructor( return true } - return /* spotless:off */ other is MailingAddress && city == other.city && line1 == other.line1 && postalCode == other.postalCode && state == other.state && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is MailingAddress && + city == other.city && + line1 == other.line1 && + postalCode == other.postalCode && + state == other.state && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, postalCode, state, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, postalCode, state, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2103,12 +2128,12 @@ private constructor( return true } - return /* spotless:off */ other is Payer && contents == other.contents && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Payer && + contents == other.contents && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(contents, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2460,12 +2485,19 @@ private constructor( return true } - return /* spotless:off */ other is ReturnAddress && city == other.city && line1 == other.line1 && name == other.name && postalCode == other.postalCode && state == other.state && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ReturnAddress && + city == other.city && + line1 == other.line1 && + name == other.name && + postalCode == other.postalCode && + state == other.state && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, name, postalCode, state, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, name, postalCode, state, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2607,7 +2639,7 @@ private constructor( return true } - return /* spotless:off */ other is ShippingMethod && value == other.value /* spotless:on */ + return other is ShippingMethod && value == other.value } override fun hashCode() = value.hashCode() @@ -2620,12 +2652,33 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCheck && mailingAddress == other.mailingAddress && memo == other.memo && recipientName == other.recipientName && attachmentFileId == other.attachmentFileId && note == other.note && payer == other.payer && returnAddress == other.returnAddress && shippingMethod == other.shippingMethod && signatureText == other.signatureText && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PhysicalCheck && + mailingAddress == other.mailingAddress && + memo == other.memo && + recipientName == other.recipientName && + attachmentFileId == other.attachmentFileId && + note == other.note && + payer == other.payer && + returnAddress == other.returnAddress && + shippingMethod == other.shippingMethod && + signatureText == other.signatureText && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(mailingAddress, memo, recipientName, attachmentFileId, note, payer, returnAddress, shippingMethod, signatureText, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + mailingAddress, + memo, + recipientName, + attachmentFileId, + note, + payer, + returnAddress, + shippingMethod, + signatureText, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2779,12 +2832,12 @@ private constructor( return true } - return /* spotless:off */ other is ThirdParty && recipientName == other.recipientName && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ThirdParty && + recipientName == other.recipientName && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(recipientName, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2797,10 +2850,13 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CheckTransferCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CheckTransferCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPage.kt index 307aefded..2919fc707 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPage.kt @@ -120,10 +120,13 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is CheckTransferListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "CheckTransferListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageAsync.kt index 5ffe6f7ec..c848e411a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageAsync.kt @@ -134,10 +134,14 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is CheckTransferListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "CheckTransferListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageResponse.kt index a1adc3813..9795c86b8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageResponse.kt @@ -224,12 +224,13 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckTransferListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListParams.kt index a6092318f..0a667588a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListParams.kt @@ -460,12 +460,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -777,7 +782,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -790,12 +795,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -807,10 +812,28 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferListParams && accountId == other.accountId && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CheckTransferListParams && + accountId == other.accountId && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, createdAt, cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + createdAt, + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "CheckTransferListParams{accountId=$accountId, createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferRetrieveParams.kt index cc0aec648..d966dfdd8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferRetrieveParams.kt @@ -187,10 +187,14 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferRetrieveParams && checkTransferId == other.checkTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CheckTransferRetrieveParams && + checkTransferId == other.checkTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(checkTransferId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(checkTransferId, additionalHeaders, additionalQueryParams) override fun toString() = "CheckTransferRetrieveParams{checkTransferId=$checkTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferStopPaymentParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferStopPaymentParams.kt index 062512155..5b4af142d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferStopPaymentParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferStopPaymentParams.kt @@ -383,12 +383,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reason, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -530,7 +530,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -543,10 +543,15 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferStopPaymentParams && checkTransferId == other.checkTransferId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CheckTransferStopPaymentParams && + checkTransferId == other.checkTransferId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(checkTransferId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(checkTransferId, body, additionalHeaders, additionalQueryParams) override fun toString() = "CheckTransferStopPaymentParams{checkTransferId=$checkTransferId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransaction.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransaction.kt index e1c4957c6..33b300c0f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransaction.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransaction.kt @@ -706,7 +706,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -851,7 +851,7 @@ private constructor( return true } - return /* spotless:off */ other is RouteType && value == other.value /* spotless:on */ + return other is RouteType && value == other.value } override fun hashCode() = value.hashCode() @@ -2376,7 +2376,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -2504,7 +2504,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -2517,12 +2517,40 @@ private constructor( return true } - return /* spotless:off */ other is AchDecline && id == other.id && amount == other.amount && inboundAchTransferId == other.inboundAchTransferId && originatorCompanyDescriptiveDate == other.originatorCompanyDescriptiveDate && originatorCompanyDiscretionaryData == other.originatorCompanyDiscretionaryData && originatorCompanyId == other.originatorCompanyId && originatorCompanyName == other.originatorCompanyName && reason == other.reason && receiverIdNumber == other.receiverIdNumber && receiverName == other.receiverName && traceNumber == other.traceNumber && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchDecline && + id == other.id && + amount == other.amount && + inboundAchTransferId == other.inboundAchTransferId && + originatorCompanyDescriptiveDate == other.originatorCompanyDescriptiveDate && + originatorCompanyDiscretionaryData == + other.originatorCompanyDiscretionaryData && + originatorCompanyId == other.originatorCompanyId && + originatorCompanyName == other.originatorCompanyName && + reason == other.reason && + receiverIdNumber == other.receiverIdNumber && + receiverName == other.receiverName && + traceNumber == other.traceNumber && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, inboundAchTransferId, originatorCompanyDescriptiveDate, originatorCompanyDiscretionaryData, originatorCompanyId, originatorCompanyName, reason, receiverIdNumber, receiverName, traceNumber, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + inboundAchTransferId, + originatorCompanyDescriptiveDate, + originatorCompanyDiscretionaryData, + originatorCompanyId, + originatorCompanyName, + reason, + receiverIdNumber, + receiverName, + traceNumber, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -4239,7 +4267,7 @@ private constructor( return true } - return /* spotless:off */ other is Actioner && value == other.value /* spotless:on */ + return other is Actioner && value == other.value } override fun hashCode() = value.hashCode() @@ -5000,12 +5028,15 @@ private constructor( return true } - return /* spotless:off */ other is Clinic && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Clinic && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5217,12 +5248,15 @@ private constructor( return true } - return /* spotless:off */ other is Dental && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Dental && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5434,12 +5468,15 @@ private constructor( return true } - return /* spotless:off */ other is Prescription && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Prescription && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5651,12 +5688,15 @@ private constructor( return true } - return /* spotless:off */ other is Surcharge && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Surcharge && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5872,12 +5912,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalCumulative && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalCumulative && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6091,12 +6134,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalHealthcare && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalHealthcare && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6308,12 +6354,15 @@ private constructor( return true } - return /* spotless:off */ other is Transit && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Transit && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6525,12 +6574,15 @@ private constructor( return true } - return /* spotless:off */ other is Unknown && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Unknown && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6742,12 +6794,15 @@ private constructor( return true } - return /* spotless:off */ other is Vision && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Vision && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6760,13 +6815,34 @@ private constructor( return true } - return /* spotless:off */ other is AdditionalAmounts && clinic == other.clinic && dental == other.dental && prescription == other.prescription && surcharge == other.surcharge && totalCumulative == other.totalCumulative && totalHealthcare == other.totalHealthcare && transit == other.transit && unknown == other.unknown && vision == other.vision && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AdditionalAmounts && + clinic == other.clinic && + dental == other.dental && + prescription == other.prescription && + surcharge == other.surcharge && + totalCumulative == other.totalCumulative && + totalHealthcare == other.totalHealthcare && + transit == other.transit && + unknown == other.unknown && + vision == other.vision && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + clinic, + dental, + prescription, + surcharge, + totalCumulative, + totalHealthcare, + transit, + unknown, + vision, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(clinic, dental, prescription, surcharge, totalCumulative, totalHealthcare, transit, unknown, vision, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -6942,7 +7018,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -7092,7 +7168,7 @@ private constructor( return true } - return /* spotless:off */ other is Direction && value == other.value /* spotless:on */ + return other is Direction && value == other.value } override fun hashCode() = value.hashCode() @@ -7417,7 +7493,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -8053,7 +8129,7 @@ private constructor( return true } - return /* spotless:off */ other is ElectronicCommerceIndicator && value == other.value /* spotless:on */ + return other is ElectronicCommerceIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -8289,7 +8365,7 @@ private constructor( return true } - return /* spotless:off */ other is PointOfServiceEntryMode && value == other.value /* spotless:on */ + return other is PointOfServiceEntryMode && value == other.value } override fun hashCode() = value.hashCode() @@ -8543,7 +8619,7 @@ private constructor( return true } - return /* spotless:off */ other is StandInProcessingReason && value == other.value /* spotless:on */ + return other is StandInProcessingReason && value == other.value } override fun hashCode() = value.hashCode() @@ -8556,12 +8632,21 @@ private constructor( return true } - return /* spotless:off */ other is Visa && electronicCommerceIndicator == other.electronicCommerceIndicator && pointOfServiceEntryMode == other.pointOfServiceEntryMode && standInProcessingReason == other.standInProcessingReason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Visa && + electronicCommerceIndicator == other.electronicCommerceIndicator && + pointOfServiceEntryMode == other.pointOfServiceEntryMode && + standInProcessingReason == other.standInProcessingReason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(electronicCommerceIndicator, pointOfServiceEntryMode, standInProcessingReason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + electronicCommerceIndicator, + pointOfServiceEntryMode, + standInProcessingReason, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -8574,12 +8659,15 @@ private constructor( return true } - return /* spotless:off */ other is NetworkDetails && category == other.category && visa == other.visa && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkDetails && + category == other.category && + visa == other.visa && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, visa, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, visa, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -8869,12 +8957,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && retrievalReferenceNumber == other.retrievalReferenceNumber && traceNumber == other.traceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + retrievalReferenceNumber == other.retrievalReferenceNumber && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(retrievalReferenceNumber, traceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + retrievalReferenceNumber, + traceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -9130,7 +9227,7 @@ private constructor( return true } - return /* spotless:off */ other is ProcessingCategory && value == other.value /* spotless:on */ + return other is ProcessingCategory && value == other.value } override fun hashCode() = value.hashCode() @@ -9364,7 +9461,7 @@ private constructor( return true } - return /* spotless:off */ other is RealTimeDecisionReason && value == other.value /* spotless:on */ + return other is RealTimeDecisionReason && value == other.value } override fun hashCode() = value.hashCode() @@ -9708,7 +9805,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -10233,7 +10330,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -10246,12 +10343,12 @@ private constructor( return true } - return /* spotless:off */ other is CardVerificationCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardVerificationCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(result, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -10819,7 +10916,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -10832,12 +10929,25 @@ private constructor( return true } - return /* spotless:off */ other is CardholderAddress && actualLine1 == other.actualLine1 && actualPostalCode == other.actualPostalCode && providedLine1 == other.providedLine1 && providedPostalCode == other.providedPostalCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardholderAddress && + actualLine1 == other.actualLine1 && + actualPostalCode == other.actualPostalCode && + providedLine1 == other.providedLine1 && + providedPostalCode == other.providedPostalCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(actualLine1, actualPostalCode, providedLine1, providedPostalCode, result, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + actualLine1, + actualPostalCode, + providedLine1, + providedPostalCode, + result, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -10850,12 +10960,15 @@ private constructor( return true } - return /* spotless:off */ other is Verification && cardVerificationCode == other.cardVerificationCode && cardholderAddress == other.cardholderAddress && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Verification && + cardVerificationCode == other.cardVerificationCode && + cardholderAddress == other.cardholderAddress && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -10868,12 +10981,73 @@ private constructor( return true } - return /* spotless:off */ other is CardDecline && id == other.id && actioner == other.actioner && additionalAmounts == other.additionalAmounts && amount == other.amount && cardPaymentId == other.cardPaymentId && currency == other.currency && declinedTransactionId == other.declinedTransactionId && digitalWalletTokenId == other.digitalWalletTokenId && direction == other.direction && incrementedCardAuthorizationId == other.incrementedCardAuthorizationId && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantDescriptor == other.merchantDescriptor && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkDetails == other.networkDetails && networkIdentifiers == other.networkIdentifiers && networkRiskScore == other.networkRiskScore && physicalCardId == other.physicalCardId && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && processingCategory == other.processingCategory && realTimeDecisionId == other.realTimeDecisionId && realTimeDecisionReason == other.realTimeDecisionReason && reason == other.reason && terminalId == other.terminalId && verification == other.verification && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardDecline && + id == other.id && + actioner == other.actioner && + additionalAmounts == other.additionalAmounts && + amount == other.amount && + cardPaymentId == other.cardPaymentId && + currency == other.currency && + declinedTransactionId == other.declinedTransactionId && + digitalWalletTokenId == other.digitalWalletTokenId && + direction == other.direction && + incrementedCardAuthorizationId == other.incrementedCardAuthorizationId && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantDescriptor == other.merchantDescriptor && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkDetails == other.networkDetails && + networkIdentifiers == other.networkIdentifiers && + networkRiskScore == other.networkRiskScore && + physicalCardId == other.physicalCardId && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + processingCategory == other.processingCategory && + realTimeDecisionId == other.realTimeDecisionId && + realTimeDecisionReason == other.realTimeDecisionReason && + reason == other.reason && + terminalId == other.terminalId && + verification == other.verification && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, actioner, additionalAmounts, amount, cardPaymentId, currency, declinedTransactionId, digitalWalletTokenId, direction, incrementedCardAuthorizationId, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantDescriptor, merchantPostalCode, merchantState, networkDetails, networkIdentifiers, networkRiskScore, physicalCardId, presentmentAmount, presentmentCurrency, processingCategory, realTimeDecisionId, realTimeDecisionReason, reason, terminalId, verification, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + actioner, + additionalAmounts, + amount, + cardPaymentId, + currency, + declinedTransactionId, + digitalWalletTokenId, + direction, + incrementedCardAuthorizationId, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantDescriptor, + merchantPostalCode, + merchantState, + networkDetails, + networkIdentifiers, + networkRiskScore, + physicalCardId, + presentmentAmount, + presentmentCurrency, + processingCategory, + realTimeDecisionId, + realTimeDecisionReason, + reason, + terminalId, + verification, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -11080,7 +11254,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -11828,7 +12002,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -11841,12 +12015,29 @@ private constructor( return true } - return /* spotless:off */ other is CheckDecline && amount == other.amount && auxiliaryOnUs == other.auxiliaryOnUs && backImageFileId == other.backImageFileId && checkTransferId == other.checkTransferId && frontImageFileId == other.frontImageFileId && inboundCheckDepositId == other.inboundCheckDepositId && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckDecline && + amount == other.amount && + auxiliaryOnUs == other.auxiliaryOnUs && + backImageFileId == other.backImageFileId && + checkTransferId == other.checkTransferId && + frontImageFileId == other.frontImageFileId && + inboundCheckDepositId == other.inboundCheckDepositId && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, auxiliaryOnUs, backImageFileId, checkTransferId, frontImageFileId, inboundCheckDepositId, reason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + auxiliaryOnUs, + backImageFileId, + checkTransferId, + frontImageFileId, + inboundCheckDepositId, + reason, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -12408,7 +12599,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -12629,7 +12820,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -12642,12 +12833,27 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositRejection && amount == other.amount && checkDepositId == other.checkDepositId && currency == other.currency && declinedTransactionId == other.declinedTransactionId && reason == other.reason && rejectedAt == other.rejectedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckDepositRejection && + amount == other.amount && + checkDepositId == other.checkDepositId && + currency == other.currency && + declinedTransactionId == other.declinedTransactionId && + reason == other.reason && + rejectedAt == other.rejectedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, checkDepositId, currency, declinedTransactionId, reason, rejectedAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + checkDepositId, + currency, + declinedTransactionId, + reason, + rejectedAt, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -13409,7 +13615,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -13584,7 +13790,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -13597,12 +13803,35 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransferDecline && amount == other.amount && creditorName == other.creditorName && currency == other.currency && debtorAccountNumber == other.debtorAccountNumber && debtorName == other.debtorName && debtorRoutingNumber == other.debtorRoutingNumber && reason == other.reason && remittanceInformation == other.remittanceInformation && transactionIdentification == other.transactionIdentification && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundRealTimePaymentsTransferDecline && + amount == other.amount && + creditorName == other.creditorName && + currency == other.currency && + debtorAccountNumber == other.debtorAccountNumber && + debtorName == other.debtorName && + debtorRoutingNumber == other.debtorRoutingNumber && + reason == other.reason && + remittanceInformation == other.remittanceInformation && + transactionIdentification == other.transactionIdentification && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, creditorName, currency, debtorAccountNumber, debtorName, debtorRoutingNumber, reason, remittanceInformation, transactionIdentification, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + creditorName, + currency, + debtorAccountNumber, + debtorName, + debtorRoutingNumber, + reason, + remittanceInformation, + transactionIdentification, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -13972,7 +14201,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -13985,12 +14214,15 @@ private constructor( return true } - return /* spotless:off */ other is WireDecline && inboundWireTransferId == other.inboundWireTransferId && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is WireDecline && + inboundWireTransferId == other.inboundWireTransferId && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(inboundWireTransferId, reason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(inboundWireTransferId, reason, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -14003,12 +14235,32 @@ private constructor( return true } - return /* spotless:off */ other is Source && achDecline == other.achDecline && cardDecline == other.cardDecline && category == other.category && checkDecline == other.checkDecline && checkDepositRejection == other.checkDepositRejection && inboundRealTimePaymentsTransferDecline == other.inboundRealTimePaymentsTransferDecline && this.other == other.other && wireDecline == other.wireDecline && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Source && + achDecline == other.achDecline && + cardDecline == other.cardDecline && + category == other.category && + checkDecline == other.checkDecline && + checkDepositRejection == other.checkDepositRejection && + inboundRealTimePaymentsTransferDecline == + other.inboundRealTimePaymentsTransferDecline && + this.other == other.other && + wireDecline == other.wireDecline && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(achDecline, cardDecline, category, checkDecline, checkDepositRejection, inboundRealTimePaymentsTransferDecline, other, wireDecline, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + achDecline, + cardDecline, + category, + checkDecline, + checkDepositRejection, + inboundRealTimePaymentsTransferDecline, + other, + wireDecline, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -14133,7 +14385,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -14146,12 +14398,35 @@ private constructor( return true } - return /* spotless:off */ other is DeclinedTransaction && id == other.id && accountId == other.accountId && amount == other.amount && createdAt == other.createdAt && currency == other.currency && description == other.description && routeId == other.routeId && routeType == other.routeType && source == other.source && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DeclinedTransaction && + id == other.id && + accountId == other.accountId && + amount == other.amount && + createdAt == other.createdAt && + currency == other.currency && + description == other.description && + routeId == other.routeId && + routeType == other.routeType && + source == other.source && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, amount, createdAt, currency, description, routeId, routeType, source, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + amount, + createdAt, + currency, + description, + routeId, + routeType, + source, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPage.kt index 722f7c6ac..ebdb124c0 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is DeclinedTransactionListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is DeclinedTransactionListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "DeclinedTransactionListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageAsync.kt index 7c564f67e..c1ddcb079 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is DeclinedTransactionListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is DeclinedTransactionListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "DeclinedTransactionListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageResponse.kt index bc0d7a94e..e21fdb97f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageResponse.kt @@ -227,12 +227,13 @@ private constructor( return true } - return /* spotless:off */ other is DeclinedTransactionListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DeclinedTransactionListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListParams.kt index 5fe744cc6..45f020763 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListParams.kt @@ -594,7 +594,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -607,12 +607,12 @@ private constructor( return true } - return /* spotless:off */ other is Category && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Category && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -779,12 +779,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -797,10 +802,28 @@ private constructor( return true } - return /* spotless:off */ other is DeclinedTransactionListParams && accountId == other.accountId && category == other.category && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && routeId == other.routeId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DeclinedTransactionListParams && + accountId == other.accountId && + category == other.category && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + routeId == other.routeId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, category, createdAt, cursor, limit, routeId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + category, + createdAt, + cursor, + limit, + routeId, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "DeclinedTransactionListParams{accountId=$accountId, category=$category, createdAt=$createdAt, cursor=$cursor, limit=$limit, routeId=$routeId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionRetrieveParams.kt index 437fcef35..c152075d6 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is DeclinedTransactionRetrieveParams && declinedTransactionId == other.declinedTransactionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DeclinedTransactionRetrieveParams && + declinedTransactionId == other.declinedTransactionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(declinedTransactionId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(declinedTransactionId, additionalHeaders, additionalQueryParams) override fun toString() = "DeclinedTransactionRetrieveParams{declinedTransactionId=$declinedTransactionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfile.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfile.kt index 23d975d2f..8e316e75e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfile.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfile.kt @@ -882,7 +882,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1110,12 +1110,14 @@ private constructor( return true } - return /* spotless:off */ other is TextColor && blue == other.blue && green == other.green && red == other.red && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TextColor && + blue == other.blue && + green == other.green && + red == other.red && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(blue, green, red, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1240,7 +1242,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1253,12 +1255,43 @@ private constructor( return true } - return /* spotless:off */ other is DigitalCardProfile && id == other.id && appIconFileId == other.appIconFileId && backgroundImageFileId == other.backgroundImageFileId && cardDescription == other.cardDescription && contactEmail == other.contactEmail && contactPhone == other.contactPhone && contactWebsite == other.contactWebsite && createdAt == other.createdAt && description == other.description && idempotencyKey == other.idempotencyKey && issuerName == other.issuerName && status == other.status && textColor == other.textColor && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalCardProfile && + id == other.id && + appIconFileId == other.appIconFileId && + backgroundImageFileId == other.backgroundImageFileId && + cardDescription == other.cardDescription && + contactEmail == other.contactEmail && + contactPhone == other.contactPhone && + contactWebsite == other.contactWebsite && + createdAt == other.createdAt && + description == other.description && + idempotencyKey == other.idempotencyKey && + issuerName == other.issuerName && + status == other.status && + textColor == other.textColor && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, appIconFileId, backgroundImageFileId, cardDescription, contactEmail, contactPhone, contactWebsite, createdAt, description, idempotencyKey, issuerName, status, textColor, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + appIconFileId, + backgroundImageFileId, + cardDescription, + contactEmail, + contactPhone, + contactWebsite, + createdAt, + description, + idempotencyKey, + issuerName, + status, + textColor, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileArchiveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileArchiveParams.kt index 5d99a8373..5e841e8b3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileArchiveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileArchiveParams.kt @@ -228,10 +228,20 @@ private constructor( return true } - return /* spotless:off */ other is DigitalCardProfileArchiveParams && digitalCardProfileId == other.digitalCardProfileId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is DigitalCardProfileArchiveParams && + digitalCardProfileId == other.digitalCardProfileId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(digitalCardProfileId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + digitalCardProfileId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "DigitalCardProfileArchiveParams{digitalCardProfileId=$digitalCardProfileId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileCloneParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileCloneParams.kt index 0733c84fa..c5d028efb 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileCloneParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileCloneParams.kt @@ -974,12 +974,33 @@ private constructor( return true } - return /* spotless:off */ other is Body && appIconFileId == other.appIconFileId && backgroundImageFileId == other.backgroundImageFileId && cardDescription == other.cardDescription && contactEmail == other.contactEmail && contactPhone == other.contactPhone && contactWebsite == other.contactWebsite && description == other.description && issuerName == other.issuerName && textColor == other.textColor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + appIconFileId == other.appIconFileId && + backgroundImageFileId == other.backgroundImageFileId && + cardDescription == other.cardDescription && + contactEmail == other.contactEmail && + contactPhone == other.contactPhone && + contactWebsite == other.contactWebsite && + description == other.description && + issuerName == other.issuerName && + textColor == other.textColor && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(appIconFileId, backgroundImageFileId, cardDescription, contactEmail, contactPhone, contactWebsite, description, issuerName, textColor, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + appIconFileId, + backgroundImageFileId, + cardDescription, + contactEmail, + contactPhone, + contactWebsite, + description, + issuerName, + textColor, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1207,12 +1228,14 @@ private constructor( return true } - return /* spotless:off */ other is TextColor && blue == other.blue && green == other.green && red == other.red && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TextColor && + blue == other.blue && + green == other.green && + red == other.red && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(blue, green, red, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1225,10 +1248,15 @@ private constructor( return true } - return /* spotless:off */ other is DigitalCardProfileCloneParams && digitalCardProfileId == other.digitalCardProfileId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DigitalCardProfileCloneParams && + digitalCardProfileId == other.digitalCardProfileId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(digitalCardProfileId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(digitalCardProfileId, body, additionalHeaders, additionalQueryParams) override fun toString() = "DigitalCardProfileCloneParams{digitalCardProfileId=$digitalCardProfileId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileCreateParams.kt index c396d821a..68fa9d046 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileCreateParams.kt @@ -989,12 +989,33 @@ private constructor( return true } - return /* spotless:off */ other is Body && appIconFileId == other.appIconFileId && backgroundImageFileId == other.backgroundImageFileId && cardDescription == other.cardDescription && description == other.description && issuerName == other.issuerName && contactEmail == other.contactEmail && contactPhone == other.contactPhone && contactWebsite == other.contactWebsite && textColor == other.textColor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + appIconFileId == other.appIconFileId && + backgroundImageFileId == other.backgroundImageFileId && + cardDescription == other.cardDescription && + description == other.description && + issuerName == other.issuerName && + contactEmail == other.contactEmail && + contactPhone == other.contactPhone && + contactWebsite == other.contactWebsite && + textColor == other.textColor && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(appIconFileId, backgroundImageFileId, cardDescription, description, issuerName, contactEmail, contactPhone, contactWebsite, textColor, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + appIconFileId, + backgroundImageFileId, + cardDescription, + description, + issuerName, + contactEmail, + contactPhone, + contactWebsite, + textColor, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1222,12 +1243,14 @@ private constructor( return true } - return /* spotless:off */ other is TextColor && blue == other.blue && green == other.green && red == other.red && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TextColor && + blue == other.blue && + green == other.green && + red == other.red && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(blue, green, red, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1240,10 +1263,13 @@ private constructor( return true } - return /* spotless:off */ other is DigitalCardProfileCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DigitalCardProfileCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "DigitalCardProfileCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPage.kt index 949ccc0d6..194ce6679 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is DigitalCardProfileListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is DigitalCardProfileListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "DigitalCardProfileListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageAsync.kt index 0b1bf589c..970db868e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is DigitalCardProfileListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is DigitalCardProfileListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "DigitalCardProfileListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageResponse.kt index 88e413f0f..85199afd8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is DigitalCardProfileListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalCardProfileListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListParams.kt index c2a812c13..9190e25fc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListParams.kt @@ -511,7 +511,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -524,12 +524,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -541,10 +541,24 @@ private constructor( return true } - return /* spotless:off */ other is DigitalCardProfileListParams && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DigitalCardProfileListParams && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "DigitalCardProfileListParams{cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileRetrieveParams.kt index 83c0474be..8bd2cbc66 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is DigitalCardProfileRetrieveParams && digitalCardProfileId == other.digitalCardProfileId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DigitalCardProfileRetrieveParams && + digitalCardProfileId == other.digitalCardProfileId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(digitalCardProfileId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(digitalCardProfileId, additionalHeaders, additionalQueryParams) override fun toString() = "DigitalCardProfileRetrieveParams{digitalCardProfileId=$digitalCardProfileId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletToken.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletToken.kt index 11634360d..f523b7a21 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletToken.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletToken.kt @@ -643,12 +643,12 @@ private constructor( return true } - return /* spotless:off */ other is Cardholder && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cardholder && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1124,7 +1124,7 @@ private constructor( return true } - return /* spotless:off */ other is DeviceType && value == other.value /* spotless:on */ + return other is DeviceType && value == other.value } override fun hashCode() = value.hashCode() @@ -1137,12 +1137,17 @@ private constructor( return true } - return /* spotless:off */ other is Device && deviceType == other.deviceType && identifier == other.identifier && ipAddress == other.ipAddress && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Device && + deviceType == other.deviceType && + identifier == other.identifier && + ipAddress == other.ipAddress && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(deviceType, identifier, ipAddress, name, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(deviceType, identifier, ipAddress, name, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1303,7 +1308,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1459,7 +1464,7 @@ private constructor( return true } - return /* spotless:off */ other is TokenRequestor && value == other.value /* spotless:on */ + return other is TokenRequestor && value == other.value } override fun hashCode() = value.hashCode() @@ -1584,7 +1589,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1935,7 +1940,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1948,12 +1953,13 @@ private constructor( return true } - return /* spotless:off */ other is Update && status == other.status && timestamp == other.timestamp && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Update && + status == other.status && + timestamp == other.timestamp && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(status, timestamp, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1966,12 +1972,33 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletToken && id == other.id && cardId == other.cardId && cardholder == other.cardholder && createdAt == other.createdAt && device == other.device && status == other.status && tokenRequestor == other.tokenRequestor && type == other.type && updates == other.updates && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWalletToken && + id == other.id && + cardId == other.cardId && + cardholder == other.cardholder && + createdAt == other.createdAt && + device == other.device && + status == other.status && + tokenRequestor == other.tokenRequestor && + type == other.type && + updates == other.updates && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, cardId, cardholder, createdAt, device, status, tokenRequestor, type, updates, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + cardId, + cardholder, + createdAt, + device, + status, + tokenRequestor, + type, + updates, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPage.kt index 4a0f97328..df1d5f2d8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletTokenListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is DigitalWalletTokenListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "DigitalWalletTokenListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageAsync.kt index b3d8a071e..ef5841287 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletTokenListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is DigitalWalletTokenListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "DigitalWalletTokenListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageResponse.kt index 5ff547bc7..6e09f09f1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletTokenListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWalletTokenListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListParams.kt index b4f78981e..126b34c8e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListParams.kt @@ -414,12 +414,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -432,10 +437,17 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletTokenListParams && cardId == other.cardId && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DigitalWalletTokenListParams && + cardId == other.cardId && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardId, createdAt, cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cardId, createdAt, cursor, limit, additionalHeaders, additionalQueryParams) override fun toString() = "DigitalWalletTokenListParams{cardId=$cardId, createdAt=$createdAt, cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenRetrieveParams.kt index 011396f42..6edbd3756 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletTokenRetrieveParams && digitalWalletTokenId == other.digitalWalletTokenId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DigitalWalletTokenRetrieveParams && + digitalWalletTokenId == other.digitalWalletTokenId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(digitalWalletTokenId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(digitalWalletTokenId, additionalHeaders, additionalQueryParams) override fun toString() = "DigitalWalletTokenRetrieveParams{digitalWalletTokenId=$digitalWalletTokenId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/Document.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/Document.kt index 014d75522..987b07741 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/Document.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/Document.kt @@ -679,12 +679,12 @@ private constructor( return true } - return /* spotless:off */ other is AccountVerificationLetter && accountNumberId == other.accountNumberId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountVerificationLetter && + accountNumberId == other.accountNumberId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(accountNumberId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -872,7 +872,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -1035,12 +1035,12 @@ private constructor( return true } - return /* spotless:off */ other is FundingInstructions && accountNumberId == other.accountNumberId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is FundingInstructions && + accountNumberId == other.accountNumberId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(accountNumberId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1164,7 +1164,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1177,12 +1177,33 @@ private constructor( return true } - return /* spotless:off */ other is Document && id == other.id && accountVerificationLetter == other.accountVerificationLetter && category == other.category && createdAt == other.createdAt && entityId == other.entityId && fileId == other.fileId && fundingInstructions == other.fundingInstructions && idempotencyKey == other.idempotencyKey && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Document && + id == other.id && + accountVerificationLetter == other.accountVerificationLetter && + category == other.category && + createdAt == other.createdAt && + entityId == other.entityId && + fileId == other.fileId && + fundingInstructions == other.fundingInstructions && + idempotencyKey == other.idempotencyKey && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountVerificationLetter, category, createdAt, entityId, fileId, fundingInstructions, idempotencyKey, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountVerificationLetter, + category, + createdAt, + entityId, + fileId, + fundingInstructions, + idempotencyKey, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentCreateParams.kt index 50ca3c054..de84b0eab 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentCreateParams.kt @@ -552,12 +552,21 @@ private constructor( return true } - return /* spotless:off */ other is Body && category == other.category && accountVerificationLetter == other.accountVerificationLetter && fundingInstructions == other.fundingInstructions && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + category == other.category && + accountVerificationLetter == other.accountVerificationLetter && + fundingInstructions == other.fundingInstructions && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, accountVerificationLetter, fundingInstructions, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + category, + accountVerificationLetter, + fundingInstructions, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -691,7 +700,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -896,12 +905,15 @@ private constructor( return true } - return /* spotless:off */ other is AccountVerificationLetter && accountNumberId == other.accountNumberId && balanceDate == other.balanceDate && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountVerificationLetter && + accountNumberId == other.accountNumberId && + balanceDate == other.balanceDate && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumberId, balanceDate, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountNumberId, balanceDate, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1064,12 +1076,12 @@ private constructor( return true } - return /* spotless:off */ other is FundingInstructions && accountNumberId == other.accountNumberId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is FundingInstructions && + accountNumberId == other.accountNumberId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(accountNumberId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1082,10 +1094,13 @@ private constructor( return true } - return /* spotless:off */ other is DocumentCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DocumentCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "DocumentCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPage.kt index 8dbdc3ac9..43fe262a0 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is DocumentListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is DocumentListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "DocumentListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPageAsync.kt index 74eabd182..1f25b5f54 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is DocumentListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is DocumentListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "DocumentListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPageResponse.kt index ea2132da6..7f562c68a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is DocumentListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DocumentListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListParams.kt index 7d4f397c7..aea25a3f3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentListParams.kt @@ -589,7 +589,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -602,12 +602,12 @@ private constructor( return true } - return /* spotless:off */ other is Category && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Category && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -774,12 +774,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -792,10 +797,28 @@ private constructor( return true } - return /* spotless:off */ other is DocumentListParams && category == other.category && createdAt == other.createdAt && cursor == other.cursor && entityId == other.entityId && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DocumentListParams && + category == other.category && + createdAt == other.createdAt && + cursor == other.cursor && + entityId == other.entityId && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(category, createdAt, cursor, entityId, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + category, + createdAt, + cursor, + entityId, + idempotencyKey, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "DocumentListParams{category=$category, createdAt=$createdAt, cursor=$cursor, entityId=$entityId, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentRetrieveParams.kt index 486e129fd..95f168ce4 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/documents/DocumentRetrieveParams.kt @@ -182,10 +182,14 @@ private constructor( return true } - return /* spotless:off */ other is DocumentRetrieveParams && documentId == other.documentId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DocumentRetrieveParams && + documentId == other.documentId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(documentId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(documentId, additionalHeaders, additionalQueryParams) override fun toString() = "DocumentRetrieveParams{documentId=$documentId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt index 08845a2b0..92cf33073 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt @@ -1591,12 +1591,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2538,12 +2544,19 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && country == other.country && line1 == other.line1 && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + country == other.country && + line1 == other.line1 && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, country, line1, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, country, line1, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2921,7 +2934,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -2934,12 +2947,15 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && numberLast4 == other.numberLast4 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + numberLast4 == other.numberLast4 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, numberLast4, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(method, numberLast4, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2952,12 +2968,17 @@ private constructor( return true } - return /* spotless:off */ other is Individual && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Individual && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(address, dateOfBirth, identification, name, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3095,7 +3116,7 @@ private constructor( return true } - return /* spotless:off */ other is Prong && value == other.value /* spotless:on */ + return other is Prong && value == other.value } override fun hashCode() = value.hashCode() @@ -3108,12 +3129,23 @@ private constructor( return true } - return /* spotless:off */ other is BeneficialOwner && beneficialOwnerId == other.beneficialOwnerId && companyTitle == other.companyTitle && individual == other.individual && prong == other.prong && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BeneficialOwner && + beneficialOwnerId == other.beneficialOwnerId && + companyTitle == other.companyTitle && + individual == other.individual && + prong == other.prong && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(beneficialOwnerId, companyTitle, individual, prong, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + beneficialOwnerId, + companyTitle, + individual, + prong, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -3126,12 +3158,29 @@ private constructor( return true } - return /* spotless:off */ other is Corporation && address == other.address && beneficialOwners == other.beneficialOwners && incorporationState == other.incorporationState && industryCode == other.industryCode && name == other.name && taxIdentifier == other.taxIdentifier && website == other.website && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Corporation && + address == other.address && + beneficialOwners == other.beneficialOwners && + incorporationState == other.incorporationState && + industryCode == other.industryCode && + name == other.name && + taxIdentifier == other.taxIdentifier && + website == other.website && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, beneficialOwners, incorporationState, industryCode, name, taxIdentifier, website, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + beneficialOwners, + incorporationState, + industryCode, + name, + taxIdentifier, + website, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -3809,12 +3858,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4019,12 +4074,15 @@ private constructor( return true } - return /* spotless:off */ other is AuthorizedPerson && authorizedPersonId == other.authorizedPersonId && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AuthorizedPerson && + authorizedPersonId == other.authorizedPersonId && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(authorizedPersonId, name, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(authorizedPersonId, name, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4179,7 +4237,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -4192,12 +4250,27 @@ private constructor( return true } - return /* spotless:off */ other is GovernmentAuthority && address == other.address && authorizedPersons == other.authorizedPersons && category == other.category && name == other.name && taxIdentifier == other.taxIdentifier && website == other.website && additionalProperties == other.additionalProperties /* spotless:on */ + return other is GovernmentAuthority && + address == other.address && + authorizedPersons == other.authorizedPersons && + category == other.category && + name == other.name && + taxIdentifier == other.taxIdentifier && + website == other.website && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, authorizedPersons, category, name, taxIdentifier, website, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + authorizedPersons, + category, + name, + taxIdentifier, + website, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -4994,12 +5067,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5369,7 +5448,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -5382,12 +5461,15 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && numberLast4 == other.numberLast4 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + numberLast4 == other.numberLast4 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, numberLast4, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(method, numberLast4, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5400,12 +5482,17 @@ private constructor( return true } - return /* spotless:off */ other is Individual && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Individual && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(address, dateOfBirth, identification, name, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5418,12 +5505,13 @@ private constructor( return true } - return /* spotless:off */ other is Joint && individuals == other.individuals && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Joint && + individuals == other.individuals && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(individuals, name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -6005,12 +6093,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6376,7 +6470,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -6389,12 +6483,15 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && numberLast4 == other.numberLast4 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + numberLast4 == other.numberLast4 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, numberLast4, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(method, numberLast4, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6407,12 +6504,17 @@ private constructor( return true } - return /* spotless:off */ other is NaturalPerson && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NaturalPerson && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(address, dateOfBirth, identification, name, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6555,7 +6657,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -6718,7 +6820,7 @@ private constructor( return true } - return /* spotless:off */ other is Structure && value == other.value /* spotless:on */ + return other is Structure && value == other.value } override fun hashCode() = value.hashCode() @@ -7047,7 +7149,7 @@ private constructor( return true } - return /* spotless:off */ other is Vendor && value == other.value /* spotless:on */ + return other is Vendor && value == other.value } override fun hashCode() = value.hashCode() @@ -7060,12 +7162,13 @@ private constructor( return true } - return /* spotless:off */ other is ThirdPartyVerification && reference == other.reference && vendor == other.vendor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ThirdPartyVerification && + reference == other.reference && + vendor == other.vendor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reference, vendor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -7851,12 +7954,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -7993,7 +8102,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -8594,12 +8703,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -8969,7 +9084,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -8982,12 +9097,15 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && numberLast4 == other.numberLast4 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + numberLast4 == other.numberLast4 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, numberLast4, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(method, numberLast4, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -9000,12 +9118,17 @@ private constructor( return true } - return /* spotless:off */ other is Grantor && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Grantor && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(address, dateOfBirth, identification, name, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -9822,12 +9945,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -10205,7 +10334,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -10218,12 +10347,15 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && numberLast4 == other.numberLast4 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + numberLast4 == other.numberLast4 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, numberLast4, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(method, numberLast4, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -10236,12 +10368,17 @@ private constructor( return true } - return /* spotless:off */ other is Individual && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Individual && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(address, dateOfBirth, identification, name, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -10370,7 +10507,7 @@ private constructor( return true } - return /* spotless:off */ other is Structure && value == other.value /* spotless:on */ + return other is Structure && value == other.value } override fun hashCode() = value.hashCode() @@ -10383,12 +10520,15 @@ private constructor( return true } - return /* spotless:off */ other is Trustee && individual == other.individual && structure == other.structure && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Trustee && + individual == other.individual && + structure == other.structure && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(individual, structure, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(individual, structure, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -10401,12 +10541,31 @@ private constructor( return true } - return /* spotless:off */ other is Trust && address == other.address && category == other.category && formationDocumentFileId == other.formationDocumentFileId && formationState == other.formationState && grantor == other.grantor && name == other.name && taxIdentifier == other.taxIdentifier && trustees == other.trustees && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Trust && + address == other.address && + category == other.category && + formationDocumentFileId == other.formationDocumentFileId && + formationState == other.formationState && + grantor == other.grantor && + name == other.name && + taxIdentifier == other.taxIdentifier && + trustees == other.trustees && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, category, formationDocumentFileId, formationState, grantor, name, taxIdentifier, trustees, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + category, + formationDocumentFileId, + formationState, + grantor, + name, + taxIdentifier, + trustees, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -10528,7 +10687,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -10541,12 +10700,45 @@ private constructor( return true } - return /* spotless:off */ other is Entity && id == other.id && corporation == other.corporation && createdAt == other.createdAt && description == other.description && detailsConfirmedAt == other.detailsConfirmedAt && governmentAuthority == other.governmentAuthority && idempotencyKey == other.idempotencyKey && joint == other.joint && naturalPerson == other.naturalPerson && status == other.status && structure == other.structure && supplementalDocuments == other.supplementalDocuments && thirdPartyVerification == other.thirdPartyVerification && trust == other.trust && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Entity && + id == other.id && + corporation == other.corporation && + createdAt == other.createdAt && + description == other.description && + detailsConfirmedAt == other.detailsConfirmedAt && + governmentAuthority == other.governmentAuthority && + idempotencyKey == other.idempotencyKey && + joint == other.joint && + naturalPerson == other.naturalPerson && + status == other.status && + structure == other.structure && + supplementalDocuments == other.supplementalDocuments && + thirdPartyVerification == other.thirdPartyVerification && + trust == other.trust && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, corporation, createdAt, description, detailsConfirmedAt, governmentAuthority, idempotencyKey, joint, naturalPerson, status, structure, supplementalDocuments, thirdPartyVerification, trust, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + corporation, + createdAt, + description, + detailsConfirmedAt, + governmentAuthority, + idempotencyKey, + joint, + naturalPerson, + status, + structure, + supplementalDocuments, + thirdPartyVerification, + trust, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityArchiveBeneficialOwnerParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityArchiveBeneficialOwnerParams.kt index 85b184973..61c52e55c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityArchiveBeneficialOwnerParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityArchiveBeneficialOwnerParams.kt @@ -432,12 +432,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && beneficialOwnerId == other.beneficialOwnerId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + beneficialOwnerId == other.beneficialOwnerId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(beneficialOwnerId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -450,10 +450,15 @@ private constructor( return true } - return /* spotless:off */ other is EntityArchiveBeneficialOwnerParams && entityId == other.entityId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EntityArchiveBeneficialOwnerParams && + entityId == other.entityId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) override fun toString() = "EntityArchiveBeneficialOwnerParams{entityId=$entityId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityArchiveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityArchiveParams.kt index 0bebeb9a5..fbed4c5a2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityArchiveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityArchiveParams.kt @@ -222,10 +222,15 @@ private constructor( return true } - return /* spotless:off */ other is EntityArchiveParams && entityId == other.entityId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is EntityArchiveParams && + entityId == other.entityId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(entityId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(entityId, additionalHeaders, additionalQueryParams, additionalBodyProperties) override fun toString() = "EntityArchiveParams{entityId=$entityId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityConfirmParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityConfirmParams.kt index 594423a3c..9ac43adf9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityConfirmParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityConfirmParams.kt @@ -398,12 +398,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && confirmedAt == other.confirmedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + confirmedAt == other.confirmedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(confirmedAt, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -416,10 +416,15 @@ private constructor( return true } - return /* spotless:off */ other is EntityConfirmParams && entityId == other.entityId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EntityConfirmParams && + entityId == other.entityId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) override fun toString() = "EntityConfirmParams{entityId=$entityId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateBeneficialOwnerParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateBeneficialOwnerParams.kt index 9be116f02..1b5363e11 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateBeneficialOwnerParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateBeneficialOwnerParams.kt @@ -433,12 +433,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && beneficialOwner == other.beneficialOwner && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + beneficialOwner == other.beneficialOwner && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(beneficialOwner, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1376,12 +1376,19 @@ private constructor( return true } - return /* spotless:off */ other is Address && country == other.country && line1 == other.line1 && city == other.city && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + country == other.country && + line1 == other.line1 && + city == other.city && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, line1, city, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(country, line1, city, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1878,7 +1885,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -2179,12 +2186,23 @@ private constructor( return true } - return /* spotless:off */ other is DriversLicense && expirationDate == other.expirationDate && fileId == other.fileId && state == other.state && backFileId == other.backFileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DriversLicense && + expirationDate == other.expirationDate && + fileId == other.fileId && + state == other.state && + backFileId == other.backFileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(expirationDate, fileId, state, backFileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + expirationDate, + fileId, + state, + backFileId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2539,12 +2557,25 @@ private constructor( return true } - return /* spotless:off */ other is Other && country == other.country && description == other.description && fileId == other.fileId && backFileId == other.backFileId && expirationDate == other.expirationDate && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Other && + country == other.country && + description == other.description && + fileId == other.fileId && + backFileId == other.backFileId && + expirationDate == other.expirationDate && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, description, fileId, backFileId, expirationDate, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + country, + description, + fileId, + backFileId, + expirationDate, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2804,12 +2835,16 @@ private constructor( return true } - return /* spotless:off */ other is Passport && country == other.country && expirationDate == other.expirationDate && fileId == other.fileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Passport && + country == other.country && + expirationDate == other.expirationDate && + fileId == other.fileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, expirationDate, fileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(country, expirationDate, fileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2822,12 +2857,25 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && number == other.number && driversLicense == other.driversLicense && this.other == other.other && passport == other.passport && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + number == other.number && + driversLicense == other.driversLicense && + this.other == other.other && + passport == other.passport && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, number, driversLicense, other, passport, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + method, + number, + driversLicense, + other, + passport, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2840,12 +2888,25 @@ private constructor( return true } - return /* spotless:off */ other is Individual && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && confirmedNoUsTaxId == other.confirmedNoUsTaxId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Individual && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + confirmedNoUsTaxId == other.confirmedNoUsTaxId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, confirmedNoUsTaxId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + dateOfBirth, + identification, + name, + confirmedNoUsTaxId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2980,7 +3041,7 @@ private constructor( return true } - return /* spotless:off */ other is Prong && value == other.value /* spotless:on */ + return other is Prong && value == other.value } override fun hashCode() = value.hashCode() @@ -2993,12 +3054,16 @@ private constructor( return true } - return /* spotless:off */ other is BeneficialOwner && individual == other.individual && prongs == other.prongs && companyTitle == other.companyTitle && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BeneficialOwner && + individual == other.individual && + prongs == other.prongs && + companyTitle == other.companyTitle && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(individual, prongs, companyTitle, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(individual, prongs, companyTitle, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3011,10 +3076,15 @@ private constructor( return true } - return /* spotless:off */ other is EntityCreateBeneficialOwnerParams && entityId == other.entityId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EntityCreateBeneficialOwnerParams && + entityId == other.entityId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) override fun toString() = "EntityCreateBeneficialOwnerParams{entityId=$entityId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt index 57be047a6..833f34338 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt @@ -1041,12 +1041,33 @@ private constructor( return true } - return /* spotless:off */ other is Body && structure == other.structure && corporation == other.corporation && description == other.description && governmentAuthority == other.governmentAuthority && joint == other.joint && naturalPerson == other.naturalPerson && supplementalDocuments == other.supplementalDocuments && thirdPartyVerification == other.thirdPartyVerification && trust == other.trust && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + structure == other.structure && + corporation == other.corporation && + description == other.description && + governmentAuthority == other.governmentAuthority && + joint == other.joint && + naturalPerson == other.naturalPerson && + supplementalDocuments == other.supplementalDocuments && + thirdPartyVerification == other.thirdPartyVerification && + trust == other.trust && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(structure, corporation, description, governmentAuthority, joint, naturalPerson, supplementalDocuments, thirdPartyVerification, trust, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + structure, + corporation, + description, + governmentAuthority, + joint, + naturalPerson, + supplementalDocuments, + thirdPartyVerification, + trust, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1209,7 +1230,7 @@ private constructor( return true } - return /* spotless:off */ other is Structure && value == other.value /* spotless:on */ + return other is Structure && value == other.value } override fun hashCode() = value.hashCode() @@ -2010,12 +2031,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && state == other.state && zip == other.zip && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + state == other.state && + zip == other.zip && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, state, zip, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, state, zip, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2984,12 +3011,19 @@ private constructor( return true } - return /* spotless:off */ other is Address && country == other.country && line1 == other.line1 && city == other.city && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + country == other.country && + line1 == other.line1 && + city == other.city && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, line1, city, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(country, line1, city, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3497,7 +3531,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -3805,12 +3839,23 @@ private constructor( return true } - return /* spotless:off */ other is DriversLicense && expirationDate == other.expirationDate && fileId == other.fileId && state == other.state && backFileId == other.backFileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DriversLicense && + expirationDate == other.expirationDate && + fileId == other.fileId && + state == other.state && + backFileId == other.backFileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(expirationDate, fileId, state, backFileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + expirationDate, + fileId, + state, + backFileId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -4169,12 +4214,25 @@ private constructor( return true } - return /* spotless:off */ other is Other && country == other.country && description == other.description && fileId == other.fileId && backFileId == other.backFileId && expirationDate == other.expirationDate && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Other && + country == other.country && + description == other.description && + fileId == other.fileId && + backFileId == other.backFileId && + expirationDate == other.expirationDate && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, description, fileId, backFileId, expirationDate, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + country, + description, + fileId, + backFileId, + expirationDate, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -4438,12 +4496,16 @@ private constructor( return true } - return /* spotless:off */ other is Passport && country == other.country && expirationDate == other.expirationDate && fileId == other.fileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Passport && + country == other.country && + expirationDate == other.expirationDate && + fileId == other.fileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, expirationDate, fileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(country, expirationDate, fileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4456,12 +4518,25 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && number == other.number && driversLicense == other.driversLicense && this.other == other.other && passport == other.passport && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + number == other.number && + driversLicense == other.driversLicense && + this.other == other.other && + passport == other.passport && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, number, driversLicense, other, passport, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + method, + number, + driversLicense, + other, + passport, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -4474,12 +4549,25 @@ private constructor( return true } - return /* spotless:off */ other is Individual && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && confirmedNoUsTaxId == other.confirmedNoUsTaxId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Individual && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + confirmedNoUsTaxId == other.confirmedNoUsTaxId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, confirmedNoUsTaxId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + dateOfBirth, + identification, + name, + confirmedNoUsTaxId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -4616,7 +4704,7 @@ private constructor( return true } - return /* spotless:off */ other is Prong && value == other.value /* spotless:on */ + return other is Prong && value == other.value } override fun hashCode() = value.hashCode() @@ -4629,12 +4717,16 @@ private constructor( return true } - return /* spotless:off */ other is BeneficialOwner && individual == other.individual && prongs == other.prongs && companyTitle == other.companyTitle && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BeneficialOwner && + individual == other.individual && + prongs == other.prongs && + companyTitle == other.companyTitle && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(individual, prongs, companyTitle, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(individual, prongs, companyTitle, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4793,7 +4885,7 @@ private constructor( return true } - return /* spotless:off */ other is BeneficialOwnershipExemptionReason && value == other.value /* spotless:on */ + return other is BeneficialOwnershipExemptionReason && value == other.value } override fun hashCode() = value.hashCode() @@ -4806,12 +4898,31 @@ private constructor( return true } - return /* spotless:off */ other is Corporation && address == other.address && beneficialOwners == other.beneficialOwners && name == other.name && taxIdentifier == other.taxIdentifier && beneficialOwnershipExemptionReason == other.beneficialOwnershipExemptionReason && incorporationState == other.incorporationState && industryCode == other.industryCode && website == other.website && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Corporation && + address == other.address && + beneficialOwners == other.beneficialOwners && + name == other.name && + taxIdentifier == other.taxIdentifier && + beneficialOwnershipExemptionReason == other.beneficialOwnershipExemptionReason && + incorporationState == other.incorporationState && + industryCode == other.industryCode && + website == other.website && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, beneficialOwners, name, taxIdentifier, beneficialOwnershipExemptionReason, incorporationState, industryCode, website, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + beneficialOwners, + name, + taxIdentifier, + beneficialOwnershipExemptionReason, + incorporationState, + industryCode, + website, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -5481,12 +5592,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && state == other.state && zip == other.zip && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + state == other.state && + zip == other.zip && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, state, zip, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, state, zip, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5643,12 +5760,12 @@ private constructor( return true } - return /* spotless:off */ other is AuthorizedPerson && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AuthorizedPerson && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -5803,7 +5920,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -5816,12 +5933,27 @@ private constructor( return true } - return /* spotless:off */ other is GovernmentAuthority && address == other.address && authorizedPersons == other.authorizedPersons && category == other.category && name == other.name && taxIdentifier == other.taxIdentifier && website == other.website && additionalProperties == other.additionalProperties /* spotless:on */ + return other is GovernmentAuthority && + address == other.address && + authorizedPersons == other.authorizedPersons && + category == other.category && + name == other.name && + taxIdentifier == other.taxIdentifier && + website == other.website && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, authorizedPersons, category, name, taxIdentifier, website, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + authorizedPersons, + category, + name, + taxIdentifier, + website, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -6636,12 +6768,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && state == other.state && zip == other.zip && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + state == other.state && + zip == other.zip && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, state, zip, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, state, zip, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -7138,7 +7276,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -7439,12 +7577,23 @@ private constructor( return true } - return /* spotless:off */ other is DriversLicense && expirationDate == other.expirationDate && fileId == other.fileId && state == other.state && backFileId == other.backFileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DriversLicense && + expirationDate == other.expirationDate && + fileId == other.fileId && + state == other.state && + backFileId == other.backFileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(expirationDate, fileId, state, backFileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + expirationDate, + fileId, + state, + backFileId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -7799,12 +7948,25 @@ private constructor( return true } - return /* spotless:off */ other is Other && country == other.country && description == other.description && fileId == other.fileId && backFileId == other.backFileId && expirationDate == other.expirationDate && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Other && + country == other.country && + description == other.description && + fileId == other.fileId && + backFileId == other.backFileId && + expirationDate == other.expirationDate && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, description, fileId, backFileId, expirationDate, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + country, + description, + fileId, + backFileId, + expirationDate, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -8064,12 +8226,16 @@ private constructor( return true } - return /* spotless:off */ other is Passport && country == other.country && expirationDate == other.expirationDate && fileId == other.fileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Passport && + country == other.country && + expirationDate == other.expirationDate && + fileId == other.fileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, expirationDate, fileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(country, expirationDate, fileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -8082,12 +8248,25 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && number == other.number && driversLicense == other.driversLicense && this.other == other.other && passport == other.passport && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + number == other.number && + driversLicense == other.driversLicense && + this.other == other.other && + passport == other.passport && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, number, driversLicense, other, passport, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + method, + number, + driversLicense, + other, + passport, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -8100,12 +8279,25 @@ private constructor( return true } - return /* spotless:off */ other is Individual && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && confirmedNoUsTaxId == other.confirmedNoUsTaxId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Individual && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + confirmedNoUsTaxId == other.confirmedNoUsTaxId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, confirmedNoUsTaxId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + dateOfBirth, + identification, + name, + confirmedNoUsTaxId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -8118,12 +8310,12 @@ private constructor( return true } - return /* spotless:off */ other is Joint && individuals == other.individuals && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Joint && + individuals == other.individuals && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(individuals, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -8757,12 +8949,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && state == other.state && zip == other.zip && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + state == other.state && + zip == other.zip && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, state, zip, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, state, zip, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -9251,7 +9449,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -9543,12 +9741,17 @@ private constructor( return true } - return /* spotless:off */ other is DriversLicense && expirationDate == other.expirationDate && fileId == other.fileId && state == other.state && backFileId == other.backFileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DriversLicense && + expirationDate == other.expirationDate && + fileId == other.fileId && + state == other.state && + backFileId == other.backFileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(expirationDate, fileId, state, backFileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(expirationDate, fileId, state, backFileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -9890,12 +10093,25 @@ private constructor( return true } - return /* spotless:off */ other is Other && country == other.country && description == other.description && fileId == other.fileId && backFileId == other.backFileId && expirationDate == other.expirationDate && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Other && + country == other.country && + description == other.description && + fileId == other.fileId && + backFileId == other.backFileId && + expirationDate == other.expirationDate && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, description, fileId, backFileId, expirationDate, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + country, + description, + fileId, + backFileId, + expirationDate, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -10150,12 +10366,16 @@ private constructor( return true } - return /* spotless:off */ other is Passport && country == other.country && expirationDate == other.expirationDate && fileId == other.fileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Passport && + country == other.country && + expirationDate == other.expirationDate && + fileId == other.fileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, expirationDate, fileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(country, expirationDate, fileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -10168,12 +10388,18 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && number == other.number && driversLicense == other.driversLicense && this.other == other.other && passport == other.passport && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + number == other.number && + driversLicense == other.driversLicense && + this.other == other.other && + passport == other.passport && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, number, driversLicense, other, passport, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(method, number, driversLicense, other, passport, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -10186,12 +10412,25 @@ private constructor( return true } - return /* spotless:off */ other is NaturalPerson && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && confirmedNoUsTaxId == other.confirmedNoUsTaxId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NaturalPerson && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + confirmedNoUsTaxId == other.confirmedNoUsTaxId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, confirmedNoUsTaxId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + dateOfBirth, + identification, + name, + confirmedNoUsTaxId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -10344,12 +10583,12 @@ private constructor( return true } - return /* spotless:off */ other is SupplementalDocument && fileId == other.fileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is SupplementalDocument && + fileId == other.fileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(fileId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -10678,7 +10917,7 @@ private constructor( return true } - return /* spotless:off */ other is Vendor && value == other.value /* spotless:on */ + return other is Vendor && value == other.value } override fun hashCode() = value.hashCode() @@ -10691,12 +10930,13 @@ private constructor( return true } - return /* spotless:off */ other is ThirdPartyVerification && reference == other.reference && vendor == other.vendor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ThirdPartyVerification && + reference == other.reference && + vendor == other.vendor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reference, vendor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -11467,12 +11707,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && state == other.state && zip == other.zip && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + state == other.state && + zip == other.zip && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, state, zip, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, state, zip, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -11613,7 +11859,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -11940,7 +12186,7 @@ private constructor( return true } - return /* spotless:off */ other is Structure && value == other.value /* spotless:on */ + return other is Structure && value == other.value } override fun hashCode() = value.hashCode() @@ -12619,12 +12865,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && state == other.state && zip == other.zip && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + state == other.state && + zip == other.zip && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, state, zip, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, state, zip, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -13132,7 +13384,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -13440,12 +13692,23 @@ private constructor( return true } - return /* spotless:off */ other is DriversLicense && expirationDate == other.expirationDate && fileId == other.fileId && state == other.state && backFileId == other.backFileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DriversLicense && + expirationDate == other.expirationDate && + fileId == other.fileId && + state == other.state && + backFileId == other.backFileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(expirationDate, fileId, state, backFileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + expirationDate, + fileId, + state, + backFileId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -13804,12 +14067,25 @@ private constructor( return true } - return /* spotless:off */ other is Other && country == other.country && description == other.description && fileId == other.fileId && backFileId == other.backFileId && expirationDate == other.expirationDate && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Other && + country == other.country && + description == other.description && + fileId == other.fileId && + backFileId == other.backFileId && + expirationDate == other.expirationDate && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, description, fileId, backFileId, expirationDate, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + country, + description, + fileId, + backFileId, + expirationDate, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -14073,12 +14349,16 @@ private constructor( return true } - return /* spotless:off */ other is Passport && country == other.country && expirationDate == other.expirationDate && fileId == other.fileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Passport && + country == other.country && + expirationDate == other.expirationDate && + fileId == other.fileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, expirationDate, fileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(country, expirationDate, fileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -14091,12 +14371,25 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && number == other.number && driversLicense == other.driversLicense && this.other == other.other && passport == other.passport && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + number == other.number && + driversLicense == other.driversLicense && + this.other == other.other && + passport == other.passport && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, number, driversLicense, other, passport, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + method, + number, + driversLicense, + other, + passport, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -14109,12 +14402,25 @@ private constructor( return true } - return /* spotless:off */ other is Individual && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && confirmedNoUsTaxId == other.confirmedNoUsTaxId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Individual && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + confirmedNoUsTaxId == other.confirmedNoUsTaxId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, confirmedNoUsTaxId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + dateOfBirth, + identification, + name, + confirmedNoUsTaxId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -14127,12 +14433,15 @@ private constructor( return true } - return /* spotless:off */ other is Trustee && structure == other.structure && individual == other.individual && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Trustee && + structure == other.structure && + individual == other.individual && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(structure, individual, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(structure, individual, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -14787,12 +15096,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && state == other.state && zip == other.zip && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + state == other.state && + zip == other.zip && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, state, zip, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, state, zip, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -15289,7 +15604,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -15590,12 +15905,23 @@ private constructor( return true } - return /* spotless:off */ other is DriversLicense && expirationDate == other.expirationDate && fileId == other.fileId && state == other.state && backFileId == other.backFileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DriversLicense && + expirationDate == other.expirationDate && + fileId == other.fileId && + state == other.state && + backFileId == other.backFileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(expirationDate, fileId, state, backFileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + expirationDate, + fileId, + state, + backFileId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -15950,12 +16276,25 @@ private constructor( return true } - return /* spotless:off */ other is Other && country == other.country && description == other.description && fileId == other.fileId && backFileId == other.backFileId && expirationDate == other.expirationDate && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Other && + country == other.country && + description == other.description && + fileId == other.fileId && + backFileId == other.backFileId && + expirationDate == other.expirationDate && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, description, fileId, backFileId, expirationDate, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + country, + description, + fileId, + backFileId, + expirationDate, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -16215,12 +16554,16 @@ private constructor( return true } - return /* spotless:off */ other is Passport && country == other.country && expirationDate == other.expirationDate && fileId == other.fileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Passport && + country == other.country && + expirationDate == other.expirationDate && + fileId == other.fileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, expirationDate, fileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(country, expirationDate, fileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -16233,12 +16576,25 @@ private constructor( return true } - return /* spotless:off */ other is Identification && method == other.method && number == other.number && driversLicense == other.driversLicense && this.other == other.other && passport == other.passport && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Identification && + method == other.method && + number == other.number && + driversLicense == other.driversLicense && + this.other == other.other && + passport == other.passport && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(method, number, driversLicense, other, passport, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + method, + number, + driversLicense, + other, + passport, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -16251,12 +16607,25 @@ private constructor( return true } - return /* spotless:off */ other is Grantor && address == other.address && dateOfBirth == other.dateOfBirth && identification == other.identification && name == other.name && confirmedNoUsTaxId == other.confirmedNoUsTaxId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Grantor && + address == other.address && + dateOfBirth == other.dateOfBirth && + identification == other.identification && + name == other.name && + confirmedNoUsTaxId == other.confirmedNoUsTaxId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, dateOfBirth, identification, name, confirmedNoUsTaxId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + dateOfBirth, + identification, + name, + confirmedNoUsTaxId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -16269,12 +16638,31 @@ private constructor( return true } - return /* spotless:off */ other is Trust && address == other.address && category == other.category && name == other.name && trustees == other.trustees && formationDocumentFileId == other.formationDocumentFileId && formationState == other.formationState && grantor == other.grantor && taxIdentifier == other.taxIdentifier && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Trust && + address == other.address && + category == other.category && + name == other.name && + trustees == other.trustees && + formationDocumentFileId == other.formationDocumentFileId && + formationState == other.formationState && + grantor == other.grantor && + taxIdentifier == other.taxIdentifier && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, category, name, trustees, formationDocumentFileId, formationState, grantor, taxIdentifier, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + address, + category, + name, + trustees, + formationDocumentFileId, + formationState, + grantor, + taxIdentifier, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -16287,10 +16675,13 @@ private constructor( return true } - return /* spotless:off */ other is EntityCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EntityCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "EntityCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPage.kt index 239d3f741..791ed51fc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is EntityListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is EntityListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "EntityListPage{service=$service, params=$params, response=$response}" } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageAsync.kt index 8c461a0c6..122f55861 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageAsync.kt @@ -131,10 +131,14 @@ private constructor( return true } - return /* spotless:off */ other is EntityListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is EntityListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "EntityListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageResponse.kt index fc39caa4d..f3cde6058 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is EntityListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is EntityListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListParams.kt index dbb4658eb..103212bb2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListParams.kt @@ -446,12 +446,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -700,7 +705,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -713,12 +718,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -730,10 +735,26 @@ private constructor( return true } - return /* spotless:off */ other is EntityListParams && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EntityListParams && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(createdAt, cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + createdAt, + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "EntityListParams{createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityRetrieveParams.kt index 4dee1ac73..353009a72 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityRetrieveParams.kt @@ -178,10 +178,13 @@ private constructor( return true } - return /* spotless:off */ other is EntityRetrieveParams && entityId == other.entityId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EntityRetrieveParams && + entityId == other.entityId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(entityId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(entityId, additionalHeaders, additionalQueryParams) override fun toString() = "EntityRetrieveParams{entityId=$entityId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateAddressParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateAddressParams.kt index e9954e06b..77b84ce8e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateAddressParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateAddressParams.kt @@ -413,12 +413,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && address == other.address && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + address == other.address && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(address, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -723,12 +723,18 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && state == other.state && zip == other.zip && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + state == other.state && + zip == other.zip && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, state, zip, line2, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, state, zip, line2, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -741,10 +747,15 @@ private constructor( return true } - return /* spotless:off */ other is EntityUpdateAddressParams && entityId == other.entityId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EntityUpdateAddressParams && + entityId == other.entityId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) override fun toString() = "EntityUpdateAddressParams{entityId=$entityId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateBeneficialOwnerAddressParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateBeneficialOwnerAddressParams.kt index 68848390c..031f9d6e2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateBeneficialOwnerAddressParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateBeneficialOwnerAddressParams.kt @@ -512,12 +512,15 @@ private constructor( return true } - return /* spotless:off */ other is Body && address == other.address && beneficialOwnerId == other.beneficialOwnerId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + address == other.address && + beneficialOwnerId == other.beneficialOwnerId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, beneficialOwnerId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(address, beneficialOwnerId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -854,12 +857,19 @@ private constructor( return true } - return /* spotless:off */ other is Address && country == other.country && line1 == other.line1 && city == other.city && line2 == other.line2 && state == other.state && zip == other.zip && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + country == other.country && + line1 == other.line1 && + city == other.city && + line2 == other.line2 && + state == other.state && + zip == other.zip && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(country, line1, city, line2, state, zip, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(country, line1, city, line2, state, zip, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -872,10 +882,15 @@ private constructor( return true } - return /* spotless:off */ other is EntityUpdateBeneficialOwnerAddressParams && entityId == other.entityId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EntityUpdateBeneficialOwnerAddressParams && + entityId == other.entityId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) override fun toString() = "EntityUpdateBeneficialOwnerAddressParams{entityId=$entityId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateIndustryCodeParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateIndustryCodeParams.kt index 451b54820..4cb7b4368 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateIndustryCodeParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateIndustryCodeParams.kt @@ -440,12 +440,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && industryCode == other.industryCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + industryCode == other.industryCode && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(industryCode, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -458,10 +458,15 @@ private constructor( return true } - return /* spotless:off */ other is EntityUpdateIndustryCodeParams && entityId == other.entityId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EntityUpdateIndustryCodeParams && + entityId == other.entityId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(entityId, body, additionalHeaders, additionalQueryParams) override fun toString() = "EntityUpdateIndustryCodeParams{entityId=$entityId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/events/Event.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/events/Event.kt index 9e0c9de27..e85c924fb 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/events/Event.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/events/Event.kt @@ -1488,7 +1488,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -1610,7 +1610,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1623,12 +1623,27 @@ private constructor( return true } - return /* spotless:off */ other is Event && id == other.id && associatedObjectId == other.associatedObjectId && associatedObjectType == other.associatedObjectType && category == other.category && createdAt == other.createdAt && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Event && + id == other.id && + associatedObjectId == other.associatedObjectId && + associatedObjectType == other.associatedObjectType && + category == other.category && + createdAt == other.createdAt && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, associatedObjectId, associatedObjectType, category, createdAt, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + associatedObjectId, + associatedObjectType, + category, + createdAt, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPage.kt index 30e5c2d80..826988ccc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is EventListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is EventListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "EventListPage{service=$service, params=$params, response=$response}" } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageAsync.kt index 6fcf08e79..141cb4a75 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageAsync.kt @@ -131,10 +131,14 @@ private constructor( return true } - return /* spotless:off */ other is EventListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is EventListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "EventListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageResponse.kt index 9a0563d56..3cd0e2c85 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is EventListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is EventListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListParams.kt index 7f87837fa..cf992d2b5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListParams.kt @@ -1509,7 +1509,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -1522,12 +1522,12 @@ private constructor( return true } - return /* spotless:off */ other is Category && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Category && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1694,12 +1694,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1712,10 +1717,26 @@ private constructor( return true } - return /* spotless:off */ other is EventListParams && associatedObjectId == other.associatedObjectId && category == other.category && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EventListParams && + associatedObjectId == other.associatedObjectId && + category == other.category && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(associatedObjectId, category, createdAt, cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + associatedObjectId, + category, + createdAt, + cursor, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "EventListParams{associatedObjectId=$associatedObjectId, category=$category, createdAt=$createdAt, cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventRetrieveParams.kt index 6e1120918..0e28dbe05 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventRetrieveParams.kt @@ -178,10 +178,13 @@ private constructor( return true } - return /* spotless:off */ other is EventRetrieveParams && eventId == other.eventId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EventRetrieveParams && + eventId == other.eventId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(eventId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(eventId, additionalHeaders, additionalQueryParams) override fun toString() = "EventRetrieveParams{eventId=$eventId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscription.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscription.kt index 9c3bf2eeb..b22d0e6bc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscription.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscription.kt @@ -1603,7 +1603,7 @@ private constructor( return true } - return /* spotless:off */ other is SelectedEventCategory && value == other.value /* spotless:on */ + return other is SelectedEventCategory && value == other.value } override fun hashCode() = value.hashCode() @@ -1764,7 +1764,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1889,7 +1889,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1902,12 +1902,31 @@ private constructor( return true } - return /* spotless:off */ other is EventSubscription && id == other.id && createdAt == other.createdAt && idempotencyKey == other.idempotencyKey && oauthConnectionId == other.oauthConnectionId && selectedEventCategory == other.selectedEventCategory && status == other.status && type == other.type && url == other.url && additionalProperties == other.additionalProperties /* spotless:on */ + return other is EventSubscription && + id == other.id && + createdAt == other.createdAt && + idempotencyKey == other.idempotencyKey && + oauthConnectionId == other.oauthConnectionId && + selectedEventCategory == other.selectedEventCategory && + status == other.status && + type == other.type && + url == other.url && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, createdAt, idempotencyKey, oauthConnectionId, selectedEventCategory, status, type, url, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + createdAt, + idempotencyKey, + oauthConnectionId, + selectedEventCategory, + status, + type, + url, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionCreateParams.kt index e4bbf9aea..4d265e86f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionCreateParams.kt @@ -640,12 +640,23 @@ private constructor( return true } - return /* spotless:off */ other is Body && url == other.url && oauthConnectionId == other.oauthConnectionId && selectedEventCategory == other.selectedEventCategory && sharedSecret == other.sharedSecret && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + url == other.url && + oauthConnectionId == other.oauthConnectionId && + selectedEventCategory == other.selectedEventCategory && + sharedSecret == other.sharedSecret && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(url, oauthConnectionId, selectedEventCategory, sharedSecret, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + url, + oauthConnectionId, + selectedEventCategory, + sharedSecret, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1771,7 +1782,7 @@ private constructor( return true } - return /* spotless:off */ other is SelectedEventCategory && value == other.value /* spotless:on */ + return other is SelectedEventCategory && value == other.value } override fun hashCode() = value.hashCode() @@ -1784,10 +1795,13 @@ private constructor( return true } - return /* spotless:off */ other is EventSubscriptionCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EventSubscriptionCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "EventSubscriptionCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPage.kt index 4d5098843..66719630c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is EventSubscriptionListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is EventSubscriptionListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "EventSubscriptionListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageAsync.kt index 95cd846ed..b6deb1f81 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageAsync.kt @@ -137,10 +137,14 @@ private constructor( return true } - return /* spotless:off */ other is EventSubscriptionListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is EventSubscriptionListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "EventSubscriptionListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageResponse.kt index a1344dcbf..7d8e5d7ef 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is EventSubscriptionListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is EventSubscriptionListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListParams.kt index 8f0e878a0..ea9aefc10 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListParams.kt @@ -231,10 +231,16 @@ private constructor( return true } - return /* spotless:off */ other is EventSubscriptionListParams && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EventSubscriptionListParams && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) override fun toString() = "EventSubscriptionListParams{cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionRetrieveParams.kt index d44e9b0ca..e58ff7ef3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionRetrieveParams.kt @@ -192,10 +192,14 @@ private constructor( return true } - return /* spotless:off */ other is EventSubscriptionRetrieveParams && eventSubscriptionId == other.eventSubscriptionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EventSubscriptionRetrieveParams && + eventSubscriptionId == other.eventSubscriptionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(eventSubscriptionId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(eventSubscriptionId, additionalHeaders, additionalQueryParams) override fun toString() = "EventSubscriptionRetrieveParams{eventSubscriptionId=$eventSubscriptionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionUpdateParams.kt index 8cfeacbb2..2b73345ce 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionUpdateParams.kt @@ -385,12 +385,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(status, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -532,7 +532,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -545,10 +545,15 @@ private constructor( return true } - return /* spotless:off */ other is EventSubscriptionUpdateParams && eventSubscriptionId == other.eventSubscriptionId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is EventSubscriptionUpdateParams && + eventSubscriptionId == other.eventSubscriptionId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(eventSubscriptionId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(eventSubscriptionId, body, additionalHeaders, additionalQueryParams) override fun toString() = "EventSubscriptionUpdateParams{eventSubscriptionId=$eventSubscriptionId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/Export.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/Export.kt index 37222d7c5..d72aa259b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/Export.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/Export.kt @@ -665,7 +665,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -814,7 +814,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -936,7 +936,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -949,12 +949,31 @@ private constructor( return true } - return /* spotless:off */ other is Export && id == other.id && category == other.category && createdAt == other.createdAt && fileDownloadUrl == other.fileDownloadUrl && fileId == other.fileId && idempotencyKey == other.idempotencyKey && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Export && + id == other.id && + category == other.category && + createdAt == other.createdAt && + fileDownloadUrl == other.fileDownloadUrl && + fileId == other.fileId && + idempotencyKey == other.idempotencyKey && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, category, createdAt, fileDownloadUrl, fileId, idempotencyKey, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + category, + createdAt, + fileDownloadUrl, + fileId, + idempotencyKey, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportCreateParams.kt index 475851ef8..c741d7474 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportCreateParams.kt @@ -807,13 +807,30 @@ private constructor( return true } - return /* spotless:off */ other is Body && category == other.category && accountStatementOfx == other.accountStatementOfx && balanceCsv == other.balanceCsv && bookkeepingAccountBalanceCsv == other.bookkeepingAccountBalanceCsv && entityCsv == other.entityCsv && transactionCsv == other.transactionCsv && vendorCsv == other.vendorCsv && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + category == other.category && + accountStatementOfx == other.accountStatementOfx && + balanceCsv == other.balanceCsv && + bookkeepingAccountBalanceCsv == other.bookkeepingAccountBalanceCsv && + entityCsv == other.entityCsv && + transactionCsv == other.transactionCsv && + vendorCsv == other.vendorCsv && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + category, + accountStatementOfx, + balanceCsv, + bookkeepingAccountBalanceCsv, + entityCsv, + transactionCsv, + vendorCsv, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, accountStatementOfx, balanceCsv, bookkeepingAccountBalanceCsv, entityCsv, transactionCsv, vendorCsv, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -991,7 +1008,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -1459,12 +1476,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1477,12 +1499,15 @@ private constructor( return true } - return /* spotless:off */ other is AccountStatementOfx && accountId == other.accountId && createdAt == other.createdAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountStatementOfx && + accountId == other.accountId && + createdAt == other.createdAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, createdAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountId, createdAt, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1965,12 +1990,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1983,12 +2013,16 @@ private constructor( return true } - return /* spotless:off */ other is BalanceCsv && accountId == other.accountId && createdAt == other.createdAt && programId == other.programId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BalanceCsv && + accountId == other.accountId && + createdAt == other.createdAt && + programId == other.programId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, createdAt, programId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountId, createdAt, programId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2454,12 +2488,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2472,12 +2511,15 @@ private constructor( return true } - return /* spotless:off */ other is BookkeepingAccountBalanceCsv && bookkeepingAccountId == other.bookkeepingAccountId && createdAt == other.createdAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BookkeepingAccountBalanceCsv && + bookkeepingAccountId == other.bookkeepingAccountId && + createdAt == other.createdAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(bookkeepingAccountId, createdAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(bookkeepingAccountId, createdAt, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2915,7 +2957,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -2928,12 +2970,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2945,12 +2987,12 @@ private constructor( return true } - return /* spotless:off */ other is EntityCsv && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is EntityCsv && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(status, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -3433,12 +3475,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3451,12 +3498,16 @@ private constructor( return true } - return /* spotless:off */ other is TransactionCsv && accountId == other.accountId && createdAt == other.createdAt && programId == other.programId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TransactionCsv && + accountId == other.accountId && + createdAt == other.createdAt && + programId == other.programId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, createdAt, programId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountId, createdAt, programId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3469,10 +3520,13 @@ private constructor( return true } - return /* spotless:off */ other is ExportCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ExportCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "ExportCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPage.kt index 9adf567aa..7f937393e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is ExportListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is ExportListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "ExportListPage{service=$service, params=$params, response=$response}" } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageAsync.kt index d2503c5bb..366c4f8a9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageAsync.kt @@ -131,10 +131,14 @@ private constructor( return true } - return /* spotless:off */ other is ExportListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is ExportListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "ExportListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageResponse.kt index ea096e29d..f99bbda44 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is ExportListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ExportListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListParams.kt index 09ce8db04..0175013e9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListParams.kt @@ -603,7 +603,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -616,12 +616,12 @@ private constructor( return true } - return /* spotless:off */ other is Category && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Category && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -788,12 +788,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1051,7 +1056,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -1064,12 +1069,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1081,10 +1086,28 @@ private constructor( return true } - return /* spotless:off */ other is ExportListParams && category == other.category && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ExportListParams && + category == other.category && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(category, createdAt, cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + category, + createdAt, + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "ExportListParams{category=$category, createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportRetrieveParams.kt index 14e18a84c..fb9666171 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportRetrieveParams.kt @@ -178,10 +178,13 @@ private constructor( return true } - return /* spotless:off */ other is ExportRetrieveParams && exportId == other.exportId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ExportRetrieveParams && + exportId == other.exportId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(exportId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(exportId, additionalHeaders, additionalQueryParams) override fun toString() = "ExportRetrieveParams{exportId=$exportId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccount.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccount.kt index 313587c4c..bec0138dd 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccount.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccount.kt @@ -684,7 +684,7 @@ private constructor( return true } - return /* spotless:off */ other is AccountHolder && value == other.value /* spotless:on */ + return other is AccountHolder && value == other.value } override fun hashCode() = value.hashCode() @@ -827,7 +827,7 @@ private constructor( return true } - return /* spotless:off */ other is Funding && value == other.value /* spotless:on */ + return other is Funding && value == other.value } override fun hashCode() = value.hashCode() @@ -961,7 +961,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1086,7 +1086,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1099,12 +1099,35 @@ private constructor( return true } - return /* spotless:off */ other is ExternalAccount && id == other.id && accountHolder == other.accountHolder && accountNumber == other.accountNumber && createdAt == other.createdAt && description == other.description && funding == other.funding && idempotencyKey == other.idempotencyKey && routingNumber == other.routingNumber && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ExternalAccount && + id == other.id && + accountHolder == other.accountHolder && + accountNumber == other.accountNumber && + createdAt == other.createdAt && + description == other.description && + funding == other.funding && + idempotencyKey == other.idempotencyKey && + routingNumber == other.routingNumber && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountHolder, accountNumber, createdAt, description, funding, idempotencyKey, routingNumber, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountHolder, + accountNumber, + createdAt, + description, + funding, + idempotencyKey, + routingNumber, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountCreateParams.kt index a7938b950..3dceeb459 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountCreateParams.kt @@ -692,12 +692,25 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountNumber == other.accountNumber && description == other.description && routingNumber == other.routingNumber && accountHolder == other.accountHolder && funding == other.funding && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountNumber == other.accountNumber && + description == other.description && + routingNumber == other.routingNumber && + accountHolder == other.accountHolder && + funding == other.funding && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumber, description, routingNumber, accountHolder, funding, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountNumber, + description, + routingNumber, + accountHolder, + funding, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -844,7 +857,7 @@ private constructor( return true } - return /* spotless:off */ other is AccountHolder && value == other.value /* spotless:on */ + return other is AccountHolder && value == other.value } override fun hashCode() = value.hashCode() @@ -987,7 +1000,7 @@ private constructor( return true } - return /* spotless:off */ other is Funding && value == other.value /* spotless:on */ + return other is Funding && value == other.value } override fun hashCode() = value.hashCode() @@ -1000,10 +1013,13 @@ private constructor( return true } - return /* spotless:off */ other is ExternalAccountCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ExternalAccountCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "ExternalAccountCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPage.kt index 4f43bf3db..d1737836c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPage.kt @@ -120,10 +120,13 @@ private constructor( return true } - return /* spotless:off */ other is ExternalAccountListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is ExternalAccountListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "ExternalAccountListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageAsync.kt index 521a6ec3f..116109af3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageAsync.kt @@ -134,10 +134,14 @@ private constructor( return true } - return /* spotless:off */ other is ExternalAccountListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is ExternalAccountListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "ExternalAccountListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageResponse.kt index 6b1a44ba5..252392d7c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is ExternalAccountListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ExternalAccountListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListParams.kt index 2aef318ae..fb07b0822 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListParams.kt @@ -499,7 +499,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -512,12 +512,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -529,10 +529,26 @@ private constructor( return true } - return /* spotless:off */ other is ExternalAccountListParams && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && routingNumber == other.routingNumber && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ExternalAccountListParams && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + routingNumber == other.routingNumber && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, idempotencyKey, limit, routingNumber, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + cursor, + idempotencyKey, + limit, + routingNumber, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "ExternalAccountListParams{cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, routingNumber=$routingNumber, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountRetrieveParams.kt index 60c26682a..7f89c3740 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountRetrieveParams.kt @@ -188,10 +188,14 @@ private constructor( return true } - return /* spotless:off */ other is ExternalAccountRetrieveParams && externalAccountId == other.externalAccountId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ExternalAccountRetrieveParams && + externalAccountId == other.externalAccountId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(externalAccountId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(externalAccountId, additionalHeaders, additionalQueryParams) override fun toString() = "ExternalAccountRetrieveParams{externalAccountId=$externalAccountId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountUpdateParams.kt index 69499209d..537a5ae5c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountUpdateParams.kt @@ -591,12 +591,17 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountHolder == other.accountHolder && description == other.description && funding == other.funding && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountHolder == other.accountHolder && + description == other.description && + funding == other.funding && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountHolder, description, funding, status, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountHolder, description, funding, status, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -734,7 +739,7 @@ private constructor( return true } - return /* spotless:off */ other is AccountHolder && value == other.value /* spotless:on */ + return other is AccountHolder && value == other.value } override fun hashCode() = value.hashCode() @@ -877,7 +882,7 @@ private constructor( return true } - return /* spotless:off */ other is Funding && value == other.value /* spotless:on */ + return other is Funding && value == other.value } override fun hashCode() = value.hashCode() @@ -1011,7 +1016,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1024,10 +1029,15 @@ private constructor( return true } - return /* spotless:off */ other is ExternalAccountUpdateParams && externalAccountId == other.externalAccountId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ExternalAccountUpdateParams && + externalAccountId == other.externalAccountId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(externalAccountId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(externalAccountId, body, additionalHeaders, additionalQueryParams) override fun toString() = "ExternalAccountUpdateParams{externalAccountId=$externalAccountId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/filelinks/FileLink.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/filelinks/FileLink.kt index d3822ca0d..b658c76bf 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/filelinks/FileLink.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/filelinks/FileLink.kt @@ -548,7 +548,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -561,12 +561,29 @@ private constructor( return true } - return /* spotless:off */ other is FileLink && id == other.id && createdAt == other.createdAt && expiresAt == other.expiresAt && fileId == other.fileId && idempotencyKey == other.idempotencyKey && type == other.type && unauthenticatedUrl == other.unauthenticatedUrl && additionalProperties == other.additionalProperties /* spotless:on */ + return other is FileLink && + id == other.id && + createdAt == other.createdAt && + expiresAt == other.expiresAt && + fileId == other.fileId && + idempotencyKey == other.idempotencyKey && + type == other.type && + unauthenticatedUrl == other.unauthenticatedUrl && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, createdAt, expiresAt, fileId, idempotencyKey, type, unauthenticatedUrl, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + createdAt, + expiresAt, + fileId, + idempotencyKey, + type, + unauthenticatedUrl, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/filelinks/FileLinkCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/filelinks/FileLinkCreateParams.kt index 650942548..411dce39e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/filelinks/FileLinkCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/filelinks/FileLinkCreateParams.kt @@ -466,12 +466,13 @@ private constructor( return true } - return /* spotless:off */ other is Body && fileId == other.fileId && expiresAt == other.expiresAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + fileId == other.fileId && + expiresAt == other.expiresAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(fileId, expiresAt, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -484,10 +485,13 @@ private constructor( return true } - return /* spotless:off */ other is FileLinkCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is FileLinkCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "FileLinkCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/File.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/File.kt index a08dbeb9d..8be96d150 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/File.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/File.kt @@ -625,7 +625,7 @@ private constructor( return true } - return /* spotless:off */ other is Direction && value == other.value /* spotless:on */ + return other is Direction && value == other.value } override fun hashCode() = value.hashCode() @@ -1083,7 +1083,7 @@ private constructor( return true } - return /* spotless:off */ other is Purpose && value == other.value /* spotless:on */ + return other is Purpose && value == other.value } override fun hashCode() = value.hashCode() @@ -1205,7 +1205,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1218,12 +1218,33 @@ private constructor( return true } - return /* spotless:off */ other is File && id == other.id && createdAt == other.createdAt && description == other.description && direction == other.direction && filename == other.filename && idempotencyKey == other.idempotencyKey && mimeType == other.mimeType && purpose == other.purpose && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is File && + id == other.id && + createdAt == other.createdAt && + description == other.description && + direction == other.direction && + filename == other.filename && + idempotencyKey == other.idempotencyKey && + mimeType == other.mimeType && + purpose == other.purpose && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, createdAt, description, direction, filename, idempotencyKey, mimeType, purpose, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + createdAt, + description, + direction, + filename, + idempotencyKey, + mimeType, + purpose, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileCreateParams.kt index 3dee4fca5..999bd1438 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileCreateParams.kt @@ -562,12 +562,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && file == other.file && purpose == other.purpose && description == other.description && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + file == other.file && + purpose == other.purpose && + description == other.description && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(file, purpose, description, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(file, purpose, description, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -895,7 +899,7 @@ private constructor( return true } - return /* spotless:off */ other is Purpose && value == other.value /* spotless:on */ + return other is Purpose && value == other.value } override fun hashCode() = value.hashCode() @@ -908,10 +912,13 @@ private constructor( return true } - return /* spotless:off */ other is FileCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is FileCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "FileCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPage.kt index b76a3c573..6980ae048 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is FileListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is FileListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "FileListPage{service=$service, params=$params, response=$response}" } diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageAsync.kt index 4e4f49778..1b7d4a96a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageAsync.kt @@ -131,10 +131,14 @@ private constructor( return true } - return /* spotless:off */ other is FileListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is FileListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "FileListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageResponse.kt index 118f4bf63..23039b2ff 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageResponse.kt @@ -220,12 +220,13 @@ private constructor( return true } - return /* spotless:off */ other is FileListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is FileListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListParams.kt index f7c41ad17..6ec447892 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListParams.kt @@ -446,12 +446,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1012,7 +1017,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -1025,12 +1030,12 @@ private constructor( return true } - return /* spotless:off */ other is Purpose && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Purpose && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1042,10 +1047,26 @@ private constructor( return true } - return /* spotless:off */ other is FileListParams && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && purpose == other.purpose && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is FileListParams && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + purpose == other.purpose && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(createdAt, cursor, idempotencyKey, limit, purpose, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + createdAt, + cursor, + idempotencyKey, + limit, + purpose, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "FileListParams{createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, purpose=$purpose, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileRetrieveParams.kt index 146b275a6..2d65863fe 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileRetrieveParams.kt @@ -178,10 +178,13 @@ private constructor( return true } - return /* spotless:off */ other is FileRetrieveParams && fileId == other.fileId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is FileRetrieveParams && + fileId == other.fileId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(fileId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(fileId, additionalHeaders, additionalQueryParams) override fun toString() = "FileRetrieveParams{fileId=$fileId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/groups/Group.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/groups/Group.kt index 01c347072..e585a7659 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/groups/Group.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/groups/Group.kt @@ -461,7 +461,7 @@ private constructor( return true } - return /* spotless:off */ other is AchDebitStatus && value == other.value /* spotless:on */ + return other is AchDebitStatus && value == other.value } override fun hashCode() = value.hashCode() @@ -599,7 +599,7 @@ private constructor( return true } - return /* spotless:off */ other is ActivationStatus && value == other.value /* spotless:on */ + return other is ActivationStatus && value == other.value } override fun hashCode() = value.hashCode() @@ -721,7 +721,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -734,12 +734,18 @@ private constructor( return true } - return /* spotless:off */ other is Group && id == other.id && achDebitStatus == other.achDebitStatus && activationStatus == other.activationStatus && createdAt == other.createdAt && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Group && + id == other.id && + achDebitStatus == other.achDebitStatus && + activationStatus == other.activationStatus && + createdAt == other.createdAt && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, achDebitStatus, activationStatus, createdAt, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(id, achDebitStatus, activationStatus, createdAt, type, additionalProperties) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/groups/GroupRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/groups/GroupRetrieveParams.kt index 86688139a..8fcfc07fb 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/groups/GroupRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/groups/GroupRetrieveParams.kt @@ -158,10 +158,12 @@ private constructor( return true } - return /* spotless:off */ other is GroupRetrieveParams && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is GroupRetrieveParams && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(additionalHeaders, additionalQueryParams) override fun toString() = "GroupRetrieveParams{additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransfer.kt index f3ecda205..d3ace4d99 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransfer.kt @@ -1557,12 +1557,15 @@ private constructor( return true } - return /* spotless:off */ other is Acceptance && acceptedAt == other.acceptedAt && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Acceptance && + acceptedAt == other.acceptedAt && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(acceptedAt, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(acceptedAt, transactionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1876,7 +1879,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -2210,12 +2213,14 @@ private constructor( return true } - return /* spotless:off */ other is Entry && paymentRelatedInformation == other.paymentRelatedInformation && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Entry && + paymentRelatedInformation == other.paymentRelatedInformation && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(paymentRelatedInformation, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(paymentRelatedInformation, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2228,12 +2233,12 @@ private constructor( return true } - return /* spotless:off */ other is Freeform && entries == other.entries && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Freeform && + entries == other.entries && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(entries, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2246,12 +2251,13 @@ private constructor( return true } - return /* spotless:off */ other is Addenda && category == other.category && freeform == other.freeform && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Addenda && + category == other.category && + freeform == other.freeform && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(category, freeform, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2779,7 +2785,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -2792,12 +2798,16 @@ private constructor( return true } - return /* spotless:off */ other is Decline && declinedAt == other.declinedAt && declinedTransactionId == other.declinedTransactionId && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Decline && + declinedAt == other.declinedAt && + declinedTransactionId == other.declinedTransactionId && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(declinedAt, declinedTransactionId, reason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(declinedAt, declinedTransactionId, reason, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2933,7 +2943,7 @@ private constructor( return true } - return /* spotless:off */ other is Direction && value == other.value /* spotless:on */ + return other is Direction && value == other.value } override fun hashCode() = value.hashCode() @@ -5046,7 +5056,7 @@ private constructor( return true } - return /* spotless:off */ other is ForeignExchangeIndicator && value == other.value /* spotless:on */ + return other is ForeignExchangeIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -5213,7 +5223,7 @@ private constructor( return true } - return /* spotless:off */ other is ForeignExchangeReferenceIndicator && value == other.value /* spotless:on */ + return other is ForeignExchangeReferenceIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -5520,7 +5530,7 @@ private constructor( return true } - return /* spotless:off */ other is InternationalTransactionTypeCode && value == other.value /* spotless:on */ + return other is InternationalTransactionTypeCode && value == other.value } override fun hashCode() = value.hashCode() @@ -5692,7 +5702,8 @@ private constructor( return true } - return /* spotless:off */ other is OriginatingDepositoryFinancialInstitutionIdQualifier && value == other.value /* spotless:on */ + return other is OriginatingDepositoryFinancialInstitutionIdQualifier && + value == other.value } override fun hashCode() = value.hashCode() @@ -5864,7 +5875,8 @@ private constructor( return true } - return /* spotless:off */ other is ReceivingDepositoryFinancialInstitutionIdQualifier && value == other.value /* spotless:on */ + return other is ReceivingDepositoryFinancialInstitutionIdQualifier && + value == other.value } override fun hashCode() = value.hashCode() @@ -5877,12 +5889,89 @@ private constructor( return true } - return /* spotless:off */ other is InternationalAddenda && destinationCountryCode == other.destinationCountryCode && destinationCurrencyCode == other.destinationCurrencyCode && foreignExchangeIndicator == other.foreignExchangeIndicator && foreignExchangeReference == other.foreignExchangeReference && foreignExchangeReferenceIndicator == other.foreignExchangeReferenceIndicator && foreignPaymentAmount == other.foreignPaymentAmount && foreignTraceNumber == other.foreignTraceNumber && internationalTransactionTypeCode == other.internationalTransactionTypeCode && originatingCurrencyCode == other.originatingCurrencyCode && originatingDepositoryFinancialInstitutionBranchCountry == other.originatingDepositoryFinancialInstitutionBranchCountry && originatingDepositoryFinancialInstitutionId == other.originatingDepositoryFinancialInstitutionId && originatingDepositoryFinancialInstitutionIdQualifier == other.originatingDepositoryFinancialInstitutionIdQualifier && originatingDepositoryFinancialInstitutionName == other.originatingDepositoryFinancialInstitutionName && originatorCity == other.originatorCity && originatorCountry == other.originatorCountry && originatorIdentification == other.originatorIdentification && originatorName == other.originatorName && originatorPostalCode == other.originatorPostalCode && originatorStateOrProvince == other.originatorStateOrProvince && originatorStreetAddress == other.originatorStreetAddress && paymentRelatedInformation == other.paymentRelatedInformation && paymentRelatedInformation2 == other.paymentRelatedInformation2 && receiverCity == other.receiverCity && receiverCountry == other.receiverCountry && receiverIdentificationNumber == other.receiverIdentificationNumber && receiverPostalCode == other.receiverPostalCode && receiverStateOrProvince == other.receiverStateOrProvince && receiverStreetAddress == other.receiverStreetAddress && receivingCompanyOrIndividualName == other.receivingCompanyOrIndividualName && receivingDepositoryFinancialInstitutionCountry == other.receivingDepositoryFinancialInstitutionCountry && receivingDepositoryFinancialInstitutionId == other.receivingDepositoryFinancialInstitutionId && receivingDepositoryFinancialInstitutionIdQualifier == other.receivingDepositoryFinancialInstitutionIdQualifier && receivingDepositoryFinancialInstitutionName == other.receivingDepositoryFinancialInstitutionName && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InternationalAddenda && + destinationCountryCode == other.destinationCountryCode && + destinationCurrencyCode == other.destinationCurrencyCode && + foreignExchangeIndicator == other.foreignExchangeIndicator && + foreignExchangeReference == other.foreignExchangeReference && + foreignExchangeReferenceIndicator == other.foreignExchangeReferenceIndicator && + foreignPaymentAmount == other.foreignPaymentAmount && + foreignTraceNumber == other.foreignTraceNumber && + internationalTransactionTypeCode == other.internationalTransactionTypeCode && + originatingCurrencyCode == other.originatingCurrencyCode && + originatingDepositoryFinancialInstitutionBranchCountry == + other.originatingDepositoryFinancialInstitutionBranchCountry && + originatingDepositoryFinancialInstitutionId == + other.originatingDepositoryFinancialInstitutionId && + originatingDepositoryFinancialInstitutionIdQualifier == + other.originatingDepositoryFinancialInstitutionIdQualifier && + originatingDepositoryFinancialInstitutionName == + other.originatingDepositoryFinancialInstitutionName && + originatorCity == other.originatorCity && + originatorCountry == other.originatorCountry && + originatorIdentification == other.originatorIdentification && + originatorName == other.originatorName && + originatorPostalCode == other.originatorPostalCode && + originatorStateOrProvince == other.originatorStateOrProvince && + originatorStreetAddress == other.originatorStreetAddress && + paymentRelatedInformation == other.paymentRelatedInformation && + paymentRelatedInformation2 == other.paymentRelatedInformation2 && + receiverCity == other.receiverCity && + receiverCountry == other.receiverCountry && + receiverIdentificationNumber == other.receiverIdentificationNumber && + receiverPostalCode == other.receiverPostalCode && + receiverStateOrProvince == other.receiverStateOrProvince && + receiverStreetAddress == other.receiverStreetAddress && + receivingCompanyOrIndividualName == other.receivingCompanyOrIndividualName && + receivingDepositoryFinancialInstitutionCountry == + other.receivingDepositoryFinancialInstitutionCountry && + receivingDepositoryFinancialInstitutionId == + other.receivingDepositoryFinancialInstitutionId && + receivingDepositoryFinancialInstitutionIdQualifier == + other.receivingDepositoryFinancialInstitutionIdQualifier && + receivingDepositoryFinancialInstitutionName == + other.receivingDepositoryFinancialInstitutionName && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(destinationCountryCode, destinationCurrencyCode, foreignExchangeIndicator, foreignExchangeReference, foreignExchangeReferenceIndicator, foreignPaymentAmount, foreignTraceNumber, internationalTransactionTypeCode, originatingCurrencyCode, originatingDepositoryFinancialInstitutionBranchCountry, originatingDepositoryFinancialInstitutionId, originatingDepositoryFinancialInstitutionIdQualifier, originatingDepositoryFinancialInstitutionName, originatorCity, originatorCountry, originatorIdentification, originatorName, originatorPostalCode, originatorStateOrProvince, originatorStreetAddress, paymentRelatedInformation, paymentRelatedInformation2, receiverCity, receiverCountry, receiverIdentificationNumber, receiverPostalCode, receiverStateOrProvince, receiverStreetAddress, receivingCompanyOrIndividualName, receivingDepositoryFinancialInstitutionCountry, receivingDepositoryFinancialInstitutionId, receivingDepositoryFinancialInstitutionIdQualifier, receivingDepositoryFinancialInstitutionName, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + destinationCountryCode, + destinationCurrencyCode, + foreignExchangeIndicator, + foreignExchangeReference, + foreignExchangeReferenceIndicator, + foreignPaymentAmount, + foreignTraceNumber, + internationalTransactionTypeCode, + originatingCurrencyCode, + originatingDepositoryFinancialInstitutionBranchCountry, + originatingDepositoryFinancialInstitutionId, + originatingDepositoryFinancialInstitutionIdQualifier, + originatingDepositoryFinancialInstitutionName, + originatorCity, + originatorCountry, + originatorIdentification, + originatorName, + originatorPostalCode, + originatorStateOrProvince, + originatorStreetAddress, + paymentRelatedInformation, + paymentRelatedInformation2, + receiverCity, + receiverCountry, + receiverIdentificationNumber, + receiverPostalCode, + receiverStateOrProvince, + receiverStreetAddress, + receivingCompanyOrIndividualName, + receivingDepositoryFinancialInstitutionCountry, + receivingDepositoryFinancialInstitutionId, + receivingDepositoryFinancialInstitutionIdQualifier, + receivingDepositoryFinancialInstitutionName, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -6109,12 +6198,15 @@ private constructor( return true } - return /* spotless:off */ other is NotificationOfChange && updatedAccountNumber == other.updatedAccountNumber && updatedRoutingNumber == other.updatedRoutingNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NotificationOfChange && + updatedAccountNumber == other.updatedAccountNumber && + updatedRoutingNumber == other.updatedRoutingNumber && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(updatedAccountNumber, updatedRoutingNumber, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(updatedAccountNumber, updatedRoutingNumber, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6454,7 +6546,7 @@ private constructor( return true } - return /* spotless:off */ other is SettlementSchedule && value == other.value /* spotless:on */ + return other is SettlementSchedule && value == other.value } override fun hashCode() = value.hashCode() @@ -6467,12 +6559,15 @@ private constructor( return true } - return /* spotless:off */ other is Settlement && settledAt == other.settledAt && settlementSchedule == other.settlementSchedule && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Settlement && + settledAt == other.settledAt && + settlementSchedule == other.settlementSchedule && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(settledAt, settlementSchedule, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(settledAt, settlementSchedule, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6739,7 +6834,7 @@ private constructor( return true } - return /* spotless:off */ other is StandardEntryClassCode && value == other.value /* spotless:on */ + return other is StandardEntryClassCode && value == other.value } override fun hashCode() = value.hashCode() @@ -6900,7 +6995,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -7423,7 +7518,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -7436,12 +7531,16 @@ private constructor( return true } - return /* spotless:off */ other is TransferReturn && reason == other.reason && returnedAt == other.returnedAt && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TransferReturn && + reason == other.reason && + returnedAt == other.returnedAt && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(reason, returnedAt, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(reason, returnedAt, transactionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -7566,7 +7665,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -7579,12 +7678,69 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransfer && id == other.id && acceptance == other.acceptance && accountId == other.accountId && accountNumberId == other.accountNumberId && addenda == other.addenda && amount == other.amount && automaticallyResolvesAt == other.automaticallyResolvesAt && createdAt == other.createdAt && decline == other.decline && direction == other.direction && effectiveDate == other.effectiveDate && internationalAddenda == other.internationalAddenda && notificationOfChange == other.notificationOfChange && originatorCompanyDescriptiveDate == other.originatorCompanyDescriptiveDate && originatorCompanyDiscretionaryData == other.originatorCompanyDiscretionaryData && originatorCompanyEntryDescription == other.originatorCompanyEntryDescription && originatorCompanyId == other.originatorCompanyId && originatorCompanyName == other.originatorCompanyName && originatorRoutingNumber == other.originatorRoutingNumber && receiverIdNumber == other.receiverIdNumber && receiverName == other.receiverName && settlement == other.settlement && standardEntryClassCode == other.standardEntryClassCode && status == other.status && traceNumber == other.traceNumber && transferReturn == other.transferReturn && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundAchTransfer && + id == other.id && + acceptance == other.acceptance && + accountId == other.accountId && + accountNumberId == other.accountNumberId && + addenda == other.addenda && + amount == other.amount && + automaticallyResolvesAt == other.automaticallyResolvesAt && + createdAt == other.createdAt && + decline == other.decline && + direction == other.direction && + effectiveDate == other.effectiveDate && + internationalAddenda == other.internationalAddenda && + notificationOfChange == other.notificationOfChange && + originatorCompanyDescriptiveDate == other.originatorCompanyDescriptiveDate && + originatorCompanyDiscretionaryData == other.originatorCompanyDiscretionaryData && + originatorCompanyEntryDescription == other.originatorCompanyEntryDescription && + originatorCompanyId == other.originatorCompanyId && + originatorCompanyName == other.originatorCompanyName && + originatorRoutingNumber == other.originatorRoutingNumber && + receiverIdNumber == other.receiverIdNumber && + receiverName == other.receiverName && + settlement == other.settlement && + standardEntryClassCode == other.standardEntryClassCode && + status == other.status && + traceNumber == other.traceNumber && + transferReturn == other.transferReturn && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, acceptance, accountId, accountNumberId, addenda, amount, automaticallyResolvesAt, createdAt, decline, direction, effectiveDate, internationalAddenda, notificationOfChange, originatorCompanyDescriptiveDate, originatorCompanyDiscretionaryData, originatorCompanyEntryDescription, originatorCompanyId, originatorCompanyName, originatorRoutingNumber, receiverIdNumber, receiverName, settlement, standardEntryClassCode, status, traceNumber, transferReturn, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + acceptance, + accountId, + accountNumberId, + addenda, + amount, + automaticallyResolvesAt, + createdAt, + decline, + direction, + effectiveDate, + internationalAddenda, + notificationOfChange, + originatorCompanyDescriptiveDate, + originatorCompanyDiscretionaryData, + originatorCompanyEntryDescription, + originatorCompanyId, + originatorCompanyName, + originatorRoutingNumber, + receiverIdNumber, + receiverName, + settlement, + standardEntryClassCode, + status, + traceNumber, + transferReturn, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferCreateNotificationOfChangeParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferCreateNotificationOfChangeParams.kt index 524b4fa6a..e176abeb1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferCreateNotificationOfChangeParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferCreateNotificationOfChangeParams.kt @@ -491,12 +491,15 @@ private constructor( return true } - return /* spotless:off */ other is Body && updatedAccountNumber == other.updatedAccountNumber && updatedRoutingNumber == other.updatedRoutingNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + updatedAccountNumber == other.updatedAccountNumber && + updatedRoutingNumber == other.updatedRoutingNumber && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(updatedAccountNumber, updatedRoutingNumber, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(updatedAccountNumber, updatedRoutingNumber, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -509,10 +512,15 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferCreateNotificationOfChangeParams && inboundAchTransferId == other.inboundAchTransferId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundAchTransferCreateNotificationOfChangeParams && + inboundAchTransferId == other.inboundAchTransferId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundAchTransferId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundAchTransferId, body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundAchTransferCreateNotificationOfChangeParams{inboundAchTransferId=$inboundAchTransferId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferDeclineParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferDeclineParams.kt index 72329d461..41a6ff5c5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferDeclineParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferDeclineParams.kt @@ -399,12 +399,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reason, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -689,7 +689,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -702,10 +702,15 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferDeclineParams && inboundAchTransferId == other.inboundAchTransferId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundAchTransferDeclineParams && + inboundAchTransferId == other.inboundAchTransferId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundAchTransferId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundAchTransferId, body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundAchTransferDeclineParams{inboundAchTransferId=$inboundAchTransferId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPage.kt index e5eaf41bf..744338c48 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is InboundAchTransferListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "InboundAchTransferListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageAsync.kt index a83a1ad45..72fa30da6 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is InboundAchTransferListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "InboundAchTransferListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageResponse.kt index 0b67a873d..871f51335 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundAchTransferListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListParams.kt index e528f26cf..acd9649ee 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListParams.kt @@ -455,12 +455,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -727,7 +732,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -740,12 +745,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -757,10 +762,28 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferListParams && accountId == other.accountId && accountNumberId == other.accountNumberId && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundAchTransferListParams && + accountId == other.accountId && + accountNumberId == other.accountNumberId && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, accountNumberId, createdAt, cursor, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + accountNumberId, + createdAt, + cursor, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "InboundAchTransferListParams{accountId=$accountId, accountNumberId=$accountNumberId, createdAt=$createdAt, cursor=$cursor, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferRetrieveParams.kt index f205e4f6a..55c26d163 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferRetrieveParams && inboundAchTransferId == other.inboundAchTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundAchTransferRetrieveParams && + inboundAchTransferId == other.inboundAchTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundAchTransferId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundAchTransferId, additionalHeaders, additionalQueryParams) override fun toString() = "InboundAchTransferRetrieveParams{inboundAchTransferId=$inboundAchTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferTransferReturnParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferTransferReturnParams.kt index a1a53958e..6e17d9e8f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferTransferReturnParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferTransferReturnParams.kt @@ -429,12 +429,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reason, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -701,7 +701,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -714,10 +714,15 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferTransferReturnParams && inboundAchTransferId == other.inboundAchTransferId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundAchTransferTransferReturnParams && + inboundAchTransferId == other.inboundAchTransferId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundAchTransferId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundAchTransferId, body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundAchTransferTransferReturnParams{inboundAchTransferId=$inboundAchTransferId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDeposit.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDeposit.kt index 068884cae..a965370fb 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDeposit.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDeposit.kt @@ -1511,7 +1511,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -1524,12 +1524,17 @@ private constructor( return true } - return /* spotless:off */ other is Adjustment && adjustedAt == other.adjustedAt && amount == other.amount && reason == other.reason && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Adjustment && + adjustedAt == other.adjustedAt && + amount == other.amount && + reason == other.reason && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(adjustedAt, amount, reason, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(adjustedAt, amount, reason, transactionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1699,7 +1704,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -2090,7 +2095,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -2103,12 +2108,16 @@ private constructor( return true } - return /* spotless:off */ other is DepositReturn && reason == other.reason && returnedAt == other.returnedAt && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DepositReturn && + reason == other.reason && + returnedAt == other.returnedAt && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(reason, returnedAt, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(reason, returnedAt, transactionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2258,7 +2267,7 @@ private constructor( return true } - return /* spotless:off */ other is PayeeNameAnalysis && value == other.value /* spotless:on */ + return other is PayeeNameAnalysis && value == other.value } override fun hashCode() = value.hashCode() @@ -2419,7 +2428,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -2544,7 +2553,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -2557,12 +2566,55 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDeposit && id == other.id && acceptedAt == other.acceptedAt && accountId == other.accountId && accountNumberId == other.accountNumberId && adjustments == other.adjustments && amount == other.amount && backImageFileId == other.backImageFileId && bankOfFirstDepositRoutingNumber == other.bankOfFirstDepositRoutingNumber && checkNumber == other.checkNumber && checkTransferId == other.checkTransferId && createdAt == other.createdAt && currency == other.currency && declinedAt == other.declinedAt && declinedTransactionId == other.declinedTransactionId && depositReturn == other.depositReturn && frontImageFileId == other.frontImageFileId && payeeNameAnalysis == other.payeeNameAnalysis && status == other.status && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundCheckDeposit && + id == other.id && + acceptedAt == other.acceptedAt && + accountId == other.accountId && + accountNumberId == other.accountNumberId && + adjustments == other.adjustments && + amount == other.amount && + backImageFileId == other.backImageFileId && + bankOfFirstDepositRoutingNumber == other.bankOfFirstDepositRoutingNumber && + checkNumber == other.checkNumber && + checkTransferId == other.checkTransferId && + createdAt == other.createdAt && + currency == other.currency && + declinedAt == other.declinedAt && + declinedTransactionId == other.declinedTransactionId && + depositReturn == other.depositReturn && + frontImageFileId == other.frontImageFileId && + payeeNameAnalysis == other.payeeNameAnalysis && + status == other.status && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, acceptedAt, accountId, accountNumberId, adjustments, amount, backImageFileId, bankOfFirstDepositRoutingNumber, checkNumber, checkTransferId, createdAt, currency, declinedAt, declinedTransactionId, depositReturn, frontImageFileId, payeeNameAnalysis, status, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + acceptedAt, + accountId, + accountNumberId, + adjustments, + amount, + backImageFileId, + bankOfFirstDepositRoutingNumber, + checkNumber, + checkTransferId, + createdAt, + currency, + declinedAt, + declinedTransactionId, + depositReturn, + frontImageFileId, + payeeNameAnalysis, + status, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositDeclineParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositDeclineParams.kt index 074e47b72..51d15c92b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositDeclineParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositDeclineParams.kt @@ -228,10 +228,20 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDepositDeclineParams && inboundCheckDepositId == other.inboundCheckDepositId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is InboundCheckDepositDeclineParams && + inboundCheckDepositId == other.inboundCheckDepositId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundCheckDepositId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + inboundCheckDepositId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "InboundCheckDepositDeclineParams{inboundCheckDepositId=$inboundCheckDepositId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPage.kt index a1da2bf6a..2a637fa54 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDepositListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is InboundCheckDepositListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "InboundCheckDepositListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageAsync.kt index a84d7bd7b..37b80f74e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDepositListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is InboundCheckDepositListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "InboundCheckDepositListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageResponse.kt index a72d85e45..f4ab15bf2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageResponse.kt @@ -227,12 +227,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDepositListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundCheckDepositListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListParams.kt index 105141b2c..6f239bee3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListParams.kt @@ -432,12 +432,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -450,10 +455,26 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDepositListParams && accountId == other.accountId && checkTransferId == other.checkTransferId && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundCheckDepositListParams && + accountId == other.accountId && + checkTransferId == other.checkTransferId && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, checkTransferId, createdAt, cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + checkTransferId, + createdAt, + cursor, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "InboundCheckDepositListParams{accountId=$accountId, checkTransferId=$checkTransferId, createdAt=$createdAt, cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositRetrieveParams.kt index b329b5962..2d41f30c5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDepositRetrieveParams && inboundCheckDepositId == other.inboundCheckDepositId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundCheckDepositRetrieveParams && + inboundCheckDepositId == other.inboundCheckDepositId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundCheckDepositId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundCheckDepositId, additionalHeaders, additionalQueryParams) override fun toString() = "InboundCheckDepositRetrieveParams{inboundCheckDepositId=$inboundCheckDepositId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositReturnParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositReturnParams.kt index a0475172e..02c83fbb8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositReturnParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositReturnParams.kt @@ -414,12 +414,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reason, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -579,7 +579,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -592,10 +592,15 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDepositReturnParams && inboundCheckDepositId == other.inboundCheckDepositId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundCheckDepositReturnParams && + inboundCheckDepositId == other.inboundCheckDepositId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundCheckDepositId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundCheckDepositId, body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundCheckDepositReturnParams{inboundCheckDepositId=$inboundCheckDepositId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItem.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItem.kt index 3809e844e..fa1f867b8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItem.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItem.kt @@ -750,12 +750,16 @@ private constructor( return true } - return /* spotless:off */ other is Check && amount == other.amount && backFileId == other.backFileId && frontFileId == other.frontFileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Check && + amount == other.amount && + backFileId == other.backFileId && + frontFileId == other.frontFileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, backFileId, frontFileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, backFileId, frontFileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -902,7 +906,7 @@ private constructor( return true } - return /* spotless:off */ other is RejectionReason && value == other.value /* spotless:on */ + return other is RejectionReason && value == other.value } override fun hashCode() = value.hashCode() @@ -1045,7 +1049,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1170,7 +1174,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1183,12 +1187,33 @@ private constructor( return true } - return /* spotless:off */ other is InboundMailItem && id == other.id && checks == other.checks && createdAt == other.createdAt && fileId == other.fileId && lockboxId == other.lockboxId && recipientName == other.recipientName && rejectionReason == other.rejectionReason && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundMailItem && + id == other.id && + checks == other.checks && + createdAt == other.createdAt && + fileId == other.fileId && + lockboxId == other.lockboxId && + recipientName == other.recipientName && + rejectionReason == other.rejectionReason && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, checks, createdAt, fileId, lockboxId, recipientName, rejectionReason, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + checks, + createdAt, + fileId, + lockboxId, + recipientName, + rejectionReason, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPage.kt index 4f1b4d68e..c31f2b7b9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPage.kt @@ -120,10 +120,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundMailItemListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is InboundMailItemListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "InboundMailItemListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageAsync.kt index 4a42efb12..fd626951e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageAsync.kt @@ -134,10 +134,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundMailItemListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is InboundMailItemListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "InboundMailItemListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageResponse.kt index 65955fca7..a37417b2f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundMailItemListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundMailItemListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListParams.kt index bb223db0b..e279ee5d2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListParams.kt @@ -414,12 +414,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -432,10 +437,17 @@ private constructor( return true } - return /* spotless:off */ other is InboundMailItemListParams && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && lockboxId == other.lockboxId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundMailItemListParams && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + lockboxId == other.lockboxId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(createdAt, cursor, limit, lockboxId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(createdAt, cursor, limit, lockboxId, additionalHeaders, additionalQueryParams) override fun toString() = "InboundMailItemListParams{createdAt=$createdAt, cursor=$cursor, limit=$limit, lockboxId=$lockboxId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemRetrieveParams.kt index 9da60ba24..4f258d6fd 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemRetrieveParams.kt @@ -188,10 +188,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundMailItemRetrieveParams && inboundMailItemId == other.inboundMailItemId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundMailItemRetrieveParams && + inboundMailItemId == other.inboundMailItemId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundMailItemId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundMailItemId, additionalHeaders, additionalQueryParams) override fun toString() = "InboundMailItemRetrieveParams{inboundMailItemId=$inboundMailItemId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransfer.kt index 847d9b064..9cd7c6769 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransfer.kt @@ -1004,12 +1004,15 @@ private constructor( return true } - return /* spotless:off */ other is Confirmation && confirmedAt == other.confirmedAt && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Confirmation && + confirmedAt == other.confirmedAt && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(confirmedAt, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(confirmedAt, transactionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1182,7 +1185,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -1584,7 +1587,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -1597,12 +1600,16 @@ private constructor( return true } - return /* spotless:off */ other is Decline && declinedAt == other.declinedAt && declinedTransactionId == other.declinedTransactionId && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Decline && + declinedAt == other.declinedAt && + declinedTransactionId == other.declinedTransactionId && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(declinedAt, declinedTransactionId, reason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(declinedAt, declinedTransactionId, reason, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1754,7 +1761,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1880,7 +1887,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1893,12 +1900,47 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransfer && id == other.id && accountId == other.accountId && accountNumberId == other.accountNumberId && amount == other.amount && confirmation == other.confirmation && createdAt == other.createdAt && creditorName == other.creditorName && currency == other.currency && debtorAccountNumber == other.debtorAccountNumber && debtorName == other.debtorName && debtorRoutingNumber == other.debtorRoutingNumber && decline == other.decline && remittanceInformation == other.remittanceInformation && status == other.status && transactionIdentification == other.transactionIdentification && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundRealTimePaymentsTransfer && + id == other.id && + accountId == other.accountId && + accountNumberId == other.accountNumberId && + amount == other.amount && + confirmation == other.confirmation && + createdAt == other.createdAt && + creditorName == other.creditorName && + currency == other.currency && + debtorAccountNumber == other.debtorAccountNumber && + debtorName == other.debtorName && + debtorRoutingNumber == other.debtorRoutingNumber && + decline == other.decline && + remittanceInformation == other.remittanceInformation && + status == other.status && + transactionIdentification == other.transactionIdentification && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, accountNumberId, amount, confirmation, createdAt, creditorName, currency, debtorAccountNumber, debtorName, debtorRoutingNumber, decline, remittanceInformation, status, transactionIdentification, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + accountNumberId, + amount, + confirmation, + createdAt, + creditorName, + currency, + debtorAccountNumber, + debtorName, + debtorRoutingNumber, + decline, + remittanceInformation, + status, + transactionIdentification, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPage.kt index 3f203a42d..3d0e406c2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPage.kt @@ -132,10 +132,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransferListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is InboundRealTimePaymentsTransferListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "InboundRealTimePaymentsTransferListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageAsync.kt index 423c7ee61..1f48912fc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageAsync.kt @@ -147,10 +147,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransferListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is InboundRealTimePaymentsTransferListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "InboundRealTimePaymentsTransferListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageResponse.kt index cdc886edc..953264fef 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageResponse.kt @@ -230,12 +230,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransferListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundRealTimePaymentsTransferListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListParams.kt index a96d4b3f5..c8c4576f2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListParams.kt @@ -444,12 +444,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -462,10 +467,26 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransferListParams && accountId == other.accountId && accountNumberId == other.accountNumberId && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundRealTimePaymentsTransferListParams && + accountId == other.accountId && + accountNumberId == other.accountNumberId && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, accountNumberId, createdAt, cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + accountNumberId, + createdAt, + cursor, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "InboundRealTimePaymentsTransferListParams{accountId=$accountId, accountNumberId=$accountNumberId, createdAt=$createdAt, cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferRetrieveParams.kt index 14a92e52b..64372ea40 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferRetrieveParams.kt @@ -198,10 +198,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransferRetrieveParams && inboundRealTimePaymentsTransferId == other.inboundRealTimePaymentsTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundRealTimePaymentsTransferRetrieveParams && + inboundRealTimePaymentsTransferId == other.inboundRealTimePaymentsTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundRealTimePaymentsTransferId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundRealTimePaymentsTransferId, additionalHeaders, additionalQueryParams) override fun toString() = "InboundRealTimePaymentsTransferRetrieveParams{inboundRealTimePaymentsTransferId=$inboundRealTimePaymentsTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequest.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequest.kt index 294679533..3ff076b8b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequest.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequest.kt @@ -1439,7 +1439,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1452,12 +1452,65 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireDrawdownRequest && id == other.id && amount == other.amount && beneficiaryAccountNumber == other.beneficiaryAccountNumber && beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && beneficiaryName == other.beneficiaryName && beneficiaryRoutingNumber == other.beneficiaryRoutingNumber && createdAt == other.createdAt && currency == other.currency && messageToRecipient == other.messageToRecipient && originatorAccountNumber == other.originatorAccountNumber && originatorAddressLine1 == other.originatorAddressLine1 && originatorAddressLine2 == other.originatorAddressLine2 && originatorAddressLine3 == other.originatorAddressLine3 && originatorName == other.originatorName && originatorRoutingNumber == other.originatorRoutingNumber && originatorToBeneficiaryInformationLine1 == other.originatorToBeneficiaryInformationLine1 && originatorToBeneficiaryInformationLine2 == other.originatorToBeneficiaryInformationLine2 && originatorToBeneficiaryInformationLine3 == other.originatorToBeneficiaryInformationLine3 && originatorToBeneficiaryInformationLine4 == other.originatorToBeneficiaryInformationLine4 && recipientAccountNumberId == other.recipientAccountNumberId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundWireDrawdownRequest && + id == other.id && + amount == other.amount && + beneficiaryAccountNumber == other.beneficiaryAccountNumber && + beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && + beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && + beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && + beneficiaryName == other.beneficiaryName && + beneficiaryRoutingNumber == other.beneficiaryRoutingNumber && + createdAt == other.createdAt && + currency == other.currency && + messageToRecipient == other.messageToRecipient && + originatorAccountNumber == other.originatorAccountNumber && + originatorAddressLine1 == other.originatorAddressLine1 && + originatorAddressLine2 == other.originatorAddressLine2 && + originatorAddressLine3 == other.originatorAddressLine3 && + originatorName == other.originatorName && + originatorRoutingNumber == other.originatorRoutingNumber && + originatorToBeneficiaryInformationLine1 == + other.originatorToBeneficiaryInformationLine1 && + originatorToBeneficiaryInformationLine2 == + other.originatorToBeneficiaryInformationLine2 && + originatorToBeneficiaryInformationLine3 == + other.originatorToBeneficiaryInformationLine3 && + originatorToBeneficiaryInformationLine4 == + other.originatorToBeneficiaryInformationLine4 && + recipientAccountNumberId == other.recipientAccountNumberId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, beneficiaryAccountNumber, beneficiaryAddressLine1, beneficiaryAddressLine2, beneficiaryAddressLine3, beneficiaryName, beneficiaryRoutingNumber, createdAt, currency, messageToRecipient, originatorAccountNumber, originatorAddressLine1, originatorAddressLine2, originatorAddressLine3, originatorName, originatorRoutingNumber, originatorToBeneficiaryInformationLine1, originatorToBeneficiaryInformationLine2, originatorToBeneficiaryInformationLine3, originatorToBeneficiaryInformationLine4, recipientAccountNumberId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + beneficiaryAccountNumber, + beneficiaryAddressLine1, + beneficiaryAddressLine2, + beneficiaryAddressLine3, + beneficiaryName, + beneficiaryRoutingNumber, + createdAt, + currency, + messageToRecipient, + originatorAccountNumber, + originatorAddressLine1, + originatorAddressLine2, + originatorAddressLine3, + originatorName, + originatorRoutingNumber, + originatorToBeneficiaryInformationLine1, + originatorToBeneficiaryInformationLine2, + originatorToBeneficiaryInformationLine3, + originatorToBeneficiaryInformationLine4, + recipientAccountNumberId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPage.kt index 0325f352d..30b8e63fa 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPage.kt @@ -126,10 +126,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireDrawdownRequestListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is InboundWireDrawdownRequestListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "InboundWireDrawdownRequestListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageAsync.kt index 37c662f90..c5072493c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageAsync.kt @@ -143,10 +143,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireDrawdownRequestListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is InboundWireDrawdownRequestListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "InboundWireDrawdownRequestListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageResponse.kt index 8fe4c8216..600bc4c32 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageResponse.kt @@ -229,12 +229,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireDrawdownRequestListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundWireDrawdownRequestListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListParams.kt index a9ccfc89c..5ce55c951 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListParams.kt @@ -211,10 +211,15 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireDrawdownRequestListParams && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundWireDrawdownRequestListParams && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cursor, limit, additionalHeaders, additionalQueryParams) override fun toString() = "InboundWireDrawdownRequestListParams{cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestRetrieveParams.kt index ab2324cf5..b089874e3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestRetrieveParams.kt @@ -197,10 +197,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireDrawdownRequestRetrieveParams && inboundWireDrawdownRequestId == other.inboundWireDrawdownRequestId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundWireDrawdownRequestRetrieveParams && + inboundWireDrawdownRequestId == other.inboundWireDrawdownRequestId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundWireDrawdownRequestId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundWireDrawdownRequestId, additionalHeaders, additionalQueryParams) override fun toString() = "InboundWireDrawdownRequestRetrieveParams{inboundWireDrawdownRequestId=$inboundWireDrawdownRequestId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransfer.kt index 6b71aa920..801d5427c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransfer.kt @@ -1828,7 +1828,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -1841,12 +1841,13 @@ private constructor( return true } - return /* spotless:off */ other is Reversal && reason == other.reason && reversedAt == other.reversedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Reversal && + reason == other.reason && + reversedAt == other.reversedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reason, reversedAt, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2007,7 +2008,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -2132,7 +2133,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -2145,12 +2146,73 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransfer && id == other.id && accountId == other.accountId && accountNumberId == other.accountNumberId && amount == other.amount && beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && beneficiaryName == other.beneficiaryName && beneficiaryReference == other.beneficiaryReference && createdAt == other.createdAt && description == other.description && inputMessageAccountabilityData == other.inputMessageAccountabilityData && originatorAddressLine1 == other.originatorAddressLine1 && originatorAddressLine2 == other.originatorAddressLine2 && originatorAddressLine3 == other.originatorAddressLine3 && originatorName == other.originatorName && originatorRoutingNumber == other.originatorRoutingNumber && originatorToBeneficiaryInformation == other.originatorToBeneficiaryInformation && originatorToBeneficiaryInformationLine1 == other.originatorToBeneficiaryInformationLine1 && originatorToBeneficiaryInformationLine2 == other.originatorToBeneficiaryInformationLine2 && originatorToBeneficiaryInformationLine3 == other.originatorToBeneficiaryInformationLine3 && originatorToBeneficiaryInformationLine4 == other.originatorToBeneficiaryInformationLine4 && reversal == other.reversal && senderReference == other.senderReference && status == other.status && type == other.type && wireDrawdownRequestId == other.wireDrawdownRequestId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundWireTransfer && + id == other.id && + accountId == other.accountId && + accountNumberId == other.accountNumberId && + amount == other.amount && + beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && + beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && + beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && + beneficiaryName == other.beneficiaryName && + beneficiaryReference == other.beneficiaryReference && + createdAt == other.createdAt && + description == other.description && + inputMessageAccountabilityData == other.inputMessageAccountabilityData && + originatorAddressLine1 == other.originatorAddressLine1 && + originatorAddressLine2 == other.originatorAddressLine2 && + originatorAddressLine3 == other.originatorAddressLine3 && + originatorName == other.originatorName && + originatorRoutingNumber == other.originatorRoutingNumber && + originatorToBeneficiaryInformation == other.originatorToBeneficiaryInformation && + originatorToBeneficiaryInformationLine1 == + other.originatorToBeneficiaryInformationLine1 && + originatorToBeneficiaryInformationLine2 == + other.originatorToBeneficiaryInformationLine2 && + originatorToBeneficiaryInformationLine3 == + other.originatorToBeneficiaryInformationLine3 && + originatorToBeneficiaryInformationLine4 == + other.originatorToBeneficiaryInformationLine4 && + reversal == other.reversal && + senderReference == other.senderReference && + status == other.status && + type == other.type && + wireDrawdownRequestId == other.wireDrawdownRequestId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, accountNumberId, amount, beneficiaryAddressLine1, beneficiaryAddressLine2, beneficiaryAddressLine3, beneficiaryName, beneficiaryReference, createdAt, description, inputMessageAccountabilityData, originatorAddressLine1, originatorAddressLine2, originatorAddressLine3, originatorName, originatorRoutingNumber, originatorToBeneficiaryInformation, originatorToBeneficiaryInformationLine1, originatorToBeneficiaryInformationLine2, originatorToBeneficiaryInformationLine3, originatorToBeneficiaryInformationLine4, reversal, senderReference, status, type, wireDrawdownRequestId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + accountNumberId, + amount, + beneficiaryAddressLine1, + beneficiaryAddressLine2, + beneficiaryAddressLine3, + beneficiaryName, + beneficiaryReference, + createdAt, + description, + inputMessageAccountabilityData, + originatorAddressLine1, + originatorAddressLine2, + originatorAddressLine3, + originatorName, + originatorRoutingNumber, + originatorToBeneficiaryInformation, + originatorToBeneficiaryInformationLine1, + originatorToBeneficiaryInformationLine2, + originatorToBeneficiaryInformationLine3, + originatorToBeneficiaryInformationLine4, + reversal, + senderReference, + status, + type, + wireDrawdownRequestId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPage.kt index ce62c1ad9..c6515db06 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransferListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is InboundWireTransferListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "InboundWireTransferListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageAsync.kt index a423b0ea1..9cfcb91d5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransferListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is InboundWireTransferListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "InboundWireTransferListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageResponse.kt index 923be2d4c..da0b0efda 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageResponse.kt @@ -227,12 +227,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransferListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundWireTransferListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListParams.kt index 3ba133fc9..ceed3cfb5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListParams.kt @@ -478,12 +478,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -750,7 +755,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -763,12 +768,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -780,10 +785,30 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransferListParams && accountId == other.accountId && accountNumberId == other.accountNumberId && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && status == other.status && wireDrawdownRequestId == other.wireDrawdownRequestId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundWireTransferListParams && + accountId == other.accountId && + accountNumberId == other.accountNumberId && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + status == other.status && + wireDrawdownRequestId == other.wireDrawdownRequestId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, accountNumberId, createdAt, cursor, limit, status, wireDrawdownRequestId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + accountNumberId, + createdAt, + cursor, + limit, + status, + wireDrawdownRequestId, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "InboundWireTransferListParams{accountId=$accountId, accountNumberId=$accountNumberId, createdAt=$createdAt, cursor=$cursor, limit=$limit, status=$status, wireDrawdownRequestId=$wireDrawdownRequestId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferRetrieveParams.kt index 7512432e2..d603a38cd 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransferRetrieveParams && inboundWireTransferId == other.inboundWireTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundWireTransferRetrieveParams && + inboundWireTransferId == other.inboundWireTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundWireTransferId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundWireTransferId, additionalHeaders, additionalQueryParams) override fun toString() = "InboundWireTransferRetrieveParams{inboundWireTransferId=$inboundWireTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferReverseParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferReverseParams.kt index 4ffe48146..f6b563bc3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferReverseParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferReverseParams.kt @@ -414,12 +414,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reason, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -552,7 +552,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -565,10 +565,15 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransferReverseParams && inboundWireTransferId == other.inboundWireTransferId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundWireTransferReverseParams && + inboundWireTransferId == other.inboundWireTransferId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundWireTransferId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(inboundWireTransferId, body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundWireTransferReverseParams{inboundWireTransferId=$inboundWireTransferId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollment.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollment.kt index 4ceb3b389..519359cc3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollment.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollment.kt @@ -573,7 +573,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -698,7 +698,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -711,12 +711,29 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiAccountEnrollment && id == other.id && accountId == other.accountId && createdAt == other.createdAt && idempotencyKey == other.idempotencyKey && intrafiId == other.intrafiId && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is IntrafiAccountEnrollment && + id == other.id && + accountId == other.accountId && + createdAt == other.createdAt && + idempotencyKey == other.idempotencyKey && + intrafiId == other.intrafiId && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, createdAt, idempotencyKey, intrafiId, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + createdAt, + idempotencyKey, + intrafiId, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentCreateParams.kt index 2112ab057..a91caa048 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentCreateParams.kt @@ -470,12 +470,15 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && emailAddress == other.emailAddress && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + emailAddress == other.emailAddress && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, emailAddress, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountId, emailAddress, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -488,10 +491,13 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiAccountEnrollmentCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is IntrafiAccountEnrollmentCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "IntrafiAccountEnrollmentCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPage.kt index c99272338..f39354f51 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPage.kt @@ -124,10 +124,13 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiAccountEnrollmentListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is IntrafiAccountEnrollmentListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "IntrafiAccountEnrollmentListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageAsync.kt index 395f531d7..e86ab9e2f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageAsync.kt @@ -141,10 +141,14 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiAccountEnrollmentListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is IntrafiAccountEnrollmentListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "IntrafiAccountEnrollmentListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageResponse.kt index 5526ae91f..39e2b2161 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageResponse.kt @@ -229,12 +229,13 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiAccountEnrollmentListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is IntrafiAccountEnrollmentListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListParams.kt index b79aabb32..c16c2a8e5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListParams.kt @@ -528,7 +528,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -541,12 +541,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -558,10 +558,26 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiAccountEnrollmentListParams && accountId == other.accountId && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is IntrafiAccountEnrollmentListParams && + accountId == other.accountId && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "IntrafiAccountEnrollmentListParams{accountId=$accountId, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentRetrieveParams.kt index 39dabcefa..118804382 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentRetrieveParams.kt @@ -196,10 +196,14 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiAccountEnrollmentRetrieveParams && intrafiAccountEnrollmentId == other.intrafiAccountEnrollmentId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is IntrafiAccountEnrollmentRetrieveParams && + intrafiAccountEnrollmentId == other.intrafiAccountEnrollmentId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(intrafiAccountEnrollmentId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(intrafiAccountEnrollmentId, additionalHeaders, additionalQueryParams) override fun toString() = "IntrafiAccountEnrollmentRetrieveParams{intrafiAccountEnrollmentId=$intrafiAccountEnrollmentId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentUnenrollParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentUnenrollParams.kt index ccd2adc1b..659349c46 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentUnenrollParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentUnenrollParams.kt @@ -231,10 +231,20 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiAccountEnrollmentUnenrollParams && intrafiAccountEnrollmentId == other.intrafiAccountEnrollmentId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is IntrafiAccountEnrollmentUnenrollParams && + intrafiAccountEnrollmentId == other.intrafiAccountEnrollmentId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(intrafiAccountEnrollmentId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + intrafiAccountEnrollmentId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "IntrafiAccountEnrollmentUnenrollParams{intrafiAccountEnrollmentId=$intrafiAccountEnrollmentId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafibalances/IntrafiBalance.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafibalances/IntrafiBalance.kt index 7454a1315..1158954b5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafibalances/IntrafiBalance.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafibalances/IntrafiBalance.kt @@ -883,12 +883,13 @@ private constructor( return true } - return /* spotless:off */ other is BankLocation && city == other.city && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is BankLocation && + city == other.city && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(city, state, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -901,12 +902,25 @@ private constructor( return true } - return /* spotless:off */ other is Balance && id == other.id && balance == other.balance && bank == other.bank && bankLocation == other.bankLocation && fdicCertificateNumber == other.fdicCertificateNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Balance && + id == other.id && + balance == other.balance && + bank == other.bank && + bankLocation == other.bankLocation && + fdicCertificateNumber == other.fdicCertificateNumber && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, balance, bank, bankLocation, fdicCertificateNumber, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + balance, + bank, + bankLocation, + fdicCertificateNumber, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1076,7 +1090,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -1201,7 +1215,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1214,12 +1228,27 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiBalance && id == other.id && balances == other.balances && currency == other.currency && effectiveDate == other.effectiveDate && totalBalance == other.totalBalance && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is IntrafiBalance && + id == other.id && + balances == other.balances && + currency == other.currency && + effectiveDate == other.effectiveDate && + totalBalance == other.totalBalance && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, balances, currency, effectiveDate, totalBalance, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + balances, + currency, + effectiveDate, + totalBalance, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafibalances/IntrafiBalanceIntrafiBalanceParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafibalances/IntrafiBalanceIntrafiBalanceParams.kt index f455cfe4b..e64ff0d0a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafibalances/IntrafiBalanceIntrafiBalanceParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafibalances/IntrafiBalanceIntrafiBalanceParams.kt @@ -190,10 +190,13 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiBalanceIntrafiBalanceParams && accountId == other.accountId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is IntrafiBalanceIntrafiBalanceParams && + accountId == other.accountId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(accountId, additionalHeaders, additionalQueryParams) override fun toString() = "IntrafiBalanceIntrafiBalanceParams{accountId=$accountId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusion.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusion.kt index 708cf215d..7f89f2ac6 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusion.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusion.kt @@ -696,7 +696,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -821,7 +821,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -834,12 +834,35 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiExclusion && id == other.id && bankName == other.bankName && createdAt == other.createdAt && entityId == other.entityId && excludedAt == other.excludedAt && fdicCertificateNumber == other.fdicCertificateNumber && idempotencyKey == other.idempotencyKey && status == other.status && submittedAt == other.submittedAt && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is IntrafiExclusion && + id == other.id && + bankName == other.bankName && + createdAt == other.createdAt && + entityId == other.entityId && + excludedAt == other.excludedAt && + fdicCertificateNumber == other.fdicCertificateNumber && + idempotencyKey == other.idempotencyKey && + status == other.status && + submittedAt == other.submittedAt && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, bankName, createdAt, entityId, excludedAt, fdicCertificateNumber, idempotencyKey, status, submittedAt, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + bankName, + createdAt, + entityId, + excludedAt, + fdicCertificateNumber, + idempotencyKey, + status, + submittedAt, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionArchiveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionArchiveParams.kt index 4e4c08284..ba0390101 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionArchiveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionArchiveParams.kt @@ -233,10 +233,20 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiExclusionArchiveParams && intrafiExclusionId == other.intrafiExclusionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is IntrafiExclusionArchiveParams && + intrafiExclusionId == other.intrafiExclusionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(intrafiExclusionId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + intrafiExclusionId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "IntrafiExclusionArchiveParams{intrafiExclusionId=$intrafiExclusionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionCreateParams.kt index 34c7e305a..2b358d0a9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionCreateParams.kt @@ -457,12 +457,13 @@ private constructor( return true } - return /* spotless:off */ other is Body && bankName == other.bankName && entityId == other.entityId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + bankName == other.bankName && + entityId == other.entityId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(bankName, entityId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -475,10 +476,13 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiExclusionCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is IntrafiExclusionCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "IntrafiExclusionCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPage.kt index c42a2727f..5b48cf044 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiExclusionListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is IntrafiExclusionListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "IntrafiExclusionListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageAsync.kt index cbbf19bd1..403a0ce46 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageAsync.kt @@ -137,10 +137,14 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiExclusionListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is IntrafiExclusionListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "IntrafiExclusionListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageResponse.kt index f5f1e609d..2a16558aa 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiExclusionListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is IntrafiExclusionListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListParams.kt index 882e3da20..023d00af2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListParams.kt @@ -245,10 +245,24 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiExclusionListParams && cursor == other.cursor && entityId == other.entityId && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is IntrafiExclusionListParams && + cursor == other.cursor && + entityId == other.entityId && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, entityId, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + cursor, + entityId, + idempotencyKey, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "IntrafiExclusionListParams{cursor=$cursor, entityId=$entityId, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionRetrieveParams.kt index 88ce694be..00da6525e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionRetrieveParams.kt @@ -190,10 +190,14 @@ private constructor( return true } - return /* spotless:off */ other is IntrafiExclusionRetrieveParams && intrafiExclusionId == other.intrafiExclusionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is IntrafiExclusionRetrieveParams && + intrafiExclusionId == other.intrafiExclusionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(intrafiExclusionId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(intrafiExclusionId, additionalHeaders, additionalQueryParams) override fun toString() = "IntrafiExclusionRetrieveParams{intrafiExclusionId=$intrafiExclusionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/Lockbox.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/Lockbox.kt index 746ffd7f6..8b94c46a5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/Lockbox.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/Lockbox.kt @@ -848,12 +848,19 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && line2 == other.line2 && postalCode == other.postalCode && recipient == other.recipient && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + line2 == other.line2 && + postalCode == other.postalCode && + recipient == other.recipient && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, line2, postalCode, recipient, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, line1, line2, postalCode, recipient, state, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -987,7 +994,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1109,7 +1116,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1122,12 +1129,33 @@ private constructor( return true } - return /* spotless:off */ other is Lockbox && id == other.id && accountId == other.accountId && address == other.address && createdAt == other.createdAt && description == other.description && idempotencyKey == other.idempotencyKey && recipientName == other.recipientName && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Lockbox && + id == other.id && + accountId == other.accountId && + address == other.address && + createdAt == other.createdAt && + description == other.description && + idempotencyKey == other.idempotencyKey && + recipientName == other.recipientName && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, address, createdAt, description, idempotencyKey, recipientName, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + address, + createdAt, + description, + idempotencyKey, + recipientName, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxCreateParams.kt index 027aa7008..a6790e622 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxCreateParams.kt @@ -531,12 +531,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && description == other.description && recipientName == other.recipientName && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + description == other.description && + recipientName == other.recipientName && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, description, recipientName, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountId, description, recipientName, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -549,10 +553,13 @@ private constructor( return true } - return /* spotless:off */ other is LockboxCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is LockboxCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "LockboxCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPage.kt index 3e080ad5c..ade6e2650 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is LockboxListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is LockboxListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "LockboxListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageAsync.kt index 481225194..10e81908f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is LockboxListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is LockboxListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "LockboxListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageResponse.kt index 8b97f54b4..a4626b116 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is LockboxListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is LockboxListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListParams.kt index 7b6a09b3c..7c0c67caa 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListParams.kt @@ -436,12 +436,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -454,10 +459,26 @@ private constructor( return true } - return /* spotless:off */ other is LockboxListParams && accountId == other.accountId && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is LockboxListParams && + accountId == other.accountId && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, createdAt, cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + createdAt, + cursor, + idempotencyKey, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "LockboxListParams{accountId=$accountId, createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxRetrieveParams.kt index fafe77f63..133aeaecd 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxRetrieveParams.kt @@ -182,10 +182,13 @@ private constructor( return true } - return /* spotless:off */ other is LockboxRetrieveParams && lockboxId == other.lockboxId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is LockboxRetrieveParams && + lockboxId == other.lockboxId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(lockboxId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(lockboxId, additionalHeaders, additionalQueryParams) override fun toString() = "LockboxRetrieveParams{lockboxId=$lockboxId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxUpdateParams.kt index 3986c4007..3c70f2f3c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxUpdateParams.kt @@ -517,12 +517,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && description == other.description && recipientName == other.recipientName && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + description == other.description && + recipientName == other.recipientName && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(description, recipientName, status, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(description, recipientName, status, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -656,7 +660,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -669,10 +673,15 @@ private constructor( return true } - return /* spotless:off */ other is LockboxUpdateParams && lockboxId == other.lockboxId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is LockboxUpdateParams && + lockboxId == other.lockboxId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(lockboxId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(lockboxId, body, additionalHeaders, additionalQueryParams) override fun toString() = "LockboxUpdateParams{lockboxId=$lockboxId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplication.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplication.kt index 543485257..062743cb5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplication.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplication.kt @@ -530,7 +530,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -655,7 +655,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -668,12 +668,20 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplication && id == other.id && clientId == other.clientId && createdAt == other.createdAt && deletedAt == other.deletedAt && name == other.name && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthApplication && + id == other.id && + clientId == other.clientId && + createdAt == other.createdAt && + deletedAt == other.deletedAt && + name == other.name && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, clientId, createdAt, deletedAt, name, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(id, clientId, createdAt, deletedAt, name, status, type, additionalProperties) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPage.kt index 51fbb240e..57d7b2fe0 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplicationListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is OAuthApplicationListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "OAuthApplicationListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageAsync.kt index 76c1011c7..6eb16dbc4 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageAsync.kt @@ -137,10 +137,14 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplicationListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is OAuthApplicationListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "OAuthApplicationListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageResponse.kt index bf87248b5..283ce206b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplicationListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthApplicationListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListParams.kt index 0e9ea42c2..bebcce7b3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListParams.kt @@ -424,12 +424,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -669,7 +674,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -682,12 +687,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -699,10 +704,17 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplicationListParams && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is OAuthApplicationListParams && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(createdAt, cursor, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(createdAt, cursor, limit, status, additionalHeaders, additionalQueryParams) override fun toString() = "OAuthApplicationListParams{createdAt=$createdAt, cursor=$cursor, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationRetrieveParams.kt index 6c953fe7c..121d9fb0e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationRetrieveParams.kt @@ -190,10 +190,14 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplicationRetrieveParams && oauthApplicationId == other.oauthApplicationId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is OAuthApplicationRetrieveParams && + oauthApplicationId == other.oauthApplicationId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(oauthApplicationId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(oauthApplicationId, additionalHeaders, additionalQueryParams) override fun toString() = "OAuthApplicationRetrieveParams{oauthApplicationId=$oauthApplicationId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnection.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnection.kt index f4db74ba9..ce843c306 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnection.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnection.kt @@ -533,7 +533,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -658,7 +658,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -671,12 +671,29 @@ private constructor( return true } - return /* spotless:off */ other is OAuthConnection && id == other.id && createdAt == other.createdAt && deletedAt == other.deletedAt && groupId == other.groupId && oauthApplicationId == other.oauthApplicationId && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthConnection && + id == other.id && + createdAt == other.createdAt && + deletedAt == other.deletedAt && + groupId == other.groupId && + oauthApplicationId == other.oauthApplicationId && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, createdAt, deletedAt, groupId, oauthApplicationId, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + createdAt, + deletedAt, + groupId, + oauthApplicationId, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPage.kt index f409ea802..e7f4364b1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPage.kt @@ -120,10 +120,13 @@ private constructor( return true } - return /* spotless:off */ other is OAuthConnectionListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is OAuthConnectionListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "OAuthConnectionListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageAsync.kt index 5d49e660d..9ca53e4c5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageAsync.kt @@ -134,10 +134,14 @@ private constructor( return true } - return /* spotless:off */ other is OAuthConnectionListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is OAuthConnectionListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "OAuthConnectionListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageResponse.kt index 5158d873d..6c2c40ba9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is OAuthConnectionListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthConnectionListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListParams.kt index 69c9bdfe2..7ea9cfbc1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListParams.kt @@ -479,7 +479,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -492,12 +492,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -509,10 +509,24 @@ private constructor( return true } - return /* spotless:off */ other is OAuthConnectionListParams && cursor == other.cursor && limit == other.limit && oauthApplicationId == other.oauthApplicationId && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is OAuthConnectionListParams && + cursor == other.cursor && + limit == other.limit && + oauthApplicationId == other.oauthApplicationId && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, limit, oauthApplicationId, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + cursor, + limit, + oauthApplicationId, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "OAuthConnectionListParams{cursor=$cursor, limit=$limit, oauthApplicationId=$oauthApplicationId, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionRetrieveParams.kt index 183275273..0f33df1be 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionRetrieveParams.kt @@ -188,10 +188,14 @@ private constructor( return true } - return /* spotless:off */ other is OAuthConnectionRetrieveParams && oauthConnectionId == other.oauthConnectionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is OAuthConnectionRetrieveParams && + oauthConnectionId == other.oauthConnectionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(oauthConnectionId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(oauthConnectionId, additionalHeaders, additionalQueryParams) override fun toString() = "OAuthConnectionRetrieveParams{oauthConnectionId=$oauthConnectionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthtokens/OAuthToken.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthtokens/OAuthToken.kt index 15043ca5f..20d969040 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthtokens/OAuthToken.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthtokens/OAuthToken.kt @@ -360,7 +360,7 @@ private constructor( return true } - return /* spotless:off */ other is TokenType && value == other.value /* spotless:on */ + return other is TokenType && value == other.value } override fun hashCode() = value.hashCode() @@ -484,7 +484,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -497,12 +497,16 @@ private constructor( return true } - return /* spotless:off */ other is OAuthToken && accessToken == other.accessToken && tokenType == other.tokenType && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthToken && + accessToken == other.accessToken && + tokenType == other.tokenType && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accessToken, tokenType, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accessToken, tokenType, type, additionalProperties) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthtokens/OAuthTokenCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthtokens/OAuthTokenCreateParams.kt index f05b1df69..040d138bf 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthtokens/OAuthTokenCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthtokens/OAuthTokenCreateParams.kt @@ -692,13 +692,26 @@ private constructor( return true } - return /* spotless:off */ other is Body && grantType == other.grantType && clientId == other.clientId && clientSecret == other.clientSecret && code == other.code && productionToken == other.productionToken && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + grantType == other.grantType && + clientId == other.clientId && + clientSecret == other.clientSecret && + code == other.code && + productionToken == other.productionToken && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + grantType, + clientId, + clientSecret, + code, + productionToken, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(grantType, clientId, clientSecret, code, productionToken, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -836,7 +849,7 @@ private constructor( return true } - return /* spotless:off */ other is GrantType && value == other.value /* spotless:on */ + return other is GrantType && value == other.value } override fun hashCode() = value.hashCode() @@ -849,10 +862,13 @@ private constructor( return true } - return /* spotless:off */ other is OAuthTokenCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is OAuthTokenCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "OAuthTokenCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransaction.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransaction.kt index 90d9123f6..26f5f518f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransaction.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransaction.kt @@ -815,7 +815,7 @@ private constructor( return true } - return /* spotless:off */ other is BalanceImpact && value == other.value /* spotless:on */ + return other is BalanceImpact && value == other.value } override fun hashCode() = value.hashCode() @@ -988,7 +988,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -1133,7 +1133,7 @@ private constructor( return true } - return /* spotless:off */ other is RouteType && value == other.value /* spotless:on */ + return other is RouteType && value == other.value } override fun hashCode() = value.hashCode() @@ -2430,7 +2430,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -2443,12 +2443,16 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferInstruction && amount == other.amount && currency == other.currency && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountTransferInstruction && + amount == other.amount && + currency == other.currency && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, transferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2657,12 +2661,15 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferInstruction && amount == other.amount && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchTransferInstruction && + amount == other.amount && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, transferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4316,7 +4323,7 @@ private constructor( return true } - return /* spotless:off */ other is Actioner && value == other.value /* spotless:on */ + return other is Actioner && value == other.value } override fun hashCode() = value.hashCode() @@ -5077,12 +5084,15 @@ private constructor( return true } - return /* spotless:off */ other is Clinic && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Clinic && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5294,12 +5304,15 @@ private constructor( return true } - return /* spotless:off */ other is Dental && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Dental && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5511,12 +5524,15 @@ private constructor( return true } - return /* spotless:off */ other is Prescription && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Prescription && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5728,12 +5744,15 @@ private constructor( return true } - return /* spotless:off */ other is Surcharge && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Surcharge && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5949,12 +5968,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalCumulative && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalCumulative && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6168,12 +6190,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalHealthcare && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalHealthcare && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6385,12 +6410,15 @@ private constructor( return true } - return /* spotless:off */ other is Transit && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Transit && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6602,12 +6630,15 @@ private constructor( return true } - return /* spotless:off */ other is Unknown && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Unknown && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6819,12 +6850,15 @@ private constructor( return true } - return /* spotless:off */ other is Vision && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Vision && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6837,13 +6871,34 @@ private constructor( return true } - return /* spotless:off */ other is AdditionalAmounts && clinic == other.clinic && dental == other.dental && prescription == other.prescription && surcharge == other.surcharge && totalCumulative == other.totalCumulative && totalHealthcare == other.totalHealthcare && transit == other.transit && unknown == other.unknown && vision == other.vision && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AdditionalAmounts && + clinic == other.clinic && + dental == other.dental && + prescription == other.prescription && + surcharge == other.surcharge && + totalCumulative == other.totalCumulative && + totalHealthcare == other.totalHealthcare && + transit == other.transit && + unknown == other.unknown && + vision == other.vision && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + clinic, + dental, + prescription, + surcharge, + totalCumulative, + totalHealthcare, + transit, + unknown, + vision, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(clinic, dental, prescription, surcharge, totalCumulative, totalHealthcare, transit, unknown, vision, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -7019,7 +7074,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -7169,7 +7224,7 @@ private constructor( return true } - return /* spotless:off */ other is Direction && value == other.value /* spotless:on */ + return other is Direction && value == other.value } override fun hashCode() = value.hashCode() @@ -7494,7 +7549,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -8130,7 +8185,7 @@ private constructor( return true } - return /* spotless:off */ other is ElectronicCommerceIndicator && value == other.value /* spotless:on */ + return other is ElectronicCommerceIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -8366,7 +8421,7 @@ private constructor( return true } - return /* spotless:off */ other is PointOfServiceEntryMode && value == other.value /* spotless:on */ + return other is PointOfServiceEntryMode && value == other.value } override fun hashCode() = value.hashCode() @@ -8620,7 +8675,7 @@ private constructor( return true } - return /* spotless:off */ other is StandInProcessingReason && value == other.value /* spotless:on */ + return other is StandInProcessingReason && value == other.value } override fun hashCode() = value.hashCode() @@ -8633,12 +8688,21 @@ private constructor( return true } - return /* spotless:off */ other is Visa && electronicCommerceIndicator == other.electronicCommerceIndicator && pointOfServiceEntryMode == other.pointOfServiceEntryMode && standInProcessingReason == other.standInProcessingReason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Visa && + electronicCommerceIndicator == other.electronicCommerceIndicator && + pointOfServiceEntryMode == other.pointOfServiceEntryMode && + standInProcessingReason == other.standInProcessingReason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(electronicCommerceIndicator, pointOfServiceEntryMode, standInProcessingReason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + electronicCommerceIndicator, + pointOfServiceEntryMode, + standInProcessingReason, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -8651,12 +8715,15 @@ private constructor( return true } - return /* spotless:off */ other is NetworkDetails && category == other.category && visa == other.visa && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkDetails && + category == other.category && + visa == other.visa && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, visa, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, visa, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -8946,12 +9013,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && retrievalReferenceNumber == other.retrievalReferenceNumber && traceNumber == other.traceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + retrievalReferenceNumber == other.retrievalReferenceNumber && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(retrievalReferenceNumber, traceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + retrievalReferenceNumber, + traceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -9207,7 +9283,7 @@ private constructor( return true } - return /* spotless:off */ other is ProcessingCategory && value == other.value /* spotless:on */ + return other is ProcessingCategory && value == other.value } override fun hashCode() = value.hashCode() @@ -9335,7 +9411,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -9860,7 +9936,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -9873,12 +9949,12 @@ private constructor( return true } - return /* spotless:off */ other is CardVerificationCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardVerificationCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(result, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -10446,7 +10522,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -10459,12 +10535,25 @@ private constructor( return true } - return /* spotless:off */ other is CardholderAddress && actualLine1 == other.actualLine1 && actualPostalCode == other.actualPostalCode && providedLine1 == other.providedLine1 && providedPostalCode == other.providedPostalCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardholderAddress && + actualLine1 == other.actualLine1 && + actualPostalCode == other.actualPostalCode && + providedLine1 == other.providedLine1 && + providedPostalCode == other.providedPostalCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(actualLine1, actualPostalCode, providedLine1, providedPostalCode, result, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + actualLine1, + actualPostalCode, + providedLine1, + providedPostalCode, + result, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -10477,12 +10566,15 @@ private constructor( return true } - return /* spotless:off */ other is Verification && cardVerificationCode == other.cardVerificationCode && cardholderAddress == other.cardholderAddress && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Verification && + cardVerificationCode == other.cardVerificationCode && + cardholderAddress == other.cardholderAddress && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -10495,12 +10587,71 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthorization && id == other.id && actioner == other.actioner && additionalAmounts == other.additionalAmounts && amount == other.amount && cardPaymentId == other.cardPaymentId && currency == other.currency && digitalWalletTokenId == other.digitalWalletTokenId && direction == other.direction && expiresAt == other.expiresAt && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantDescriptor == other.merchantDescriptor && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkDetails == other.networkDetails && networkIdentifiers == other.networkIdentifiers && networkRiskScore == other.networkRiskScore && pendingTransactionId == other.pendingTransactionId && physicalCardId == other.physicalCardId && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && processingCategory == other.processingCategory && realTimeDecisionId == other.realTimeDecisionId && terminalId == other.terminalId && type == other.type && verification == other.verification && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthorization && + id == other.id && + actioner == other.actioner && + additionalAmounts == other.additionalAmounts && + amount == other.amount && + cardPaymentId == other.cardPaymentId && + currency == other.currency && + digitalWalletTokenId == other.digitalWalletTokenId && + direction == other.direction && + expiresAt == other.expiresAt && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantDescriptor == other.merchantDescriptor && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkDetails == other.networkDetails && + networkIdentifiers == other.networkIdentifiers && + networkRiskScore == other.networkRiskScore && + pendingTransactionId == other.pendingTransactionId && + physicalCardId == other.physicalCardId && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + processingCategory == other.processingCategory && + realTimeDecisionId == other.realTimeDecisionId && + terminalId == other.terminalId && + type == other.type && + verification == other.verification && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, actioner, additionalAmounts, amount, cardPaymentId, currency, digitalWalletTokenId, direction, expiresAt, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantDescriptor, merchantPostalCode, merchantState, networkDetails, networkIdentifiers, networkRiskScore, pendingTransactionId, physicalCardId, presentmentAmount, presentmentCurrency, processingCategory, realTimeDecisionId, terminalId, type, verification, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + actioner, + additionalAmounts, + amount, + cardPaymentId, + currency, + digitalWalletTokenId, + direction, + expiresAt, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantDescriptor, + merchantPostalCode, + merchantState, + networkDetails, + networkIdentifiers, + networkRiskScore, + pendingTransactionId, + physicalCardId, + presentmentAmount, + presentmentCurrency, + processingCategory, + realTimeDecisionId, + terminalId, + type, + verification, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -10712,12 +10863,15 @@ private constructor( return true } - return /* spotless:off */ other is CardPushTransferInstruction && amount == other.amount && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardPushTransferInstruction && + amount == other.amount && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, transferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -11041,7 +11195,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -11577,7 +11731,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -11590,12 +11744,25 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositInstruction && amount == other.amount && backImageFileId == other.backImageFileId && checkDepositId == other.checkDepositId && currency == other.currency && frontImageFileId == other.frontImageFileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckDepositInstruction && + amount == other.amount && + backImageFileId == other.backImageFileId && + checkDepositId == other.checkDepositId && + currency == other.currency && + frontImageFileId == other.frontImageFileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, backImageFileId, checkDepositId, currency, frontImageFileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + backImageFileId, + checkDepositId, + currency, + frontImageFileId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -12012,7 +12179,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -12025,12 +12192,16 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferInstruction && amount == other.amount && currency == other.currency && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckTransferInstruction && + amount == other.amount && + currency == other.currency && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, transferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -12787,7 +12958,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -12925,7 +13096,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -13053,7 +13224,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -13066,12 +13237,35 @@ private constructor( return true } - return /* spotless:off */ other is InboundFundsHold && id == other.id && amount == other.amount && automaticallyReleasesAt == other.automaticallyReleasesAt && createdAt == other.createdAt && currency == other.currency && heldTransactionId == other.heldTransactionId && pendingTransactionId == other.pendingTransactionId && releasedAt == other.releasedAt && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundFundsHold && + id == other.id && + amount == other.amount && + automaticallyReleasesAt == other.automaticallyReleasesAt && + createdAt == other.createdAt && + currency == other.currency && + heldTransactionId == other.heldTransactionId && + pendingTransactionId == other.pendingTransactionId && + releasedAt == other.releasedAt && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, automaticallyReleasesAt, createdAt, currency, heldTransactionId, pendingTransactionId, releasedAt, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + automaticallyReleasesAt, + createdAt, + currency, + heldTransactionId, + pendingTransactionId, + releasedAt, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -13247,12 +13441,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransferReversal && inboundWireTransferId == other.inboundWireTransferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundWireTransferReversal && + inboundWireTransferId == other.inboundWireTransferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(inboundWireTransferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(inboundWireTransferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -13467,12 +13663,15 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferInstruction && amount == other.amount && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is RealTimePaymentsTransferInstruction && + amount == other.amount && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, transferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -13643,12 +13842,12 @@ private constructor( return true } - return /* spotless:off */ other is SwiftTransferInstruction && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is SwiftTransferInstruction && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(transferId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -14004,12 +14203,25 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferInstruction && accountNumber == other.accountNumber && amount == other.amount && messageToRecipient == other.messageToRecipient && routingNumber == other.routingNumber && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is WireTransferInstruction && + accountNumber == other.accountNumber && + amount == other.amount && + messageToRecipient == other.messageToRecipient && + routingNumber == other.routingNumber && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumber, amount, messageToRecipient, routingNumber, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountNumber, + amount, + messageToRecipient, + routingNumber, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -14022,12 +14234,43 @@ private constructor( return true } - return /* spotless:off */ other is Source && accountTransferInstruction == other.accountTransferInstruction && achTransferInstruction == other.achTransferInstruction && cardAuthorization == other.cardAuthorization && cardPushTransferInstruction == other.cardPushTransferInstruction && category == other.category && checkDepositInstruction == other.checkDepositInstruction && checkTransferInstruction == other.checkTransferInstruction && inboundFundsHold == other.inboundFundsHold && inboundWireTransferReversal == other.inboundWireTransferReversal && this.other == other.other && realTimePaymentsTransferInstruction == other.realTimePaymentsTransferInstruction && swiftTransferInstruction == other.swiftTransferInstruction && userInitiatedHold == other.userInitiatedHold && wireTransferInstruction == other.wireTransferInstruction && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Source && + accountTransferInstruction == other.accountTransferInstruction && + achTransferInstruction == other.achTransferInstruction && + cardAuthorization == other.cardAuthorization && + cardPushTransferInstruction == other.cardPushTransferInstruction && + category == other.category && + checkDepositInstruction == other.checkDepositInstruction && + checkTransferInstruction == other.checkTransferInstruction && + inboundFundsHold == other.inboundFundsHold && + inboundWireTransferReversal == other.inboundWireTransferReversal && + this.other == other.other && + realTimePaymentsTransferInstruction == other.realTimePaymentsTransferInstruction && + swiftTransferInstruction == other.swiftTransferInstruction && + userInitiatedHold == other.userInitiatedHold && + wireTransferInstruction == other.wireTransferInstruction && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountTransferInstruction, achTransferInstruction, cardAuthorization, cardPushTransferInstruction, category, checkDepositInstruction, checkTransferInstruction, inboundFundsHold, inboundWireTransferReversal, other, realTimePaymentsTransferInstruction, swiftTransferInstruction, userInitiatedHold, wireTransferInstruction, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountTransferInstruction, + achTransferInstruction, + cardAuthorization, + cardPushTransferInstruction, + category, + checkDepositInstruction, + checkTransferInstruction, + inboundFundsHold, + inboundWireTransferReversal, + other, + realTimePaymentsTransferInstruction, + swiftTransferInstruction, + userInitiatedHold, + wireTransferInstruction, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -14173,7 +14416,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -14298,7 +14541,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -14311,12 +14554,41 @@ private constructor( return true } - return /* spotless:off */ other is PendingTransaction && id == other.id && accountId == other.accountId && amount == other.amount && balanceImpact == other.balanceImpact && completedAt == other.completedAt && createdAt == other.createdAt && currency == other.currency && description == other.description && routeId == other.routeId && routeType == other.routeType && source == other.source && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PendingTransaction && + id == other.id && + accountId == other.accountId && + amount == other.amount && + balanceImpact == other.balanceImpact && + completedAt == other.completedAt && + createdAt == other.createdAt && + currency == other.currency && + description == other.description && + routeId == other.routeId && + routeType == other.routeType && + source == other.source && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, amount, balanceImpact, completedAt, createdAt, currency, description, routeId, routeType, source, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + amount, + balanceImpact, + completedAt, + createdAt, + currency, + description, + routeId, + routeType, + source, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionCreateParams.kt index bce4933af..ad8910eb5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionCreateParams.kt @@ -543,12 +543,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && amount == other.amount && description == other.description && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + amount == other.amount && + description == other.description && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, amount, description, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountId, amount, description, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -561,10 +565,13 @@ private constructor( return true } - return /* spotless:off */ other is PendingTransactionCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PendingTransactionCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "PendingTransactionCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPage.kt index 408b58a03..c7aaa0fc9 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is PendingTransactionListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is PendingTransactionListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "PendingTransactionListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageAsync.kt index 02ba65328..63331bc3e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is PendingTransactionListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is PendingTransactionListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "PendingTransactionListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageResponse.kt index a10a7ba4e..e1adc264d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is PendingTransactionListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PendingTransactionListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListParams.kt index c8a54cc16..04ab4bde8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListParams.kt @@ -729,7 +729,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -742,12 +742,12 @@ private constructor( return true } - return /* spotless:off */ other is Category && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Category && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -914,12 +914,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1173,7 +1178,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -1186,12 +1191,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1203,10 +1208,30 @@ private constructor( return true } - return /* spotless:off */ other is PendingTransactionListParams && accountId == other.accountId && category == other.category && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && routeId == other.routeId && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PendingTransactionListParams && + accountId == other.accountId && + category == other.category && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + routeId == other.routeId && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, category, createdAt, cursor, limit, routeId, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + category, + createdAt, + cursor, + limit, + routeId, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "PendingTransactionListParams{accountId=$accountId, category=$category, createdAt=$createdAt, cursor=$cursor, limit=$limit, routeId=$routeId, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionReleaseParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionReleaseParams.kt index ec3c7fb33..cd24da41a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionReleaseParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionReleaseParams.kt @@ -232,10 +232,20 @@ private constructor( return true } - return /* spotless:off */ other is PendingTransactionReleaseParams && pendingTransactionId == other.pendingTransactionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is PendingTransactionReleaseParams && + pendingTransactionId == other.pendingTransactionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(pendingTransactionId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + pendingTransactionId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "PendingTransactionReleaseParams{pendingTransactionId=$pendingTransactionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionRetrieveParams.kt index d0a18a292..14e39debe 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is PendingTransactionRetrieveParams && pendingTransactionId == other.pendingTransactionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PendingTransactionRetrieveParams && + pendingTransactionId == other.pendingTransactionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(pendingTransactionId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(pendingTransactionId, additionalHeaders, additionalQueryParams) override fun toString() = "PendingTransactionRetrieveParams{pendingTransactionId=$pendingTransactionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfile.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfile.kt index f7f95f68f..ac5626ed4 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfile.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfile.kt @@ -816,7 +816,7 @@ private constructor( return true } - return /* spotless:off */ other is Creator && value == other.value /* spotless:on */ + return other is Creator && value == other.value } override fun hashCode() = value.hashCode() @@ -995,7 +995,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1120,7 +1120,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -1133,12 +1133,41 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardProfile && id == other.id && backImageFileId == other.backImageFileId && carrierImageFileId == other.carrierImageFileId && contactPhone == other.contactPhone && createdAt == other.createdAt && creator == other.creator && description == other.description && frontImageFileId == other.frontImageFileId && idempotencyKey == other.idempotencyKey && isDefault == other.isDefault && programId == other.programId && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PhysicalCardProfile && + id == other.id && + backImageFileId == other.backImageFileId && + carrierImageFileId == other.carrierImageFileId && + contactPhone == other.contactPhone && + createdAt == other.createdAt && + creator == other.creator && + description == other.description && + frontImageFileId == other.frontImageFileId && + idempotencyKey == other.idempotencyKey && + isDefault == other.isDefault && + programId == other.programId && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, backImageFileId, carrierImageFileId, contactPhone, createdAt, creator, description, frontImageFileId, idempotencyKey, isDefault, programId, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + backImageFileId, + carrierImageFileId, + contactPhone, + createdAt, + creator, + description, + frontImageFileId, + idempotencyKey, + isDefault, + programId, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileArchiveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileArchiveParams.kt index 7facfbbf2..fef162567 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileArchiveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileArchiveParams.kt @@ -228,10 +228,20 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardProfileArchiveParams && physicalCardProfileId == other.physicalCardProfileId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is PhysicalCardProfileArchiveParams && + physicalCardProfileId == other.physicalCardProfileId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(physicalCardProfileId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + physicalCardProfileId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "PhysicalCardProfileArchiveParams{physicalCardProfileId=$physicalCardProfileId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileCloneParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileCloneParams.kt index e3c15fe08..729773139 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileCloneParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileCloneParams.kt @@ -768,13 +768,28 @@ private constructor( return true } - return /* spotless:off */ other is Body && carrierImageFileId == other.carrierImageFileId && contactPhone == other.contactPhone && description == other.description && frontImageFileId == other.frontImageFileId && frontText == other.frontText && programId == other.programId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + carrierImageFileId == other.carrierImageFileId && + contactPhone == other.contactPhone && + description == other.description && + frontImageFileId == other.frontImageFileId && + frontText == other.frontText && + programId == other.programId && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carrierImageFileId, + contactPhone, + description, + frontImageFileId, + frontText, + programId, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carrierImageFileId, contactPhone, description, frontImageFileId, frontText, programId, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -967,12 +982,13 @@ private constructor( return true } - return /* spotless:off */ other is FrontText && line1 == other.line1 && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is FrontText && + line1 == other.line1 && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(line1, line2, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -985,10 +1001,15 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardProfileCloneParams && physicalCardProfileId == other.physicalCardProfileId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardProfileCloneParams && + physicalCardProfileId == other.physicalCardProfileId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(physicalCardProfileId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(physicalCardProfileId, body, additionalHeaders, additionalQueryParams) override fun toString() = "PhysicalCardProfileCloneParams{physicalCardProfileId=$physicalCardProfileId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileCreateParams.kt index 4b590583e..49095fa4b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileCreateParams.kt @@ -783,12 +783,27 @@ private constructor( return true } - return /* spotless:off */ other is Body && carrierImageFileId == other.carrierImageFileId && contactPhone == other.contactPhone && description == other.description && frontImageFileId == other.frontImageFileId && programId == other.programId && frontText == other.frontText && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + carrierImageFileId == other.carrierImageFileId && + contactPhone == other.contactPhone && + description == other.description && + frontImageFileId == other.frontImageFileId && + programId == other.programId && + frontText == other.frontText && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carrierImageFileId, contactPhone, description, frontImageFileId, programId, frontText, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + carrierImageFileId, + contactPhone, + description, + frontImageFileId, + programId, + frontText, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -982,12 +997,13 @@ private constructor( return true } - return /* spotless:off */ other is FrontText && line1 == other.line1 && line2 == other.line2 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is FrontText && + line1 == other.line1 && + line2 == other.line2 && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(line1, line2, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1000,10 +1016,13 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardProfileCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardProfileCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "PhysicalCardProfileCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPage.kt index c752c425e..dd7338c6f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardProfileListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is PhysicalCardProfileListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "PhysicalCardProfileListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageAsync.kt index dc5aade24..27bccad0a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardProfileListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is PhysicalCardProfileListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "PhysicalCardProfileListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageResponse.kt index 27b1b0c30..19f4bf584 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageResponse.kt @@ -227,12 +227,13 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardProfileListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PhysicalCardProfileListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListParams.kt index 52af6142e..202d92b8d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListParams.kt @@ -529,7 +529,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -542,12 +542,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -559,10 +559,24 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardProfileListParams && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardProfileListParams && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "PhysicalCardProfileListParams{cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileRetrieveParams.kt index 752f39bd0..3f8de26bc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardProfileRetrieveParams && physicalCardProfileId == other.physicalCardProfileId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardProfileRetrieveParams && + physicalCardProfileId == other.physicalCardProfileId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(physicalCardProfileId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(physicalCardProfileId, additionalHeaders, additionalQueryParams) override fun toString() = "PhysicalCardProfileRetrieveParams{physicalCardProfileId=$physicalCardProfileId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCard.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCard.kt index 2c2936a4c..6b880dcc3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCard.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCard.kt @@ -700,12 +700,15 @@ private constructor( return true } - return /* spotless:off */ other is Cardholder && firstName == other.firstName && lastName == other.lastName && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cardholder && + firstName == other.firstName && + lastName == other.lastName && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(firstName, lastName, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(firstName, lastName, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1440,12 +1443,31 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && country == other.country && line1 == other.line1 && line2 == other.line2 && line3 == other.line3 && name == other.name && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + country == other.country && + line1 == other.line1 && + line2 == other.line2 && + line3 == other.line3 && + name == other.name && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, country, line1, line2, line3, name, postalCode, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + city, + country, + line1, + line2, + line3, + name, + postalCode, + state, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1599,7 +1621,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -1765,7 +1787,7 @@ private constructor( return true } - return /* spotless:off */ other is Schedule && value == other.value /* spotless:on */ + return other is Schedule && value == other.value } override fun hashCode() = value.hashCode() @@ -1985,7 +2007,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -2891,7 +2913,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -2904,12 +2926,27 @@ private constructor( return true } - return /* spotless:off */ other is Update && carrierEstimatedDeliveryAt == other.carrierEstimatedDeliveryAt && category == other.category && city == other.city && createdAt == other.createdAt && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Update && + carrierEstimatedDeliveryAt == other.carrierEstimatedDeliveryAt && + category == other.category && + city == other.city && + createdAt == other.createdAt && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carrierEstimatedDeliveryAt, category, city, createdAt, postalCode, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + carrierEstimatedDeliveryAt, + category, + city, + createdAt, + postalCode, + state, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2922,12 +2959,25 @@ private constructor( return true } - return /* spotless:off */ other is Tracking && number == other.number && returnNumber == other.returnNumber && returnReason == other.returnReason && shippedAt == other.shippedAt && updates == other.updates && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Tracking && + number == other.number && + returnNumber == other.returnNumber && + returnReason == other.returnReason && + shippedAt == other.shippedAt && + updates == other.updates && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(number, returnNumber, returnReason, shippedAt, updates, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + number, + returnNumber, + returnReason, + shippedAt, + updates, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -2940,12 +2990,18 @@ private constructor( return true } - return /* spotless:off */ other is Shipment && address == other.address && method == other.method && schedule == other.schedule && status == other.status && tracking == other.tracking && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Shipment && + address == other.address && + method == other.method && + schedule == other.schedule && + status == other.status && + tracking == other.tracking && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, method, schedule, status, tracking, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(address, method, schedule, status, tracking, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3088,7 +3144,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -3213,7 +3269,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -3226,12 +3282,33 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCard && id == other.id && cardId == other.cardId && cardholder == other.cardholder && createdAt == other.createdAt && idempotencyKey == other.idempotencyKey && physicalCardProfileId == other.physicalCardProfileId && shipment == other.shipment && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PhysicalCard && + id == other.id && + cardId == other.cardId && + cardholder == other.cardholder && + createdAt == other.createdAt && + idempotencyKey == other.idempotencyKey && + physicalCardProfileId == other.physicalCardProfileId && + shipment == other.shipment && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, cardId, cardholder, createdAt, idempotencyKey, physicalCardProfileId, shipment, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + cardId, + cardholder, + createdAt, + idempotencyKey, + physicalCardProfileId, + shipment, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardCreateParams.kt index a8078e2b3..54e3f921b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardCreateParams.kt @@ -615,12 +615,17 @@ private constructor( return true } - return /* spotless:off */ other is Body && cardId == other.cardId && cardholder == other.cardholder && shipment == other.shipment && physicalCardProfileId == other.physicalCardProfileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + cardId == other.cardId && + cardholder == other.cardholder && + shipment == other.shipment && + physicalCardProfileId == other.physicalCardProfileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardId, cardholder, shipment, physicalCardProfileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardId, cardholder, shipment, physicalCardProfileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -816,12 +821,15 @@ private constructor( return true } - return /* spotless:off */ other is Cardholder && firstName == other.firstName && lastName == other.lastName && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cardholder && + firstName == other.firstName && + lastName == other.lastName && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(firstName, lastName, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(firstName, lastName, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1523,12 +1531,33 @@ private constructor( return true } - return /* spotless:off */ other is Address && city == other.city && line1 == other.line1 && name == other.name && postalCode == other.postalCode && state == other.state && country == other.country && line2 == other.line2 && line3 == other.line3 && phoneNumber == other.phoneNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Address && + city == other.city && + line1 == other.line1 && + name == other.name && + postalCode == other.postalCode && + state == other.state && + country == other.country && + line2 == other.line2 && + line3 == other.line3 && + phoneNumber == other.phoneNumber && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, line1, name, postalCode, state, country, line2, line3, phoneNumber, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + city, + line1, + name, + postalCode, + state, + country, + line2, + line3, + phoneNumber, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1682,7 +1711,7 @@ private constructor( return true } - return /* spotless:off */ other is Method && value == other.value /* spotless:on */ + return other is Method && value == other.value } override fun hashCode() = value.hashCode() @@ -1848,7 +1877,7 @@ private constructor( return true } - return /* spotless:off */ other is Schedule && value == other.value /* spotless:on */ + return other is Schedule && value == other.value } override fun hashCode() = value.hashCode() @@ -1861,12 +1890,16 @@ private constructor( return true } - return /* spotless:off */ other is Shipment && address == other.address && method == other.method && schedule == other.schedule && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Shipment && + address == other.address && + method == other.method && + schedule == other.schedule && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(address, method, schedule, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(address, method, schedule, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1879,10 +1912,13 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "PhysicalCardCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPage.kt index b00e7e11e..dd4b27f81 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is PhysicalCardListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "PhysicalCardListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageAsync.kt index 017b41af5..1a63b48ed 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is PhysicalCardListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "PhysicalCardListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageResponse.kt index 0caa04d46..41bbd40be 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageResponse.kt @@ -223,12 +223,13 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PhysicalCardListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListParams.kt index 896651a95..400818db7 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListParams.kt @@ -436,12 +436,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -454,10 +459,26 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardListParams && cardId == other.cardId && createdAt == other.createdAt && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardListParams && + cardId == other.cardId && + createdAt == other.createdAt && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardId, createdAt, cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + cardId, + createdAt, + cursor, + idempotencyKey, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "PhysicalCardListParams{cardId=$cardId, createdAt=$createdAt, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardRetrieveParams.kt index d90d3e07e..e5938f9e3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardRetrieveParams.kt @@ -185,10 +185,14 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardRetrieveParams && physicalCardId == other.physicalCardId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardRetrieveParams && + physicalCardId == other.physicalCardId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(physicalCardId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(physicalCardId, additionalHeaders, additionalQueryParams) override fun toString() = "PhysicalCardRetrieveParams{physicalCardId=$physicalCardId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardUpdateParams.kt index 7c1b40f7e..5b86c8088 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardUpdateParams.kt @@ -406,12 +406,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + status == other.status && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(status, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -553,7 +553,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -566,10 +566,15 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardUpdateParams && physicalCardId == other.physicalCardId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardUpdateParams && + physicalCardId == other.physicalCardId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(physicalCardId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(physicalCardId, body, additionalHeaders, additionalQueryParams) override fun toString() = "PhysicalCardUpdateParams{physicalCardId=$physicalCardId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/Program.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/Program.kt index c77fe08c5..2fbb679da 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/Program.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/Program.kt @@ -652,7 +652,7 @@ private constructor( return true } - return /* spotless:off */ other is Bank && value == other.value /* spotless:on */ + return other is Bank && value == other.value } override fun hashCode() = value.hashCode() @@ -774,7 +774,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -787,12 +787,33 @@ private constructor( return true } - return /* spotless:off */ other is Program && id == other.id && bank == other.bank && billingAccountId == other.billingAccountId && createdAt == other.createdAt && defaultDigitalCardProfileId == other.defaultDigitalCardProfileId && interestRate == other.interestRate && name == other.name && type == other.type && updatedAt == other.updatedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Program && + id == other.id && + bank == other.bank && + billingAccountId == other.billingAccountId && + createdAt == other.createdAt && + defaultDigitalCardProfileId == other.defaultDigitalCardProfileId && + interestRate == other.interestRate && + name == other.name && + type == other.type && + updatedAt == other.updatedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, bank, billingAccountId, createdAt, defaultDigitalCardProfileId, interestRate, name, type, updatedAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + bank, + billingAccountId, + createdAt, + defaultDigitalCardProfileId, + interestRate, + name, + type, + updatedAt, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPage.kt index 745800196..993cd3c0b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is ProgramListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is ProgramListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "ProgramListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageAsync.kt index 4f949ee3b..c995d9181 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is ProgramListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is ProgramListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "ProgramListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageResponse.kt index 988dc9251..3614e1b1d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is ProgramListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ProgramListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListParams.kt index f3841e471..586a37d10 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListParams.kt @@ -205,10 +205,15 @@ private constructor( return true } - return /* spotless:off */ other is ProgramListParams && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ProgramListParams && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cursor, limit, additionalHeaders, additionalQueryParams) override fun toString() = "ProgramListParams{cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramRetrieveParams.kt index dfb0997b7..4c3ae493a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramRetrieveParams.kt @@ -182,10 +182,13 @@ private constructor( return true } - return /* spotless:off */ other is ProgramRetrieveParams && programId == other.programId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ProgramRetrieveParams && + programId == other.programId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(programId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(programId, additionalHeaders, additionalQueryParams) override fun toString() = "ProgramRetrieveParams{programId=$programId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecision.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecision.kt index dda7898a9..5fad02390 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecision.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecision.kt @@ -1043,7 +1043,7 @@ private constructor( return true } - return /* spotless:off */ other is Decision && value == other.value /* spotless:on */ + return other is Decision && value == other.value } override fun hashCode() = value.hashCode() @@ -1056,12 +1056,17 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthentication && accountId == other.accountId && cardId == other.cardId && decision == other.decision && upcomingCardPaymentId == other.upcomingCardPaymentId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthentication && + accountId == other.accountId && + cardId == other.cardId && + decision == other.decision && + upcomingCardPaymentId == other.upcomingCardPaymentId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, cardId, decision, upcomingCardPaymentId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountId, cardId, decision, upcomingCardPaymentId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1506,7 +1511,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -1519,12 +1524,25 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthenticationChallenge && accountId == other.accountId && cardId == other.cardId && cardPaymentId == other.cardPaymentId && oneTimeCode == other.oneTimeCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthenticationChallenge && + accountId == other.accountId && + cardId == other.cardId && + cardPaymentId == other.cardPaymentId && + oneTimeCode == other.oneTimeCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, cardId, cardPaymentId, oneTimeCode, result, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountId, + cardId, + cardPaymentId, + oneTimeCode, + result, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -3625,12 +3643,15 @@ private constructor( return true } - return /* spotless:off */ other is Clinic && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Clinic && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3839,12 +3860,15 @@ private constructor( return true } - return /* spotless:off */ other is Dental && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Dental && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4053,12 +4077,15 @@ private constructor( return true } - return /* spotless:off */ other is Prescription && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Prescription && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4267,12 +4294,15 @@ private constructor( return true } - return /* spotless:off */ other is Surcharge && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Surcharge && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4481,12 +4511,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalCumulative && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalCumulative && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4695,12 +4728,15 @@ private constructor( return true } - return /* spotless:off */ other is TotalHealthcare && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TotalHealthcare && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4909,12 +4945,15 @@ private constructor( return true } - return /* spotless:off */ other is Transit && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Transit && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5123,12 +5162,15 @@ private constructor( return true } - return /* spotless:off */ other is Unknown && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Unknown && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5337,12 +5379,15 @@ private constructor( return true } - return /* spotless:off */ other is Vision && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Vision && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -5355,13 +5400,34 @@ private constructor( return true } - return /* spotless:off */ other is AdditionalAmounts && clinic == other.clinic && dental == other.dental && prescription == other.prescription && surcharge == other.surcharge && totalCumulative == other.totalCumulative && totalHealthcare == other.totalHealthcare && transit == other.transit && unknown == other.unknown && vision == other.vision && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AdditionalAmounts && + clinic == other.clinic && + dental == other.dental && + prescription == other.prescription && + surcharge == other.surcharge && + totalCumulative == other.totalCumulative && + totalHealthcare == other.totalHealthcare && + transit == other.transit && + unknown == other.unknown && + vision == other.vision && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + clinic, + dental, + prescription, + surcharge, + totalCumulative, + totalHealthcare, + transit, + unknown, + vision, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(clinic, dental, prescription, surcharge, totalCumulative, totalHealthcare, transit, unknown, vision, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -5497,7 +5563,7 @@ private constructor( return true } - return /* spotless:off */ other is Decision && value == other.value /* spotless:on */ + return other is Decision && value == other.value } override fun hashCode() = value.hashCode() @@ -5647,7 +5713,7 @@ private constructor( return true } - return /* spotless:off */ other is Direction && value == other.value /* spotless:on */ + return other is Direction && value == other.value } override fun hashCode() = value.hashCode() @@ -5967,7 +6033,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -6587,7 +6653,7 @@ private constructor( return true } - return /* spotless:off */ other is ElectronicCommerceIndicator && value == other.value /* spotless:on */ + return other is ElectronicCommerceIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -6820,7 +6886,7 @@ private constructor( return true } - return /* spotless:off */ other is PointOfServiceEntryMode && value == other.value /* spotless:on */ + return other is PointOfServiceEntryMode && value == other.value } override fun hashCode() = value.hashCode() @@ -7069,7 +7135,7 @@ private constructor( return true } - return /* spotless:off */ other is StandInProcessingReason && value == other.value /* spotless:on */ + return other is StandInProcessingReason && value == other.value } override fun hashCode() = value.hashCode() @@ -7082,12 +7148,21 @@ private constructor( return true } - return /* spotless:off */ other is Visa && electronicCommerceIndicator == other.electronicCommerceIndicator && pointOfServiceEntryMode == other.pointOfServiceEntryMode && standInProcessingReason == other.standInProcessingReason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Visa && + electronicCommerceIndicator == other.electronicCommerceIndicator && + pointOfServiceEntryMode == other.pointOfServiceEntryMode && + standInProcessingReason == other.standInProcessingReason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(electronicCommerceIndicator, pointOfServiceEntryMode, standInProcessingReason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + electronicCommerceIndicator, + pointOfServiceEntryMode, + standInProcessingReason, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -7100,12 +7175,13 @@ private constructor( return true } - return /* spotless:off */ other is NetworkDetails && category == other.category && visa == other.visa && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkDetails && + category == other.category && + visa == other.visa && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(category, visa, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -7390,12 +7466,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && retrievalReferenceNumber == other.retrievalReferenceNumber && traceNumber == other.traceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + retrievalReferenceNumber == other.retrievalReferenceNumber && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(retrievalReferenceNumber, traceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + retrievalReferenceNumber, + traceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -7650,7 +7735,7 @@ private constructor( return true } - return /* spotless:off */ other is ProcessingCategory && value == other.value /* spotless:on */ + return other is ProcessingCategory && value == other.value } override fun hashCode() = value.hashCode() @@ -8026,7 +8111,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -8249,12 +8334,15 @@ private constructor( return true } - return /* spotless:off */ other is IncrementalAuthorization && cardPaymentId == other.cardPaymentId && originalCardAuthorizationId == other.originalCardAuthorizationId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is IncrementalAuthorization && + cardPaymentId == other.cardPaymentId && + originalCardAuthorizationId == other.originalCardAuthorizationId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardPaymentId, originalCardAuthorizationId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardPaymentId, originalCardAuthorizationId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -8267,12 +8355,21 @@ private constructor( return true } - return /* spotless:off */ other is RequestDetails && category == other.category && incrementalAuthorization == other.incrementalAuthorization && initialAuthorization == other.initialAuthorization && additionalProperties == other.additionalProperties /* spotless:on */ + return other is RequestDetails && + category == other.category && + incrementalAuthorization == other.incrementalAuthorization && + initialAuthorization == other.initialAuthorization && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, incrementalAuthorization, initialAuthorization, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + category, + incrementalAuthorization, + initialAuthorization, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -8787,7 +8884,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -8800,12 +8897,12 @@ private constructor( return true } - return /* spotless:off */ other is CardVerificationCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardVerificationCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(result, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -9361,7 +9458,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -9374,12 +9471,25 @@ private constructor( return true } - return /* spotless:off */ other is CardholderAddress && actualLine1 == other.actualLine1 && actualPostalCode == other.actualPostalCode && providedLine1 == other.providedLine1 && providedPostalCode == other.providedPostalCode && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardholderAddress && + actualLine1 == other.actualLine1 && + actualPostalCode == other.actualPostalCode && + providedLine1 == other.providedLine1 && + providedPostalCode == other.providedPostalCode && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(actualLine1, actualPostalCode, providedLine1, providedPostalCode, result, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + actualLine1, + actualPostalCode, + providedLine1, + providedPostalCode, + result, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -9392,12 +9502,15 @@ private constructor( return true } - return /* spotless:off */ other is Verification && cardVerificationCode == other.cardVerificationCode && cardholderAddress == other.cardholderAddress && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Verification && + cardVerificationCode == other.cardVerificationCode && + cardholderAddress == other.cardholderAddress && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardVerificationCode, cardholderAddress, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -9410,12 +9523,67 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthorization && accountId == other.accountId && additionalAmounts == other.additionalAmounts && cardId == other.cardId && decision == other.decision && digitalWalletTokenId == other.digitalWalletTokenId && direction == other.direction && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantDescriptor == other.merchantDescriptor && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkDetails == other.networkDetails && networkIdentifiers == other.networkIdentifiers && networkRiskScore == other.networkRiskScore && physicalCardId == other.physicalCardId && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && processingCategory == other.processingCategory && requestDetails == other.requestDetails && settlementAmount == other.settlementAmount && settlementCurrency == other.settlementCurrency && terminalId == other.terminalId && upcomingCardPaymentId == other.upcomingCardPaymentId && verification == other.verification && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthorization && + accountId == other.accountId && + additionalAmounts == other.additionalAmounts && + cardId == other.cardId && + decision == other.decision && + digitalWalletTokenId == other.digitalWalletTokenId && + direction == other.direction && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantDescriptor == other.merchantDescriptor && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkDetails == other.networkDetails && + networkIdentifiers == other.networkIdentifiers && + networkRiskScore == other.networkRiskScore && + physicalCardId == other.physicalCardId && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + processingCategory == other.processingCategory && + requestDetails == other.requestDetails && + settlementAmount == other.settlementAmount && + settlementCurrency == other.settlementCurrency && + terminalId == other.terminalId && + upcomingCardPaymentId == other.upcomingCardPaymentId && + verification == other.verification && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, additionalAmounts, cardId, decision, digitalWalletTokenId, direction, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantDescriptor, merchantPostalCode, merchantState, networkDetails, networkIdentifiers, networkRiskScore, physicalCardId, presentmentAmount, presentmentCurrency, processingCategory, requestDetails, settlementAmount, settlementCurrency, terminalId, upcomingCardPaymentId, verification, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountId, + additionalAmounts, + cardId, + decision, + digitalWalletTokenId, + direction, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantDescriptor, + merchantPostalCode, + merchantState, + networkDetails, + networkIdentifiers, + networkRiskScore, + physicalCardId, + presentmentAmount, + presentmentCurrency, + processingCategory, + requestDetails, + settlementAmount, + settlementCurrency, + terminalId, + upcomingCardPaymentId, + verification, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -9590,7 +9758,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -10122,7 +10290,7 @@ private constructor( return true } - return /* spotless:off */ other is Channel && value == other.value /* spotless:on */ + return other is Channel && value == other.value } override fun hashCode() = value.hashCode() @@ -10278,7 +10446,7 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWallet && value == other.value /* spotless:on */ + return other is DigitalWallet && value == other.value } override fun hashCode() = value.hashCode() @@ -10420,7 +10588,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -10433,12 +10601,29 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletAuthentication && cardId == other.cardId && channel == other.channel && digitalWallet == other.digitalWallet && email == other.email && oneTimePasscode == other.oneTimePasscode && phone == other.phone && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWalletAuthentication && + cardId == other.cardId && + channel == other.channel && + digitalWallet == other.digitalWallet && + email == other.email && + oneTimePasscode == other.oneTimePasscode && + phone == other.phone && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardId, channel, digitalWallet, email, oneTimePasscode, phone, result, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + cardId, + channel, + digitalWallet, + email, + oneTimePasscode, + phone, + result, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -10900,7 +11085,7 @@ private constructor( return true } - return /* spotless:off */ other is Decision && value == other.value /* spotless:on */ + return other is Decision && value == other.value } override fun hashCode() = value.hashCode() @@ -11068,12 +11253,12 @@ private constructor( return true } - return /* spotless:off */ other is Device && identifier == other.identifier && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Device && + identifier == other.identifier && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(identifier, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -11229,7 +11414,7 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWallet && value == other.value /* spotless:on */ + return other is DigitalWallet && value == other.value } override fun hashCode() = value.hashCode() @@ -11242,12 +11427,25 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletToken && cardId == other.cardId && cardProfileId == other.cardProfileId && decision == other.decision && device == other.device && digitalWallet == other.digitalWallet && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWalletToken && + cardId == other.cardId && + cardProfileId == other.cardProfileId && + decision == other.decision && + device == other.device && + digitalWallet == other.digitalWallet && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardId, cardProfileId, decision, device, digitalWallet, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + cardId, + cardProfileId, + decision, + device, + digitalWallet, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -11390,7 +11588,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -11515,7 +11713,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -11528,12 +11726,37 @@ private constructor( return true } - return /* spotless:off */ other is RealTimeDecision && id == other.id && cardAuthentication == other.cardAuthentication && cardAuthenticationChallenge == other.cardAuthenticationChallenge && cardAuthorization == other.cardAuthorization && category == other.category && createdAt == other.createdAt && digitalWalletAuthentication == other.digitalWalletAuthentication && digitalWalletToken == other.digitalWalletToken && status == other.status && timeoutAt == other.timeoutAt && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is RealTimeDecision && + id == other.id && + cardAuthentication == other.cardAuthentication && + cardAuthenticationChallenge == other.cardAuthenticationChallenge && + cardAuthorization == other.cardAuthorization && + category == other.category && + createdAt == other.createdAt && + digitalWalletAuthentication == other.digitalWalletAuthentication && + digitalWalletToken == other.digitalWalletToken && + status == other.status && + timeoutAt == other.timeoutAt && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, cardAuthentication, cardAuthenticationChallenge, cardAuthorization, category, createdAt, digitalWalletAuthentication, digitalWalletToken, status, timeoutAt, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + cardAuthentication, + cardAuthenticationChallenge, + cardAuthorization, + category, + createdAt, + digitalWalletAuthentication, + digitalWalletToken, + status, + timeoutAt, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionActionParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionActionParams.kt index ceadb80a5..aebb9eb0e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionActionParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionActionParams.kt @@ -770,13 +770,26 @@ private constructor( return true } - return /* spotless:off */ other is Body && cardAuthentication == other.cardAuthentication && cardAuthenticationChallenge == other.cardAuthenticationChallenge && cardAuthorization == other.cardAuthorization && digitalWalletAuthentication == other.digitalWalletAuthentication && digitalWalletToken == other.digitalWalletToken && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + cardAuthentication == other.cardAuthentication && + cardAuthenticationChallenge == other.cardAuthenticationChallenge && + cardAuthorization == other.cardAuthorization && + digitalWalletAuthentication == other.digitalWalletAuthentication && + digitalWalletToken == other.digitalWalletToken && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + cardAuthentication, + cardAuthenticationChallenge, + cardAuthorization, + digitalWalletAuthentication, + digitalWalletToken, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardAuthentication, cardAuthenticationChallenge, cardAuthorization, digitalWalletAuthentication, digitalWalletToken, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -1068,7 +1081,7 @@ private constructor( return true } - return /* spotless:off */ other is Decision && value == other.value /* spotless:on */ + return other is Decision && value == other.value } override fun hashCode() = value.hashCode() @@ -1081,12 +1094,12 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthentication && decision == other.decision && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthentication && + decision == other.decision && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(decision, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1373,7 +1386,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -1386,12 +1399,12 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthenticationChallenge && result == other.result && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthenticationChallenge && + result == other.result && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(result, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1722,7 +1735,7 @@ private constructor( return true } - return /* spotless:off */ other is Decision && value == other.value /* spotless:on */ + return other is Decision && value == other.value } override fun hashCode() = value.hashCode() @@ -1953,7 +1966,7 @@ private constructor( return true } - return /* spotless:off */ other is DeclineReason && value == other.value /* spotless:on */ + return other is DeclineReason && value == other.value } override fun hashCode() = value.hashCode() @@ -1966,12 +1979,15 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthorization && decision == other.decision && declineReason == other.declineReason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthorization && + decision == other.decision && + declineReason == other.declineReason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(decision, declineReason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(decision, declineReason, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2292,7 +2308,7 @@ private constructor( return true } - return /* spotless:off */ other is Result && value == other.value /* spotless:on */ + return other is Result && value == other.value } override fun hashCode() = value.hashCode() @@ -2471,12 +2487,13 @@ private constructor( return true } - return /* spotless:off */ other is Success && email == other.email && phone == other.phone && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Success && + email == other.email && + phone == other.phone && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(email, phone, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2489,12 +2506,13 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletAuthentication && result == other.result && success == other.success && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWalletAuthentication && + result == other.result && + success == other.success && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(result, success, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2849,12 +2867,13 @@ private constructor( return true } - return /* spotless:off */ other is Approval && email == other.email && phone == other.phone && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Approval && + email == other.email && + phone == other.phone && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(email, phone, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -3000,12 +3019,12 @@ private constructor( return true } - return /* spotless:off */ other is Decline && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Decline && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reason, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -3018,12 +3037,13 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletToken && approval == other.approval && decline == other.decline && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWalletToken && + approval == other.approval && + decline == other.decline && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(approval, decline, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -3036,10 +3056,15 @@ private constructor( return true } - return /* spotless:off */ other is RealTimeDecisionActionParams && realTimeDecisionId == other.realTimeDecisionId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is RealTimeDecisionActionParams && + realTimeDecisionId == other.realTimeDecisionId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(realTimeDecisionId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(realTimeDecisionId, body, additionalHeaders, additionalQueryParams) override fun toString() = "RealTimeDecisionActionParams{realTimeDecisionId=$realTimeDecisionId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionRetrieveParams.kt index 46050b942..da6684833 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimedecisions/RealTimeDecisionRetrieveParams.kt @@ -190,10 +190,14 @@ private constructor( return true } - return /* spotless:off */ other is RealTimeDecisionRetrieveParams && realTimeDecisionId == other.realTimeDecisionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is RealTimeDecisionRetrieveParams && + realTimeDecisionId == other.realTimeDecisionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(realTimeDecisionId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(realTimeDecisionId, additionalHeaders, additionalQueryParams) override fun toString() = "RealTimeDecisionRetrieveParams{realTimeDecisionId=$realTimeDecisionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransfer.kt index 757cd5baf..f65039c4a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransfer.kt @@ -1445,12 +1445,12 @@ private constructor( return true } - return /* spotless:off */ other is Acknowledgement && acknowledgedAt == other.acknowledgedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Acknowledgement && + acknowledgedAt == other.acknowledgedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(acknowledgedAt, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1665,12 +1665,15 @@ private constructor( return true } - return /* spotless:off */ other is Approval && approvedAt == other.approvedAt && approvedBy == other.approvedBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Approval && + approvedAt == other.approvedAt && + approvedBy == other.approvedBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(approvedAt, approvedBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(approvedAt, approvedBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1885,12 +1888,15 @@ private constructor( return true } - return /* spotless:off */ other is Cancellation && canceledAt == other.canceledAt && canceledBy == other.canceledBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cancellation && + canceledAt == other.canceledAt && + canceledBy == other.canceledBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(canceledAt, canceledBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(canceledAt, canceledBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2334,12 +2340,12 @@ private constructor( return true } - return /* spotless:off */ other is ApiKey && description == other.description && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ApiKey && + description == other.description && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(description, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2494,7 +2500,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -2652,12 +2658,12 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplication && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthApplication && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2812,12 +2818,12 @@ private constructor( return true } - return /* spotless:off */ other is User && email == other.email && additionalProperties == other.additionalProperties /* spotless:on */ + return other is User && + email == other.email && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(email, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2830,12 +2836,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedBy && apiKey == other.apiKey && category == other.category && oauthApplication == other.oauthApplication && user == other.user && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedBy && + apiKey == other.apiKey && + category == other.category && + oauthApplication == other.oauthApplication && + user == other.user && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3008,7 +3019,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -3782,7 +3793,7 @@ private constructor( return true } - return /* spotless:off */ other is RejectReasonCode && value == other.value /* spotless:on */ + return other is RejectReasonCode && value == other.value } override fun hashCode() = value.hashCode() @@ -3795,12 +3806,21 @@ private constructor( return true } - return /* spotless:off */ other is Rejection && rejectReasonAdditionalInformation == other.rejectReasonAdditionalInformation && rejectReasonCode == other.rejectReasonCode && rejectedAt == other.rejectedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Rejection && + rejectReasonAdditionalInformation == other.rejectReasonAdditionalInformation && + rejectReasonCode == other.rejectReasonCode && + rejectedAt == other.rejectedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(rejectReasonAdditionalInformation, rejectReasonCode, rejectedAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + rejectReasonAdditionalInformation, + rejectReasonCode, + rejectedAt, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -3994,7 +4014,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -4213,12 +4233,15 @@ private constructor( return true } - return /* spotless:off */ other is Submission && submittedAt == other.submittedAt && transactionIdentification == other.transactionIdentification && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Submission && + submittedAt == other.submittedAt && + transactionIdentification == other.transactionIdentification && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(submittedAt, transactionIdentification, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(submittedAt, transactionIdentification, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4343,7 +4366,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -4356,12 +4379,65 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransfer && id == other.id && accountId == other.accountId && acknowledgement == other.acknowledgement && amount == other.amount && approval == other.approval && cancellation == other.cancellation && createdAt == other.createdAt && createdBy == other.createdBy && creditorName == other.creditorName && currency == other.currency && debtorName == other.debtorName && destinationAccountNumber == other.destinationAccountNumber && destinationRoutingNumber == other.destinationRoutingNumber && externalAccountId == other.externalAccountId && idempotencyKey == other.idempotencyKey && pendingTransactionId == other.pendingTransactionId && rejection == other.rejection && remittanceInformation == other.remittanceInformation && sourceAccountNumberId == other.sourceAccountNumberId && status == other.status && submission == other.submission && transactionId == other.transactionId && type == other.type && ultimateCreditorName == other.ultimateCreditorName && ultimateDebtorName == other.ultimateDebtorName && additionalProperties == other.additionalProperties /* spotless:on */ + return other is RealTimePaymentsTransfer && + id == other.id && + accountId == other.accountId && + acknowledgement == other.acknowledgement && + amount == other.amount && + approval == other.approval && + cancellation == other.cancellation && + createdAt == other.createdAt && + createdBy == other.createdBy && + creditorName == other.creditorName && + currency == other.currency && + debtorName == other.debtorName && + destinationAccountNumber == other.destinationAccountNumber && + destinationRoutingNumber == other.destinationRoutingNumber && + externalAccountId == other.externalAccountId && + idempotencyKey == other.idempotencyKey && + pendingTransactionId == other.pendingTransactionId && + rejection == other.rejection && + remittanceInformation == other.remittanceInformation && + sourceAccountNumberId == other.sourceAccountNumberId && + status == other.status && + submission == other.submission && + transactionId == other.transactionId && + type == other.type && + ultimateCreditorName == other.ultimateCreditorName && + ultimateDebtorName == other.ultimateDebtorName && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, acknowledgement, amount, approval, cancellation, createdAt, createdBy, creditorName, currency, debtorName, destinationAccountNumber, destinationRoutingNumber, externalAccountId, idempotencyKey, pendingTransactionId, rejection, remittanceInformation, sourceAccountNumberId, status, submission, transactionId, type, ultimateCreditorName, ultimateDebtorName, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + acknowledgement, + amount, + approval, + cancellation, + createdAt, + createdBy, + creditorName, + currency, + debtorName, + destinationAccountNumber, + destinationRoutingNumber, + externalAccountId, + idempotencyKey, + pendingTransactionId, + rejection, + remittanceInformation, + sourceAccountNumberId, + status, + submission, + transactionId, + type, + ultimateCreditorName, + ultimateDebtorName, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferApproveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferApproveParams.kt index 310cac956..3d88e404a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferApproveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferApproveParams.kt @@ -231,10 +231,20 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferApproveParams && realTimePaymentsTransferId == other.realTimePaymentsTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is RealTimePaymentsTransferApproveParams && + realTimePaymentsTransferId == other.realTimePaymentsTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(realTimePaymentsTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + realTimePaymentsTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "RealTimePaymentsTransferApproveParams{realTimePaymentsTransferId=$realTimePaymentsTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferCancelParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferCancelParams.kt index 25871295f..add0c32be 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferCancelParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferCancelParams.kt @@ -231,10 +231,20 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferCancelParams && realTimePaymentsTransferId == other.realTimePaymentsTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is RealTimePaymentsTransferCancelParams && + realTimePaymentsTransferId == other.realTimePaymentsTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(realTimePaymentsTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + realTimePaymentsTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "RealTimePaymentsTransferCancelParams{realTimePaymentsTransferId=$realTimePaymentsTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferCreateParams.kt index 66ad74535..7b562b1d1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferCreateParams.kt @@ -1191,12 +1191,37 @@ private constructor( return true } - return /* spotless:off */ other is Body && amount == other.amount && creditorName == other.creditorName && remittanceInformation == other.remittanceInformation && sourceAccountNumberId == other.sourceAccountNumberId && debtorName == other.debtorName && destinationAccountNumber == other.destinationAccountNumber && destinationRoutingNumber == other.destinationRoutingNumber && externalAccountId == other.externalAccountId && requireApproval == other.requireApproval && ultimateCreditorName == other.ultimateCreditorName && ultimateDebtorName == other.ultimateDebtorName && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + amount == other.amount && + creditorName == other.creditorName && + remittanceInformation == other.remittanceInformation && + sourceAccountNumberId == other.sourceAccountNumberId && + debtorName == other.debtorName && + destinationAccountNumber == other.destinationAccountNumber && + destinationRoutingNumber == other.destinationRoutingNumber && + externalAccountId == other.externalAccountId && + requireApproval == other.requireApproval && + ultimateCreditorName == other.ultimateCreditorName && + ultimateDebtorName == other.ultimateDebtorName && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, creditorName, remittanceInformation, sourceAccountNumberId, debtorName, destinationAccountNumber, destinationRoutingNumber, externalAccountId, requireApproval, ultimateCreditorName, ultimateDebtorName, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + creditorName, + remittanceInformation, + sourceAccountNumberId, + debtorName, + destinationAccountNumber, + destinationRoutingNumber, + externalAccountId, + requireApproval, + ultimateCreditorName, + ultimateDebtorName, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1209,10 +1234,13 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is RealTimePaymentsTransferCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "RealTimePaymentsTransferCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPage.kt index eca73cf7d..f4af3a383 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPage.kt @@ -124,10 +124,13 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is RealTimePaymentsTransferListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "RealTimePaymentsTransferListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageAsync.kt index aef2a346f..7468ca5b8 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageAsync.kt @@ -141,10 +141,14 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is RealTimePaymentsTransferListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "RealTimePaymentsTransferListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageResponse.kt index bb54348ec..fc19b25f6 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageResponse.kt @@ -229,12 +229,13 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is RealTimePaymentsTransferListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListParams.kt index a5a61083b..2cbdd4cd5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListParams.kt @@ -482,12 +482,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -790,7 +795,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -803,12 +808,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -820,10 +825,30 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferListParams && accountId == other.accountId && createdAt == other.createdAt && cursor == other.cursor && externalAccountId == other.externalAccountId && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is RealTimePaymentsTransferListParams && + accountId == other.accountId && + createdAt == other.createdAt && + cursor == other.cursor && + externalAccountId == other.externalAccountId && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, createdAt, cursor, externalAccountId, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + createdAt, + cursor, + externalAccountId, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "RealTimePaymentsTransferListParams{accountId=$accountId, createdAt=$createdAt, cursor=$cursor, externalAccountId=$externalAccountId, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferRetrieveParams.kt index f9544bf98..cffa236ff 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferRetrieveParams.kt @@ -196,10 +196,14 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferRetrieveParams && realTimePaymentsTransferId == other.realTimePaymentsTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is RealTimePaymentsTransferRetrieveParams && + realTimePaymentsTransferId == other.realTimePaymentsTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(realTimePaymentsTransferId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(realTimePaymentsTransferId, additionalHeaders, additionalQueryParams) override fun toString() = "RealTimePaymentsTransferRetrieveParams{realTimePaymentsTransferId=$realTimePaymentsTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPage.kt index 29ec10a5d..bc0550cb3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPage.kt @@ -120,10 +120,13 @@ private constructor( return true } - return /* spotless:off */ other is RoutingNumberListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is RoutingNumberListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "RoutingNumberListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageAsync.kt index 92be08752..d84692df1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageAsync.kt @@ -134,10 +134,14 @@ private constructor( return true } - return /* spotless:off */ other is RoutingNumberListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is RoutingNumberListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "RoutingNumberListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageResponse.kt index b44c49788..09f87e270 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageResponse.kt @@ -226,12 +226,13 @@ private constructor( return true } - return /* spotless:off */ other is RoutingNumberListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is RoutingNumberListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListParams.kt index ad85d767d..2dd7a97aa 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListParams.kt @@ -233,10 +233,16 @@ private constructor( return true } - return /* spotless:off */ other is RoutingNumberListParams && routingNumber == other.routingNumber && cursor == other.cursor && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is RoutingNumberListParams && + routingNumber == other.routingNumber && + cursor == other.cursor && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(routingNumber, cursor, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(routingNumber, cursor, limit, additionalHeaders, additionalQueryParams) override fun toString() = "RoutingNumberListParams{routingNumber=$routingNumber, cursor=$cursor, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListResponse.kt index e04fa19d3..fe310c6c0 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListResponse.kt @@ -506,7 +506,7 @@ private constructor( return true } - return /* spotless:off */ other is AchTransfers && value == other.value /* spotless:on */ + return other is AchTransfers && value == other.value } override fun hashCode() = value.hashCode() @@ -648,7 +648,7 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransfers && value == other.value /* spotless:on */ + return other is RealTimePaymentsTransfers && value == other.value } override fun hashCode() = value.hashCode() @@ -773,7 +773,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -911,7 +911,7 @@ private constructor( return true } - return /* spotless:off */ other is WireTransfers && value == other.value /* spotless:on */ + return other is WireTransfers && value == other.value } override fun hashCode() = value.hashCode() @@ -924,12 +924,27 @@ private constructor( return true } - return /* spotless:off */ other is RoutingNumberListResponse && achTransfers == other.achTransfers && name == other.name && realTimePaymentsTransfers == other.realTimePaymentsTransfers && routingNumber == other.routingNumber && type == other.type && wireTransfers == other.wireTransfers && additionalProperties == other.additionalProperties /* spotless:on */ + return other is RoutingNumberListResponse && + achTransfers == other.achTransfers && + name == other.name && + realTimePaymentsTransfers == other.realTimePaymentsTransfers && + routingNumber == other.routingNumber && + type == other.type && + wireTransfers == other.wireTransfers && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(achTransfers, name, realTimePaymentsTransfers, routingNumber, type, wireTransfers, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + achTransfers, + name, + realTimePaymentsTransfers, + routingNumber, + type, + wireTransfers, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/accountstatements/AccountStatementCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/accountstatements/AccountStatementCreateParams.kt index e7e9a75e7..8ec0d1d74 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/accountstatements/AccountStatementCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/accountstatements/AccountStatementCreateParams.kt @@ -389,12 +389,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(accountId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -407,10 +407,13 @@ private constructor( return true } - return /* spotless:off */ other is AccountStatementCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AccountStatementCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "AccountStatementCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/accounttransfers/AccountTransferCompleteParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/accounttransfers/AccountTransferCompleteParams.kt index 6562a9440..94bf2cd1d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/accounttransfers/AccountTransferCompleteParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/accounttransfers/AccountTransferCompleteParams.kt @@ -227,10 +227,20 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferCompleteParams && accountTransferId == other.accountTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is AccountTransferCompleteParams && + accountTransferId == other.accountTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "AccountTransferCompleteParams{accountTransferId=$accountTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferAcknowledgeParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferAcknowledgeParams.kt index 346d754ea..92b6d444d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferAcknowledgeParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferAcknowledgeParams.kt @@ -226,10 +226,20 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferAcknowledgeParams && achTransferId == other.achTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is AchTransferAcknowledgeParams && + achTransferId == other.achTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(achTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + achTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "AchTransferAcknowledgeParams{achTransferId=$achTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferCreateNotificationOfChangeParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferCreateNotificationOfChangeParams.kt index eeba12655..c1a26a511 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferCreateNotificationOfChangeParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferCreateNotificationOfChangeParams.kt @@ -498,12 +498,15 @@ private constructor( return true } - return /* spotless:off */ other is Body && changeCode == other.changeCode && correctedData == other.correctedData && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + changeCode == other.changeCode && + correctedData == other.correctedData && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(changeCode, correctedData, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(changeCode, correctedData, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -870,7 +873,7 @@ private constructor( return true } - return /* spotless:off */ other is ChangeCode && value == other.value /* spotless:on */ + return other is ChangeCode && value == other.value } override fun hashCode() = value.hashCode() @@ -883,10 +886,15 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferCreateNotificationOfChangeParams && achTransferId == other.achTransferId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AchTransferCreateNotificationOfChangeParams && + achTransferId == other.achTransferId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(achTransferId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(achTransferId, body, additionalHeaders, additionalQueryParams) override fun toString() = "AchTransferCreateNotificationOfChangeParams{achTransferId=$achTransferId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferReturnParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferReturnParams.kt index 2f29a3653..1d8e83d2d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferReturnParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferReturnParams.kt @@ -390,12 +390,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(reason, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1595,7 +1595,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -1608,10 +1608,15 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferReturnParams && achTransferId == other.achTransferId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is AchTransferReturnParams && + achTransferId == other.achTransferId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(achTransferId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(achTransferId, body, additionalHeaders, additionalQueryParams) override fun toString() = "AchTransferReturnParams{achTransferId=$achTransferId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferSettleParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferSettleParams.kt index 0108ca0b3..2658e0b9b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferSettleParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferSettleParams.kt @@ -224,10 +224,20 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferSettleParams && achTransferId == other.achTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is AchTransferSettleParams && + achTransferId == other.achTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(achTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + achTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "AchTransferSettleParams{achTransferId=$achTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferSubmitParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferSubmitParams.kt index 6a4e2097f..dccd4f2fa 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferSubmitParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/achtransfers/AchTransferSubmitParams.kt @@ -224,10 +224,20 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferSubmitParams && achTransferId == other.achTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is AchTransferSubmitParams && + achTransferId == other.achTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(achTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + achTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "AchTransferSubmitParams{achTransferId=$achTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizationexpirations/CardAuthorizationExpirationCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizationexpirations/CardAuthorizationExpirationCreateParams.kt index 5ce37c2fd..0038df233 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizationexpirations/CardAuthorizationExpirationCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizationexpirations/CardAuthorizationExpirationCreateParams.kt @@ -402,12 +402,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && cardPaymentId == other.cardPaymentId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + cardPaymentId == other.cardPaymentId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(cardPaymentId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -420,10 +420,13 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthorizationExpirationCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardAuthorizationExpirationCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CardAuthorizationExpirationCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizations/CardAuthorizationCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizations/CardAuthorizationCreateParams.kt index a24d59826..ee9952d93 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizations/CardAuthorizationCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizations/CardAuthorizationCreateParams.kt @@ -1642,13 +1642,50 @@ private constructor( return true } - return /* spotless:off */ other is Body && amount == other.amount && authenticatedCardPaymentId == other.authenticatedCardPaymentId && cardId == other.cardId && declineReason == other.declineReason && digitalWalletTokenId == other.digitalWalletTokenId && eventSubscriptionId == other.eventSubscriptionId && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantDescriptor == other.merchantDescriptor && merchantState == other.merchantState && networkDetails == other.networkDetails && networkRiskScore == other.networkRiskScore && physicalCardId == other.physicalCardId && processingCategory == other.processingCategory && terminalId == other.terminalId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + amount == other.amount && + authenticatedCardPaymentId == other.authenticatedCardPaymentId && + cardId == other.cardId && + declineReason == other.declineReason && + digitalWalletTokenId == other.digitalWalletTokenId && + eventSubscriptionId == other.eventSubscriptionId && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantDescriptor == other.merchantDescriptor && + merchantState == other.merchantState && + networkDetails == other.networkDetails && + networkRiskScore == other.networkRiskScore && + physicalCardId == other.physicalCardId && + processingCategory == other.processingCategory && + terminalId == other.terminalId && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + amount, + authenticatedCardPaymentId, + cardId, + declineReason, + digitalWalletTokenId, + eventSubscriptionId, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantDescriptor, + merchantState, + networkDetails, + networkRiskScore, + physicalCardId, + processingCategory, + terminalId, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, authenticatedCardPaymentId, cardId, declineReason, digitalWalletTokenId, eventSubscriptionId, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantDescriptor, merchantState, networkDetails, networkRiskScore, physicalCardId, processingCategory, terminalId, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -1980,7 +2017,7 @@ private constructor( return true } - return /* spotless:off */ other is DeclineReason && value == other.value /* spotless:on */ + return other is DeclineReason && value == other.value } override fun hashCode() = value.hashCode() @@ -2501,7 +2538,7 @@ private constructor( return true } - return /* spotless:off */ other is StandInProcessingReason && value == other.value /* spotless:on */ + return other is StandInProcessingReason && value == other.value } override fun hashCode() = value.hashCode() @@ -2514,12 +2551,14 @@ private constructor( return true } - return /* spotless:off */ other is Visa && standInProcessingReason == other.standInProcessingReason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Visa && + standInProcessingReason == other.standInProcessingReason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(standInProcessingReason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(standInProcessingReason, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2532,12 +2571,12 @@ private constructor( return true } - return /* spotless:off */ other is NetworkDetails && visa == other.visa && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkDetails && + visa == other.visa && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(visa, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2930,7 +2969,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -2943,12 +2982,12 @@ private constructor( return true } - return /* spotless:off */ other is ProcessingCategory && category == other.category && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ProcessingCategory && + category == other.category && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(category, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2961,10 +3000,13 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthorizationCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardAuthorizationCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CardAuthorizationCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizations/CardAuthorizationCreateResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizations/CardAuthorizationCreateResponse.kt index ab9feaa96..173ebe57c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizations/CardAuthorizationCreateResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardauthorizations/CardAuthorizationCreateResponse.kt @@ -402,7 +402,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -415,12 +415,16 @@ private constructor( return true } - return /* spotless:off */ other is CardAuthorizationCreateResponse && declinedTransaction == other.declinedTransaction && pendingTransaction == other.pendingTransaction && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardAuthorizationCreateResponse && + declinedTransaction == other.declinedTransaction && + pendingTransaction == other.pendingTransaction && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(declinedTransaction, pendingTransaction, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(declinedTransaction, pendingTransaction, type, additionalProperties) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/carddisputes/CardDisputeActionParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/carddisputes/CardDisputeActionParams.kt index 86acddf52..47c5c0645 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/carddisputes/CardDisputeActionParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/carddisputes/CardDisputeActionParams.kt @@ -484,12 +484,15 @@ private constructor( return true } - return /* spotless:off */ other is Body && status == other.status && explanation == other.explanation && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + status == other.status && + explanation == other.explanation && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(status, explanation, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(status, explanation, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -668,7 +671,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -681,10 +684,15 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeActionParams && cardDisputeId == other.cardDisputeId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardDisputeActionParams && + cardDisputeId == other.cardDisputeId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cardDisputeId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(cardDisputeId, body, additionalHeaders, additionalQueryParams) override fun toString() = "CardDisputeActionParams{cardDisputeId=$cardDisputeId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardfuelconfirmations/CardFuelConfirmationCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardfuelconfirmations/CardFuelConfirmationCreateParams.kt index 63c8e464a..7ea88ff64 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardfuelconfirmations/CardFuelConfirmationCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardfuelconfirmations/CardFuelConfirmationCreateParams.kt @@ -475,12 +475,15 @@ private constructor( return true } - return /* spotless:off */ other is Body && amount == other.amount && cardPaymentId == other.cardPaymentId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + amount == other.amount && + cardPaymentId == other.cardPaymentId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, cardPaymentId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, cardPaymentId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -493,10 +496,13 @@ private constructor( return true } - return /* spotless:off */ other is CardFuelConfirmationCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardFuelConfirmationCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CardFuelConfirmationCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardincrements/CardIncrementCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardincrements/CardIncrementCreateParams.kt index f12d0a3b7..684134762 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardincrements/CardIncrementCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardincrements/CardIncrementCreateParams.kt @@ -559,12 +559,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && amount == other.amount && cardPaymentId == other.cardPaymentId && eventSubscriptionId == other.eventSubscriptionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + amount == other.amount && + cardPaymentId == other.cardPaymentId && + eventSubscriptionId == other.eventSubscriptionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, cardPaymentId, eventSubscriptionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, cardPaymentId, eventSubscriptionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -577,10 +581,13 @@ private constructor( return true } - return /* spotless:off */ other is CardIncrementCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardIncrementCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CardIncrementCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardrefunds/CardRefundCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardrefunds/CardRefundCreateParams.kt index a48bacb0c..b1a716595 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardrefunds/CardRefundCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardrefunds/CardRefundCreateParams.kt @@ -408,12 +408,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(transactionId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -426,10 +426,13 @@ private constructor( return true } - return /* spotless:off */ other is CardRefundCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardRefundCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CardRefundCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardreversals/CardReversalCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardreversals/CardReversalCreateParams.kt index 9e9a3b4bc..11710122a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardreversals/CardReversalCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardreversals/CardReversalCreateParams.kt @@ -472,12 +472,15 @@ private constructor( return true } - return /* spotless:off */ other is Body && cardPaymentId == other.cardPaymentId && amount == other.amount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + cardPaymentId == other.cardPaymentId && + amount == other.amount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardPaymentId, amount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardPaymentId, amount, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -490,10 +493,13 @@ private constructor( return true } - return /* spotless:off */ other is CardReversalCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardReversalCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CardReversalCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardsettlements/CardSettlementCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardsettlements/CardSettlementCreateParams.kt index c7e89b32c..72c89181c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardsettlements/CardSettlementCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/cardsettlements/CardSettlementCreateParams.kt @@ -548,12 +548,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && cardId == other.cardId && pendingTransactionId == other.pendingTransactionId && amount == other.amount && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + cardId == other.cardId && + pendingTransactionId == other.pendingTransactionId && + amount == other.amount && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardId, pendingTransactionId, amount, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(cardId, pendingTransactionId, amount, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -566,10 +570,13 @@ private constructor( return true } - return /* spotless:off */ other is CardSettlementCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is CardSettlementCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "CardSettlementCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositRejectParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositRejectParams.kt index 02f467a53..be1b4ef43 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositRejectParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositRejectParams.kt @@ -221,10 +221,20 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositRejectParams && checkDepositId == other.checkDepositId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is CheckDepositRejectParams && + checkDepositId == other.checkDepositId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(checkDepositId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + checkDepositId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "CheckDepositRejectParams{checkDepositId=$checkDepositId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositReturnParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositReturnParams.kt index b6186e1ad..737a4b38a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositReturnParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositReturnParams.kt @@ -221,10 +221,20 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositReturnParams && checkDepositId == other.checkDepositId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is CheckDepositReturnParams && + checkDepositId == other.checkDepositId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(checkDepositId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + checkDepositId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "CheckDepositReturnParams{checkDepositId=$checkDepositId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositSubmitParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositSubmitParams.kt index b1a34269e..732ea0f7b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositSubmitParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checkdeposits/CheckDepositSubmitParams.kt @@ -221,10 +221,20 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositSubmitParams && checkDepositId == other.checkDepositId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is CheckDepositSubmitParams && + checkDepositId == other.checkDepositId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(checkDepositId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + checkDepositId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "CheckDepositSubmitParams{checkDepositId=$checkDepositId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checktransfers/CheckTransferMailParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checktransfers/CheckTransferMailParams.kt index c82b30999..5e07b09dd 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checktransfers/CheckTransferMailParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/checktransfers/CheckTransferMailParams.kt @@ -224,10 +224,20 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferMailParams && checkTransferId == other.checkTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is CheckTransferMailParams && + checkTransferId == other.checkTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(checkTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + checkTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "CheckTransferMailParams{checkTransferId=$checkTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/digitalwallettokenrequests/DigitalWalletTokenRequestCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/digitalwallettokenrequests/DigitalWalletTokenRequestCreateParams.kt index 4408faf6f..fc0bb1987 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/digitalwallettokenrequests/DigitalWalletTokenRequestCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/digitalwallettokenrequests/DigitalWalletTokenRequestCreateParams.kt @@ -387,12 +387,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && cardId == other.cardId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + cardId == other.cardId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(cardId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -404,10 +404,13 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletTokenRequestCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DigitalWalletTokenRequestCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "DigitalWalletTokenRequestCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/digitalwallettokenrequests/DigitalWalletTokenRequestCreateResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/digitalwallettokenrequests/DigitalWalletTokenRequestCreateResponse.kt index 24fd8d3b6..51af305fc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/digitalwallettokenrequests/DigitalWalletTokenRequestCreateResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/digitalwallettokenrequests/DigitalWalletTokenRequestCreateResponse.kt @@ -423,7 +423,7 @@ private constructor( return true } - return /* spotless:off */ other is DeclineReason && value == other.value /* spotless:on */ + return other is DeclineReason && value == other.value } override fun hashCode() = value.hashCode() @@ -552,7 +552,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -565,12 +565,16 @@ private constructor( return true } - return /* spotless:off */ other is DigitalWalletTokenRequestCreateResponse && declineReason == other.declineReason && digitalWalletTokenId == other.digitalWalletTokenId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DigitalWalletTokenRequestCreateResponse && + declineReason == other.declineReason && + digitalWalletTokenId == other.digitalWalletTokenId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(declineReason, digitalWalletTokenId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(declineReason, digitalWalletTokenId, type, additionalProperties) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/documents/DocumentCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/documents/DocumentCreateParams.kt index c0f35ef07..cf2623c5b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/documents/DocumentCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/documents/DocumentCreateParams.kt @@ -386,12 +386,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(accountId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -404,10 +404,13 @@ private constructor( return true } - return /* spotless:off */ other is DocumentCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is DocumentCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "DocumentCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundachtransfers/InboundAchTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundachtransfers/InboundAchTransferCreateParams.kt index 263fd3c7d..da4a8b75b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundachtransfers/InboundAchTransferCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundachtransfers/InboundAchTransferCreateParams.kt @@ -1224,12 +1224,39 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountNumberId == other.accountNumberId && amount == other.amount && addenda == other.addenda && companyDescriptiveDate == other.companyDescriptiveDate && companyDiscretionaryData == other.companyDiscretionaryData && companyEntryDescription == other.companyEntryDescription && companyId == other.companyId && companyName == other.companyName && receiverIdNumber == other.receiverIdNumber && receiverName == other.receiverName && resolveAt == other.resolveAt && standardEntryClassCode == other.standardEntryClassCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountNumberId == other.accountNumberId && + amount == other.amount && + addenda == other.addenda && + companyDescriptiveDate == other.companyDescriptiveDate && + companyDiscretionaryData == other.companyDiscretionaryData && + companyEntryDescription == other.companyEntryDescription && + companyId == other.companyId && + companyName == other.companyName && + receiverIdNumber == other.receiverIdNumber && + receiverName == other.receiverName && + resolveAt == other.resolveAt && + standardEntryClassCode == other.standardEntryClassCode && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumberId, amount, addenda, companyDescriptiveDate, companyDiscretionaryData, companyEntryDescription, companyId, companyName, receiverIdNumber, receiverName, resolveAt, standardEntryClassCode, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountNumberId, + amount, + addenda, + companyDescriptiveDate, + companyDiscretionaryData, + companyEntryDescription, + companyId, + companyName, + receiverIdNumber, + receiverName, + resolveAt, + standardEntryClassCode, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1538,7 +1565,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -1872,12 +1899,14 @@ private constructor( return true } - return /* spotless:off */ other is Entry && paymentRelatedInformation == other.paymentRelatedInformation && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Entry && + paymentRelatedInformation == other.paymentRelatedInformation && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(paymentRelatedInformation, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(paymentRelatedInformation, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1890,12 +1919,12 @@ private constructor( return true } - return /* spotless:off */ other is Freeform && entries == other.entries && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Freeform && + entries == other.entries && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(entries, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1908,12 +1937,13 @@ private constructor( return true } - return /* spotless:off */ other is Addenda && category == other.category && freeform == other.freeform && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Addenda && + category == other.category && + freeform == other.freeform && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(category, freeform, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2180,7 +2210,7 @@ private constructor( return true } - return /* spotless:off */ other is StandardEntryClassCode && value == other.value /* spotless:on */ + return other is StandardEntryClassCode && value == other.value } override fun hashCode() = value.hashCode() @@ -2193,10 +2223,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundAchTransferCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundAchTransferCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundcheckdeposits/InboundCheckDepositCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundcheckdeposits/InboundCheckDepositCreateParams.kt index 2e880e1dc..1d39d808f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundcheckdeposits/InboundCheckDepositCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundcheckdeposits/InboundCheckDepositCreateParams.kt @@ -547,12 +547,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountNumberId == other.accountNumberId && amount == other.amount && checkNumber == other.checkNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountNumberId == other.accountNumberId && + amount == other.amount && + checkNumber == other.checkNumber && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumberId, amount, checkNumber, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(accountNumberId, amount, checkNumber, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -565,10 +569,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDepositCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundCheckDepositCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundCheckDepositCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundfundsholds/InboundFundsHoldReleaseParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundfundsholds/InboundFundsHoldReleaseParams.kt index d09097ceb..55b27f095 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundfundsholds/InboundFundsHoldReleaseParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundfundsholds/InboundFundsHoldReleaseParams.kt @@ -228,10 +228,20 @@ private constructor( return true } - return /* spotless:off */ other is InboundFundsHoldReleaseParams && inboundFundsHoldId == other.inboundFundsHoldId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is InboundFundsHoldReleaseParams && + inboundFundsHoldId == other.inboundFundsHoldId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(inboundFundsHoldId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + inboundFundsHoldId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "InboundFundsHoldReleaseParams{inboundFundsHoldId=$inboundFundsHoldId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundfundsholds/InboundFundsHoldReleaseResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundfundsholds/InboundFundsHoldReleaseResponse.kt index 09428c9e8..9ff82d30d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundfundsholds/InboundFundsHoldReleaseResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundfundsholds/InboundFundsHoldReleaseResponse.kt @@ -726,7 +726,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -860,7 +860,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -985,7 +985,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -998,12 +998,35 @@ private constructor( return true } - return /* spotless:off */ other is InboundFundsHoldReleaseResponse && id == other.id && amount == other.amount && automaticallyReleasesAt == other.automaticallyReleasesAt && createdAt == other.createdAt && currency == other.currency && heldTransactionId == other.heldTransactionId && pendingTransactionId == other.pendingTransactionId && releasedAt == other.releasedAt && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundFundsHoldReleaseResponse && + id == other.id && + amount == other.amount && + automaticallyReleasesAt == other.automaticallyReleasesAt && + createdAt == other.createdAt && + currency == other.currency && + heldTransactionId == other.heldTransactionId && + pendingTransactionId == other.pendingTransactionId && + releasedAt == other.releasedAt && + status == other.status && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, automaticallyReleasesAt, createdAt, currency, heldTransactionId, pendingTransactionId, releasedAt, status, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + automaticallyReleasesAt, + createdAt, + currency, + heldTransactionId, + pendingTransactionId, + releasedAt, + status, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundmailitems/InboundMailItemCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundmailitems/InboundMailItemCreateParams.kt index d1a08ee96..204d4613b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundmailitems/InboundMailItemCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundmailitems/InboundMailItemCreateParams.kt @@ -540,12 +540,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && amount == other.amount && lockboxId == other.lockboxId && contentsFileId == other.contentsFileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + amount == other.amount && + lockboxId == other.lockboxId && + contentsFileId == other.contentsFileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, lockboxId, contentsFileId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, lockboxId, contentsFileId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -558,10 +562,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundMailItemCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundMailItemCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundMailItemCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferCreateParams.kt index e2bb919e4..96c82a583 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferCreateParams.kt @@ -855,13 +855,30 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountNumberId == other.accountNumberId && amount == other.amount && debtorAccountNumber == other.debtorAccountNumber && debtorName == other.debtorName && debtorRoutingNumber == other.debtorRoutingNumber && remittanceInformation == other.remittanceInformation && requestForPaymentId == other.requestForPaymentId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountNumberId == other.accountNumberId && + amount == other.amount && + debtorAccountNumber == other.debtorAccountNumber && + debtorName == other.debtorName && + debtorRoutingNumber == other.debtorRoutingNumber && + remittanceInformation == other.remittanceInformation && + requestForPaymentId == other.requestForPaymentId && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + accountNumberId, + amount, + debtorAccountNumber, + debtorName, + debtorRoutingNumber, + remittanceInformation, + requestForPaymentId, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumberId, amount, debtorAccountNumber, debtorName, debtorRoutingNumber, remittanceInformation, requestForPaymentId, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -873,10 +890,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransferCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundRealTimePaymentsTransferCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundRealTimePaymentsTransferCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundwiredrawdownrequests/InboundWireDrawdownRequestCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundwiredrawdownrequests/InboundWireDrawdownRequestCreateParams.kt index 0ac9ceb86..30c377adf 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundwiredrawdownrequests/InboundWireDrawdownRequestCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundwiredrawdownrequests/InboundWireDrawdownRequestCreateParams.kt @@ -1961,13 +1961,60 @@ private constructor( return true } - return /* spotless:off */ other is Body && amount == other.amount && beneficiaryAccountNumber == other.beneficiaryAccountNumber && beneficiaryRoutingNumber == other.beneficiaryRoutingNumber && currency == other.currency && messageToRecipient == other.messageToRecipient && originatorAccountNumber == other.originatorAccountNumber && originatorRoutingNumber == other.originatorRoutingNumber && recipientAccountNumberId == other.recipientAccountNumberId && beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && beneficiaryName == other.beneficiaryName && originatorAddressLine1 == other.originatorAddressLine1 && originatorAddressLine2 == other.originatorAddressLine2 && originatorAddressLine3 == other.originatorAddressLine3 && originatorName == other.originatorName && originatorToBeneficiaryInformationLine1 == other.originatorToBeneficiaryInformationLine1 && originatorToBeneficiaryInformationLine2 == other.originatorToBeneficiaryInformationLine2 && originatorToBeneficiaryInformationLine3 == other.originatorToBeneficiaryInformationLine3 && originatorToBeneficiaryInformationLine4 == other.originatorToBeneficiaryInformationLine4 && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + amount == other.amount && + beneficiaryAccountNumber == other.beneficiaryAccountNumber && + beneficiaryRoutingNumber == other.beneficiaryRoutingNumber && + currency == other.currency && + messageToRecipient == other.messageToRecipient && + originatorAccountNumber == other.originatorAccountNumber && + originatorRoutingNumber == other.originatorRoutingNumber && + recipientAccountNumberId == other.recipientAccountNumberId && + beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && + beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && + beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && + beneficiaryName == other.beneficiaryName && + originatorAddressLine1 == other.originatorAddressLine1 && + originatorAddressLine2 == other.originatorAddressLine2 && + originatorAddressLine3 == other.originatorAddressLine3 && + originatorName == other.originatorName && + originatorToBeneficiaryInformationLine1 == + other.originatorToBeneficiaryInformationLine1 && + originatorToBeneficiaryInformationLine2 == + other.originatorToBeneficiaryInformationLine2 && + originatorToBeneficiaryInformationLine3 == + other.originatorToBeneficiaryInformationLine3 && + originatorToBeneficiaryInformationLine4 == + other.originatorToBeneficiaryInformationLine4 && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + amount, + beneficiaryAccountNumber, + beneficiaryRoutingNumber, + currency, + messageToRecipient, + originatorAccountNumber, + originatorRoutingNumber, + recipientAccountNumberId, + beneficiaryAddressLine1, + beneficiaryAddressLine2, + beneficiaryAddressLine3, + beneficiaryName, + originatorAddressLine1, + originatorAddressLine2, + originatorAddressLine3, + originatorName, + originatorToBeneficiaryInformationLine1, + originatorToBeneficiaryInformationLine2, + originatorToBeneficiaryInformationLine3, + originatorToBeneficiaryInformationLine4, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, beneficiaryAccountNumber, beneficiaryRoutingNumber, currency, messageToRecipient, originatorAccountNumber, originatorRoutingNumber, recipientAccountNumberId, beneficiaryAddressLine1, beneficiaryAddressLine2, beneficiaryAddressLine3, beneficiaryName, originatorAddressLine1, originatorAddressLine2, originatorAddressLine3, originatorName, originatorToBeneficiaryInformationLine1, originatorToBeneficiaryInformationLine2, originatorToBeneficiaryInformationLine3, originatorToBeneficiaryInformationLine4, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -1979,10 +2026,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireDrawdownRequestCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundWireDrawdownRequestCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundWireDrawdownRequestCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundwiretransfers/InboundWireTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundwiretransfers/InboundWireTransferCreateParams.kt index bad638af6..fba1e30d4 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundwiretransfers/InboundWireTransferCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/inboundwiretransfers/InboundWireTransferCreateParams.kt @@ -1875,12 +1875,55 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountNumberId == other.accountNumberId && amount == other.amount && beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && beneficiaryName == other.beneficiaryName && beneficiaryReference == other.beneficiaryReference && originatorAddressLine1 == other.originatorAddressLine1 && originatorAddressLine2 == other.originatorAddressLine2 && originatorAddressLine3 == other.originatorAddressLine3 && originatorName == other.originatorName && originatorRoutingNumber == other.originatorRoutingNumber && originatorToBeneficiaryInformationLine1 == other.originatorToBeneficiaryInformationLine1 && originatorToBeneficiaryInformationLine2 == other.originatorToBeneficiaryInformationLine2 && originatorToBeneficiaryInformationLine3 == other.originatorToBeneficiaryInformationLine3 && originatorToBeneficiaryInformationLine4 == other.originatorToBeneficiaryInformationLine4 && senderReference == other.senderReference && wireDrawdownRequestId == other.wireDrawdownRequestId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountNumberId == other.accountNumberId && + amount == other.amount && + beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && + beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && + beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && + beneficiaryName == other.beneficiaryName && + beneficiaryReference == other.beneficiaryReference && + originatorAddressLine1 == other.originatorAddressLine1 && + originatorAddressLine2 == other.originatorAddressLine2 && + originatorAddressLine3 == other.originatorAddressLine3 && + originatorName == other.originatorName && + originatorRoutingNumber == other.originatorRoutingNumber && + originatorToBeneficiaryInformationLine1 == + other.originatorToBeneficiaryInformationLine1 && + originatorToBeneficiaryInformationLine2 == + other.originatorToBeneficiaryInformationLine2 && + originatorToBeneficiaryInformationLine3 == + other.originatorToBeneficiaryInformationLine3 && + originatorToBeneficiaryInformationLine4 == + other.originatorToBeneficiaryInformationLine4 && + senderReference == other.senderReference && + wireDrawdownRequestId == other.wireDrawdownRequestId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumberId, amount, beneficiaryAddressLine1, beneficiaryAddressLine2, beneficiaryAddressLine3, beneficiaryName, beneficiaryReference, originatorAddressLine1, originatorAddressLine2, originatorAddressLine3, originatorName, originatorRoutingNumber, originatorToBeneficiaryInformationLine1, originatorToBeneficiaryInformationLine2, originatorToBeneficiaryInformationLine3, originatorToBeneficiaryInformationLine4, senderReference, wireDrawdownRequestId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountNumberId, + amount, + beneficiaryAddressLine1, + beneficiaryAddressLine2, + beneficiaryAddressLine3, + beneficiaryName, + beneficiaryReference, + originatorAddressLine1, + originatorAddressLine2, + originatorAddressLine3, + originatorName, + originatorRoutingNumber, + originatorToBeneficiaryInformationLine1, + originatorToBeneficiaryInformationLine2, + originatorToBeneficiaryInformationLine3, + originatorToBeneficiaryInformationLine4, + senderReference, + wireDrawdownRequestId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1893,10 +1936,13 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransferCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InboundWireTransferCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "InboundWireTransferCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/interestpayments/InterestPaymentCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/interestpayments/InterestPaymentCreateParams.kt index 2d5e85194..81251dcd7 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/interestpayments/InterestPaymentCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/interestpayments/InterestPaymentCreateParams.kt @@ -676,13 +676,26 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && amount == other.amount && accruedOnAccountId == other.accruedOnAccountId && periodEnd == other.periodEnd && periodStart == other.periodStart && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + amount == other.amount && + accruedOnAccountId == other.accruedOnAccountId && + periodEnd == other.periodEnd && + periodStart == other.periodStart && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + accountId, + amount, + accruedOnAccountId, + periodEnd, + periodStart, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, amount, accruedOnAccountId, periodEnd, periodStart, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -694,10 +707,13 @@ private constructor( return true } - return /* spotless:off */ other is InterestPaymentCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is InterestPaymentCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "InterestPaymentCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardAdvanceShipmentParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardAdvanceShipmentParams.kt index 1784332df..83f197ed5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardAdvanceShipmentParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardAdvanceShipmentParams.kt @@ -429,12 +429,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && shipmentStatus == other.shipmentStatus && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + shipmentStatus == other.shipmentStatus && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(shipmentStatus, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -644,7 +644,7 @@ private constructor( return true } - return /* spotless:off */ other is ShipmentStatus && value == other.value /* spotless:on */ + return other is ShipmentStatus && value == other.value } override fun hashCode() = value.hashCode() @@ -657,10 +657,15 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardAdvanceShipmentParams && physicalCardId == other.physicalCardId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardAdvanceShipmentParams && + physicalCardId == other.physicalCardId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(physicalCardId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(physicalCardId, body, additionalHeaders, additionalQueryParams) override fun toString() = "PhysicalCardAdvanceShipmentParams{physicalCardId=$physicalCardId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardTrackingUpdatesParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardTrackingUpdatesParams.kt index 3063bc2df..c42600b54 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardTrackingUpdatesParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/physicalcards/PhysicalCardTrackingUpdatesParams.kt @@ -697,13 +697,26 @@ private constructor( return true } - return /* spotless:off */ other is Body && category == other.category && carrierEstimatedDeliveryAt == other.carrierEstimatedDeliveryAt && city == other.city && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + category == other.category && + carrierEstimatedDeliveryAt == other.carrierEstimatedDeliveryAt && + city == other.city && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + category, + carrierEstimatedDeliveryAt, + city, + postalCode, + state, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, carrierEstimatedDeliveryAt, city, postalCode, state, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -854,7 +867,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -867,10 +880,15 @@ private constructor( return true } - return /* spotless:off */ other is PhysicalCardTrackingUpdatesParams && physicalCardId == other.physicalCardId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is PhysicalCardTrackingUpdatesParams && + physicalCardId == other.physicalCardId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(physicalCardId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(physicalCardId, body, additionalHeaders, additionalQueryParams) override fun toString() = "PhysicalCardTrackingUpdatesParams{physicalCardId=$physicalCardId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/programs/ProgramCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/programs/ProgramCreateParams.kt index 5e77498e4..c69db5255 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/programs/ProgramCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/programs/ProgramCreateParams.kt @@ -532,12 +532,16 @@ private constructor( return true } - return /* spotless:off */ other is Body && name == other.name && bank == other.bank && reserveAccountId == other.reserveAccountId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + name == other.name && + bank == other.bank && + reserveAccountId == other.reserveAccountId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(name, bank, reserveAccountId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(name, bank, reserveAccountId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -698,7 +702,7 @@ private constructor( return true } - return /* spotless:off */ other is Bank && value == other.value /* spotless:on */ + return other is Bank && value == other.value } override fun hashCode() = value.hashCode() @@ -711,10 +715,13 @@ private constructor( return true } - return /* spotless:off */ other is ProgramCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is ProgramCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "ProgramCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/realtimepaymentstransfers/RealTimePaymentsTransferCompleteParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/realtimepaymentstransfers/RealTimePaymentsTransferCompleteParams.kt index 361a0c576..678686755 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/realtimepaymentstransfers/RealTimePaymentsTransferCompleteParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/realtimepaymentstransfers/RealTimePaymentsTransferCompleteParams.kt @@ -402,12 +402,12 @@ private constructor( return true } - return /* spotless:off */ other is Body && rejection == other.rejection && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + rejection == other.rejection && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(rejection, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1056,7 +1056,7 @@ private constructor( return true } - return /* spotless:off */ other is RejectReasonCode && value == other.value /* spotless:on */ + return other is RejectReasonCode && value == other.value } override fun hashCode() = value.hashCode() @@ -1069,12 +1069,12 @@ private constructor( return true } - return /* spotless:off */ other is Rejection && rejectReasonCode == other.rejectReasonCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Rejection && + rejectReasonCode == other.rejectReasonCode && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(rejectReasonCode, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1087,10 +1087,15 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferCompleteParams && realTimePaymentsTransferId == other.realTimePaymentsTransferId && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is RealTimePaymentsTransferCompleteParams && + realTimePaymentsTransferId == other.realTimePaymentsTransferId && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(realTimePaymentsTransferId, body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(realTimePaymentsTransferId, body, additionalHeaders, additionalQueryParams) override fun toString() = "RealTimePaymentsTransferCompleteParams{realTimePaymentsTransferId=$realTimePaymentsTransferId, body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiredrawdownrequests/WireDrawdownRequestRefuseParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiredrawdownrequests/WireDrawdownRequestRefuseParams.kt index 24bde9bdd..23d0f384b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiredrawdownrequests/WireDrawdownRequestRefuseParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiredrawdownrequests/WireDrawdownRequestRefuseParams.kt @@ -228,10 +228,20 @@ private constructor( return true } - return /* spotless:off */ other is WireDrawdownRequestRefuseParams && wireDrawdownRequestId == other.wireDrawdownRequestId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is WireDrawdownRequestRefuseParams && + wireDrawdownRequestId == other.wireDrawdownRequestId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(wireDrawdownRequestId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + wireDrawdownRequestId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "WireDrawdownRequestRefuseParams{wireDrawdownRequestId=$wireDrawdownRequestId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiretransfers/WireTransferReverseParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiretransfers/WireTransferReverseParams.kt index 42dcfcdb7..cdf2152fc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiretransfers/WireTransferReverseParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiretransfers/WireTransferReverseParams.kt @@ -224,10 +224,20 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferReverseParams && wireTransferId == other.wireTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is WireTransferReverseParams && + wireTransferId == other.wireTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(wireTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + wireTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "WireTransferReverseParams{wireTransferId=$wireTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiretransfers/WireTransferSubmitParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiretransfers/WireTransferSubmitParams.kt index 42c2ca151..18507ca1b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiretransfers/WireTransferSubmitParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/simulations/wiretransfers/WireTransferSubmitParams.kt @@ -221,10 +221,20 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferSubmitParams && wireTransferId == other.wireTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is WireTransferSubmitParams && + wireTransferId == other.wireTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(wireTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + wireTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "WireTransferSubmitParams{wireTransferId=$wireTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/EntitySupplementalDocument.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/EntitySupplementalDocument.kt index a637c91c7..1bc57a380 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/EntitySupplementalDocument.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/EntitySupplementalDocument.kt @@ -448,7 +448,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -461,12 +461,18 @@ private constructor( return true } - return /* spotless:off */ other is EntitySupplementalDocument && createdAt == other.createdAt && entityId == other.entityId && fileId == other.fileId && idempotencyKey == other.idempotencyKey && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is EntitySupplementalDocument && + createdAt == other.createdAt && + entityId == other.entityId && + fileId == other.fileId && + idempotencyKey == other.idempotencyKey && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(createdAt, entityId, fileId, idempotencyKey, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(createdAt, entityId, fileId, idempotencyKey, type, additionalProperties) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentCreateParams.kt index 090cd42c6..ab7e7ddc2 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentCreateParams.kt @@ -458,12 +458,13 @@ private constructor( return true } - return /* spotless:off */ other is Body && entityId == other.entityId && fileId == other.fileId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + entityId == other.entityId && + fileId == other.fileId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(entityId, fileId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -476,10 +477,13 @@ private constructor( return true } - return /* spotless:off */ other is SupplementalDocumentCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is SupplementalDocumentCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "SupplementalDocumentCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPage.kt index 42ea02212..363840e40 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is SupplementalDocumentListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is SupplementalDocumentListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "SupplementalDocumentListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageAsync.kt index f1701e351..a5f795cb1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is SupplementalDocumentListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is SupplementalDocumentListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "SupplementalDocumentListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageResponse.kt index e9db6c3a3..f22e7ebf5 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageResponse.kt @@ -229,12 +229,13 @@ private constructor( return true } - return /* spotless:off */ other is SupplementalDocumentListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is SupplementalDocumentListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListParams.kt index eafff2bf0..2ad466e38 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListParams.kt @@ -254,10 +254,24 @@ private constructor( return true } - return /* spotless:off */ other is SupplementalDocumentListParams && entityId == other.entityId && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is SupplementalDocumentListParams && + entityId == other.entityId && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(entityId, cursor, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + entityId, + cursor, + idempotencyKey, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "SupplementalDocumentListParams{entityId=$entityId, cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/Transaction.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/Transaction.kt index fca6eb1c0..c0e91a2f7 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/Transaction.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/Transaction.kt @@ -708,7 +708,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -853,7 +853,7 @@ private constructor( return true } - return /* spotless:off */ other is RouteType && value == other.value /* spotless:on */ + return other is RouteType && value == other.value } override fun hashCode() = value.hashCode() @@ -3571,7 +3571,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -3584,12 +3584,27 @@ private constructor( return true } - return /* spotless:off */ other is AccountTransferIntention && amount == other.amount && currency == other.currency && description == other.description && destinationAccountId == other.destinationAccountId && sourceAccountId == other.sourceAccountId && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AccountTransferIntention && + amount == other.amount && + currency == other.currency && + description == other.description && + destinationAccountId == other.destinationAccountId && + sourceAccountId == other.sourceAccountId && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, description, destinationAccountId, sourceAccountId, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + currency, + description, + destinationAccountId, + sourceAccountId, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -3949,12 +3964,25 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferIntention && accountNumber == other.accountNumber && amount == other.amount && routingNumber == other.routingNumber && statementDescriptor == other.statementDescriptor && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchTransferIntention && + accountNumber == other.accountNumber && + amount == other.amount && + routingNumber == other.routingNumber && + statementDescriptor == other.statementDescriptor && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumber, amount, routingNumber, statementDescriptor, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountNumber, + amount, + routingNumber, + statementDescriptor, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -4125,12 +4153,12 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferRejection && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchTransferRejection && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(transferId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -5836,7 +5864,7 @@ private constructor( return true } - return /* spotless:off */ other is ReturnReasonCode && value == other.value /* spotless:on */ + return other is ReturnReasonCode && value == other.value } override fun hashCode() = value.hashCode() @@ -5849,12 +5877,27 @@ private constructor( return true } - return /* spotless:off */ other is AchTransferReturn && createdAt == other.createdAt && rawReturnReasonCode == other.rawReturnReasonCode && returnReasonCode == other.returnReasonCode && traceNumber == other.traceNumber && transactionId == other.transactionId && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is AchTransferReturn && + createdAt == other.createdAt && + rawReturnReasonCode == other.rawReturnReasonCode && + returnReasonCode == other.returnReasonCode && + traceNumber == other.traceNumber && + transactionId == other.transactionId && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(createdAt, rawReturnReasonCode, returnReasonCode, traceNumber, transactionId, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + createdAt, + rawReturnReasonCode, + returnReasonCode, + traceNumber, + transactionId, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -6124,12 +6167,16 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeAcceptance && acceptedAt == other.acceptedAt && cardDisputeId == other.cardDisputeId && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardDisputeAcceptance && + acceptedAt == other.acceptedAt && + cardDisputeId == other.cardDisputeId && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(acceptedAt, cardDisputeId, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(acceptedAt, cardDisputeId, transactionId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -6587,7 +6634,7 @@ private constructor( return true } - return /* spotless:off */ other is Network && value == other.value /* spotless:on */ + return other is Network && value == other.value } override fun hashCode() = value.hashCode() @@ -6944,7 +6991,7 @@ private constructor( return true } - return /* spotless:off */ other is EventType && value == other.value /* spotless:on */ + return other is EventType && value == other.value } override fun hashCode() = value.hashCode() @@ -6957,12 +7004,12 @@ private constructor( return true } - return /* spotless:off */ other is Visa && eventType == other.eventType && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Visa && + eventType == other.eventType && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(eventType, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -6975,12 +7022,25 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeFinancial && amount == other.amount && cardDisputeId == other.cardDisputeId && network == other.network && transactionId == other.transactionId && visa == other.visa && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardDisputeFinancial && + amount == other.amount && + cardDisputeId == other.cardDisputeId && + network == other.network && + transactionId == other.transactionId && + visa == other.visa && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, cardDisputeId, network, transactionId, visa, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + cardDisputeId, + network, + transactionId, + visa, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -7290,12 +7350,23 @@ private constructor( return true } - return /* spotless:off */ other is CardDisputeLoss && cardDisputeId == other.cardDisputeId && explanation == other.explanation && lostAt == other.lostAt && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardDisputeLoss && + cardDisputeId == other.cardDisputeId && + explanation == other.explanation && + lostAt == other.lostAt && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(cardDisputeId, explanation, lostAt, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + cardDisputeId, + explanation, + lostAt, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -7506,12 +7577,15 @@ private constructor( return true } - return /* spotless:off */ other is CardPushTransferAcceptance && amount == other.amount && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardPushTransferAcceptance && + amount == other.amount && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, transferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -8905,7 +8979,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -8918,12 +8992,15 @@ private constructor( return true } - return /* spotless:off */ other is Cashback && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cashback && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -9100,7 +9177,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -9527,7 +9604,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -9540,12 +9617,16 @@ private constructor( return true } - return /* spotless:off */ other is Interchange && amount == other.amount && code == other.code && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Interchange && + amount == other.amount && + code == other.code && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, code, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, code, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -9821,12 +9902,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && acquirerBusinessId == other.acquirerBusinessId && acquirerReferenceNumber == other.acquirerReferenceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + acquirerBusinessId == other.acquirerBusinessId && + acquirerReferenceNumber == other.acquirerReferenceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(acquirerBusinessId, acquirerReferenceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + acquirerBusinessId, + acquirerReferenceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -11723,7 +11813,7 @@ private constructor( return true } - return /* spotless:off */ other is ExtraCharges && value == other.value /* spotless:on */ + return other is ExtraCharges && value == other.value } override fun hashCode() = value.hashCode() @@ -11876,7 +11966,7 @@ private constructor( return true } - return /* spotless:off */ other is NoShowIndicator && value == other.value /* spotless:on */ + return other is NoShowIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -11889,13 +11979,48 @@ private constructor( return true } - return /* spotless:off */ other is CarRental && carClassCode == other.carClassCode && checkoutDate == other.checkoutDate && dailyRentalRateAmount == other.dailyRentalRateAmount && dailyRentalRateCurrency == other.dailyRentalRateCurrency && daysRented == other.daysRented && extraCharges == other.extraCharges && fuelChargesAmount == other.fuelChargesAmount && fuelChargesCurrency == other.fuelChargesCurrency && insuranceChargesAmount == other.insuranceChargesAmount && insuranceChargesCurrency == other.insuranceChargesCurrency && noShowIndicator == other.noShowIndicator && oneWayDropOffChargesAmount == other.oneWayDropOffChargesAmount && oneWayDropOffChargesCurrency == other.oneWayDropOffChargesCurrency && renterName == other.renterName && weeklyRentalRateAmount == other.weeklyRentalRateAmount && weeklyRentalRateCurrency == other.weeklyRentalRateCurrency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CarRental && + carClassCode == other.carClassCode && + checkoutDate == other.checkoutDate && + dailyRentalRateAmount == other.dailyRentalRateAmount && + dailyRentalRateCurrency == other.dailyRentalRateCurrency && + daysRented == other.daysRented && + extraCharges == other.extraCharges && + fuelChargesAmount == other.fuelChargesAmount && + fuelChargesCurrency == other.fuelChargesCurrency && + insuranceChargesAmount == other.insuranceChargesAmount && + insuranceChargesCurrency == other.insuranceChargesCurrency && + noShowIndicator == other.noShowIndicator && + oneWayDropOffChargesAmount == other.oneWayDropOffChargesAmount && + oneWayDropOffChargesCurrency == other.oneWayDropOffChargesCurrency && + renterName == other.renterName && + weeklyRentalRateAmount == other.weeklyRentalRateAmount && + weeklyRentalRateCurrency == other.weeklyRentalRateCurrency && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carClassCode, + checkoutDate, + dailyRentalRateAmount, + dailyRentalRateCurrency, + daysRented, + extraCharges, + fuelChargesAmount, + fuelChargesCurrency, + insuranceChargesAmount, + insuranceChargesCurrency, + noShowIndicator, + oneWayDropOffChargesAmount, + oneWayDropOffChargesCurrency, + renterName, + weeklyRentalRateAmount, + weeklyRentalRateCurrency, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carClassCode, checkoutDate, dailyRentalRateAmount, dailyRentalRateCurrency, daysRented, extraCharges, fuelChargesAmount, fuelChargesCurrency, insuranceChargesAmount, insuranceChargesCurrency, noShowIndicator, oneWayDropOffChargesAmount, oneWayDropOffChargesCurrency, renterName, weeklyRentalRateAmount, weeklyRentalRateCurrency, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -13147,7 +13272,7 @@ private constructor( return true } - return /* spotless:off */ other is ExtraCharges && value == other.value /* spotless:on */ + return other is ExtraCharges && value == other.value } override fun hashCode() = value.hashCode() @@ -13296,7 +13421,7 @@ private constructor( return true } - return /* spotless:off */ other is NoShowIndicator && value == other.value /* spotless:on */ + return other is NoShowIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -13309,13 +13434,48 @@ private constructor( return true } - return /* spotless:off */ other is Lodging && checkInDate == other.checkInDate && dailyRoomRateAmount == other.dailyRoomRateAmount && dailyRoomRateCurrency == other.dailyRoomRateCurrency && extraCharges == other.extraCharges && folioCashAdvancesAmount == other.folioCashAdvancesAmount && folioCashAdvancesCurrency == other.folioCashAdvancesCurrency && foodBeverageChargesAmount == other.foodBeverageChargesAmount && foodBeverageChargesCurrency == other.foodBeverageChargesCurrency && noShowIndicator == other.noShowIndicator && prepaidExpensesAmount == other.prepaidExpensesAmount && prepaidExpensesCurrency == other.prepaidExpensesCurrency && roomNights == other.roomNights && totalRoomTaxAmount == other.totalRoomTaxAmount && totalRoomTaxCurrency == other.totalRoomTaxCurrency && totalTaxAmount == other.totalTaxAmount && totalTaxCurrency == other.totalTaxCurrency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Lodging && + checkInDate == other.checkInDate && + dailyRoomRateAmount == other.dailyRoomRateAmount && + dailyRoomRateCurrency == other.dailyRoomRateCurrency && + extraCharges == other.extraCharges && + folioCashAdvancesAmount == other.folioCashAdvancesAmount && + folioCashAdvancesCurrency == other.folioCashAdvancesCurrency && + foodBeverageChargesAmount == other.foodBeverageChargesAmount && + foodBeverageChargesCurrency == other.foodBeverageChargesCurrency && + noShowIndicator == other.noShowIndicator && + prepaidExpensesAmount == other.prepaidExpensesAmount && + prepaidExpensesCurrency == other.prepaidExpensesCurrency && + roomNights == other.roomNights && + totalRoomTaxAmount == other.totalRoomTaxAmount && + totalRoomTaxCurrency == other.totalRoomTaxCurrency && + totalTaxAmount == other.totalTaxAmount && + totalTaxCurrency == other.totalTaxCurrency && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + checkInDate, + dailyRoomRateAmount, + dailyRoomRateCurrency, + extraCharges, + folioCashAdvancesAmount, + folioCashAdvancesCurrency, + foodBeverageChargesAmount, + foodBeverageChargesCurrency, + noShowIndicator, + prepaidExpensesAmount, + prepaidExpensesCurrency, + roomNights, + totalRoomTaxAmount, + totalRoomTaxCurrency, + totalTaxAmount, + totalTaxCurrency, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(checkInDate, dailyRoomRateAmount, dailyRoomRateCurrency, extraCharges, folioCashAdvancesAmount, folioCashAdvancesCurrency, foodBeverageChargesAmount, foodBeverageChargesCurrency, noShowIndicator, prepaidExpensesAmount, prepaidExpensesCurrency, roomNights, totalRoomTaxAmount, totalRoomTaxCurrency, totalTaxAmount, totalTaxCurrency, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -13488,7 +13648,7 @@ private constructor( return true } - return /* spotless:off */ other is PurchaseIdentifierFormat && value == other.value /* spotless:on */ + return other is PurchaseIdentifierFormat && value == other.value } override fun hashCode() = value.hashCode() @@ -14894,7 +15054,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditReasonIndicator && value == other.value /* spotless:on */ + return other is CreditReasonIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -15464,7 +15624,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -15477,12 +15637,15 @@ private constructor( return true } - return /* spotless:off */ other is Service && category == other.category && subCategory == other.subCategory && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Service && + category == other.category && + subCategory == other.subCategory && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, subCategory, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, subCategory, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -15495,13 +15658,27 @@ private constructor( return true } - return /* spotless:off */ other is Ancillary && connectedTicketDocumentNumber == other.connectedTicketDocumentNumber && creditReasonIndicator == other.creditReasonIndicator && passengerNameOrDescription == other.passengerNameOrDescription && services == other.services && ticketDocumentNumber == other.ticketDocumentNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Ancillary && + connectedTicketDocumentNumber == + other.connectedTicketDocumentNumber && + creditReasonIndicator == other.creditReasonIndicator && + passengerNameOrDescription == other.passengerNameOrDescription && + services == other.services && + ticketDocumentNumber == other.ticketDocumentNumber && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + connectedTicketDocumentNumber, + creditReasonIndicator, + passengerNameOrDescription, + services, + ticketDocumentNumber, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(connectedTicketDocumentNumber, creditReasonIndicator, passengerNameOrDescription, services, ticketDocumentNumber, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -15709,7 +15886,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditReasonIndicator && value == other.value /* spotless:on */ + return other is CreditReasonIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -15860,7 +16037,7 @@ private constructor( return true } - return /* spotless:off */ other is RestrictedTicketIndicator && value == other.value /* spotless:on */ + return other is RestrictedTicketIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -16017,7 +16194,7 @@ private constructor( return true } - return /* spotless:off */ other is TicketChangeIndicator && value == other.value /* spotless:on */ + return other is TicketChangeIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -16613,7 +16790,7 @@ private constructor( return true } - return /* spotless:off */ other is StopOverCode && value == other.value /* spotless:on */ + return other is StopOverCode && value == other.value } override fun hashCode() = value.hashCode() @@ -16626,13 +16803,28 @@ private constructor( return true } - return /* spotless:off */ other is TripLeg && carrierCode == other.carrierCode && destinationCityAirportCode == other.destinationCityAirportCode && fareBasisCode == other.fareBasisCode && flightNumber == other.flightNumber && serviceClass == other.serviceClass && stopOverCode == other.stopOverCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TripLeg && + carrierCode == other.carrierCode && + destinationCityAirportCode == other.destinationCityAirportCode && + fareBasisCode == other.fareBasisCode && + flightNumber == other.flightNumber && + serviceClass == other.serviceClass && + stopOverCode == other.stopOverCode && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carrierCode, + destinationCityAirportCode, + fareBasisCode, + flightNumber, + serviceClass, + stopOverCode, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carrierCode, destinationCityAirportCode, fareBasisCode, flightNumber, serviceClass, stopOverCode, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -16644,13 +16836,40 @@ private constructor( return true } - return /* spotless:off */ other is Travel && ancillary == other.ancillary && computerizedReservationSystem == other.computerizedReservationSystem && creditReasonIndicator == other.creditReasonIndicator && departureDate == other.departureDate && originationCityAirportCode == other.originationCityAirportCode && passengerName == other.passengerName && restrictedTicketIndicator == other.restrictedTicketIndicator && ticketChangeIndicator == other.ticketChangeIndicator && ticketNumber == other.ticketNumber && travelAgencyCode == other.travelAgencyCode && travelAgencyName == other.travelAgencyName && tripLegs == other.tripLegs && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Travel && + ancillary == other.ancillary && + computerizedReservationSystem == other.computerizedReservationSystem && + creditReasonIndicator == other.creditReasonIndicator && + departureDate == other.departureDate && + originationCityAirportCode == other.originationCityAirportCode && + passengerName == other.passengerName && + restrictedTicketIndicator == other.restrictedTicketIndicator && + ticketChangeIndicator == other.ticketChangeIndicator && + ticketNumber == other.ticketNumber && + travelAgencyCode == other.travelAgencyCode && + travelAgencyName == other.travelAgencyName && + tripLegs == other.tripLegs && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + ancillary, + computerizedReservationSystem, + creditReasonIndicator, + departureDate, + originationCityAirportCode, + passengerName, + restrictedTicketIndicator, + ticketChangeIndicator, + ticketNumber, + travelAgencyCode, + travelAgencyName, + tripLegs, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(ancillary, computerizedReservationSystem, creditReasonIndicator, departureDate, originationCityAirportCode, passengerName, restrictedTicketIndicator, ticketChangeIndicator, ticketNumber, travelAgencyCode, travelAgencyName, tripLegs, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -16662,13 +16881,36 @@ private constructor( return true } - return /* spotless:off */ other is PurchaseDetails && carRental == other.carRental && customerReferenceIdentifier == other.customerReferenceIdentifier && localTaxAmount == other.localTaxAmount && localTaxCurrency == other.localTaxCurrency && lodging == other.lodging && nationalTaxAmount == other.nationalTaxAmount && nationalTaxCurrency == other.nationalTaxCurrency && purchaseIdentifier == other.purchaseIdentifier && purchaseIdentifierFormat == other.purchaseIdentifierFormat && travel == other.travel && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PurchaseDetails && + carRental == other.carRental && + customerReferenceIdentifier == other.customerReferenceIdentifier && + localTaxAmount == other.localTaxAmount && + localTaxCurrency == other.localTaxCurrency && + lodging == other.lodging && + nationalTaxAmount == other.nationalTaxAmount && + nationalTaxCurrency == other.nationalTaxCurrency && + purchaseIdentifier == other.purchaseIdentifier && + purchaseIdentifierFormat == other.purchaseIdentifierFormat && + travel == other.travel && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carRental, + customerReferenceIdentifier, + localTaxAmount, + localTaxCurrency, + lodging, + nationalTaxAmount, + nationalTaxCurrency, + purchaseIdentifier, + purchaseIdentifierFormat, + travel, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carRental, customerReferenceIdentifier, localTaxAmount, localTaxCurrency, lodging, nationalTaxAmount, nationalTaxCurrency, purchaseIdentifier, purchaseIdentifierFormat, travel, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -16795,7 +17037,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -16808,12 +17050,53 @@ private constructor( return true } - return /* spotless:off */ other is CardRefund && id == other.id && amount == other.amount && cardPaymentId == other.cardPaymentId && cashback == other.cashback && currency == other.currency && interchange == other.interchange && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantName == other.merchantName && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkIdentifiers == other.networkIdentifiers && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && purchaseDetails == other.purchaseDetails && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardRefund && + id == other.id && + amount == other.amount && + cardPaymentId == other.cardPaymentId && + cashback == other.cashback && + currency == other.currency && + interchange == other.interchange && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantName == other.merchantName && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkIdentifiers == other.networkIdentifiers && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + purchaseDetails == other.purchaseDetails && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, cardPaymentId, cashback, currency, interchange, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantName, merchantPostalCode, merchantState, networkIdentifiers, presentmentAmount, presentmentCurrency, purchaseDetails, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + cardPaymentId, + cashback, + currency, + interchange, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantName, + merchantPostalCode, + merchantState, + networkIdentifiers, + presentmentAmount, + presentmentCurrency, + purchaseDetails, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -17339,7 +17622,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -17352,12 +17635,25 @@ private constructor( return true } - return /* spotless:off */ other is CardRevenuePayment && amount == other.amount && currency == other.currency && periodEnd == other.periodEnd && periodStart == other.periodStart && transactedOnAccountId == other.transactedOnAccountId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardRevenuePayment && + amount == other.amount && + currency == other.currency && + periodEnd == other.periodEnd && + periodStart == other.periodStart && + transactedOnAccountId == other.transactedOnAccountId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, periodEnd, periodStart, transactedOnAccountId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + currency, + periodEnd, + periodStart, + transactedOnAccountId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -18860,7 +19156,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -18873,12 +19169,15 @@ private constructor( return true } - return /* spotless:off */ other is Cashback && amount == other.amount && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cashback && + amount == other.amount && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -19055,7 +19354,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -19482,7 +19781,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -19495,12 +19794,16 @@ private constructor( return true } - return /* spotless:off */ other is Interchange && amount == other.amount && code == other.code && currency == other.currency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Interchange && + amount == other.amount && + code == other.code && + currency == other.currency && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, code, currency, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, code, currency, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -19776,12 +20079,21 @@ private constructor( return true } - return /* spotless:off */ other is NetworkIdentifiers && acquirerBusinessId == other.acquirerBusinessId && acquirerReferenceNumber == other.acquirerReferenceNumber && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is NetworkIdentifiers && + acquirerBusinessId == other.acquirerBusinessId && + acquirerReferenceNumber == other.acquirerReferenceNumber && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(acquirerBusinessId, acquirerReferenceNumber, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + acquirerBusinessId, + acquirerReferenceNumber, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -21678,7 +21990,7 @@ private constructor( return true } - return /* spotless:off */ other is ExtraCharges && value == other.value /* spotless:on */ + return other is ExtraCharges && value == other.value } override fun hashCode() = value.hashCode() @@ -21831,7 +22143,7 @@ private constructor( return true } - return /* spotless:off */ other is NoShowIndicator && value == other.value /* spotless:on */ + return other is NoShowIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -21844,13 +22156,48 @@ private constructor( return true } - return /* spotless:off */ other is CarRental && carClassCode == other.carClassCode && checkoutDate == other.checkoutDate && dailyRentalRateAmount == other.dailyRentalRateAmount && dailyRentalRateCurrency == other.dailyRentalRateCurrency && daysRented == other.daysRented && extraCharges == other.extraCharges && fuelChargesAmount == other.fuelChargesAmount && fuelChargesCurrency == other.fuelChargesCurrency && insuranceChargesAmount == other.insuranceChargesAmount && insuranceChargesCurrency == other.insuranceChargesCurrency && noShowIndicator == other.noShowIndicator && oneWayDropOffChargesAmount == other.oneWayDropOffChargesAmount && oneWayDropOffChargesCurrency == other.oneWayDropOffChargesCurrency && renterName == other.renterName && weeklyRentalRateAmount == other.weeklyRentalRateAmount && weeklyRentalRateCurrency == other.weeklyRentalRateCurrency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CarRental && + carClassCode == other.carClassCode && + checkoutDate == other.checkoutDate && + dailyRentalRateAmount == other.dailyRentalRateAmount && + dailyRentalRateCurrency == other.dailyRentalRateCurrency && + daysRented == other.daysRented && + extraCharges == other.extraCharges && + fuelChargesAmount == other.fuelChargesAmount && + fuelChargesCurrency == other.fuelChargesCurrency && + insuranceChargesAmount == other.insuranceChargesAmount && + insuranceChargesCurrency == other.insuranceChargesCurrency && + noShowIndicator == other.noShowIndicator && + oneWayDropOffChargesAmount == other.oneWayDropOffChargesAmount && + oneWayDropOffChargesCurrency == other.oneWayDropOffChargesCurrency && + renterName == other.renterName && + weeklyRentalRateAmount == other.weeklyRentalRateAmount && + weeklyRentalRateCurrency == other.weeklyRentalRateCurrency && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carClassCode, + checkoutDate, + dailyRentalRateAmount, + dailyRentalRateCurrency, + daysRented, + extraCharges, + fuelChargesAmount, + fuelChargesCurrency, + insuranceChargesAmount, + insuranceChargesCurrency, + noShowIndicator, + oneWayDropOffChargesAmount, + oneWayDropOffChargesCurrency, + renterName, + weeklyRentalRateAmount, + weeklyRentalRateCurrency, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carClassCode, checkoutDate, dailyRentalRateAmount, dailyRentalRateCurrency, daysRented, extraCharges, fuelChargesAmount, fuelChargesCurrency, insuranceChargesAmount, insuranceChargesCurrency, noShowIndicator, oneWayDropOffChargesAmount, oneWayDropOffChargesCurrency, renterName, weeklyRentalRateAmount, weeklyRentalRateCurrency, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -23102,7 +23449,7 @@ private constructor( return true } - return /* spotless:off */ other is ExtraCharges && value == other.value /* spotless:on */ + return other is ExtraCharges && value == other.value } override fun hashCode() = value.hashCode() @@ -23251,7 +23598,7 @@ private constructor( return true } - return /* spotless:off */ other is NoShowIndicator && value == other.value /* spotless:on */ + return other is NoShowIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -23264,13 +23611,48 @@ private constructor( return true } - return /* spotless:off */ other is Lodging && checkInDate == other.checkInDate && dailyRoomRateAmount == other.dailyRoomRateAmount && dailyRoomRateCurrency == other.dailyRoomRateCurrency && extraCharges == other.extraCharges && folioCashAdvancesAmount == other.folioCashAdvancesAmount && folioCashAdvancesCurrency == other.folioCashAdvancesCurrency && foodBeverageChargesAmount == other.foodBeverageChargesAmount && foodBeverageChargesCurrency == other.foodBeverageChargesCurrency && noShowIndicator == other.noShowIndicator && prepaidExpensesAmount == other.prepaidExpensesAmount && prepaidExpensesCurrency == other.prepaidExpensesCurrency && roomNights == other.roomNights && totalRoomTaxAmount == other.totalRoomTaxAmount && totalRoomTaxCurrency == other.totalRoomTaxCurrency && totalTaxAmount == other.totalTaxAmount && totalTaxCurrency == other.totalTaxCurrency && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Lodging && + checkInDate == other.checkInDate && + dailyRoomRateAmount == other.dailyRoomRateAmount && + dailyRoomRateCurrency == other.dailyRoomRateCurrency && + extraCharges == other.extraCharges && + folioCashAdvancesAmount == other.folioCashAdvancesAmount && + folioCashAdvancesCurrency == other.folioCashAdvancesCurrency && + foodBeverageChargesAmount == other.foodBeverageChargesAmount && + foodBeverageChargesCurrency == other.foodBeverageChargesCurrency && + noShowIndicator == other.noShowIndicator && + prepaidExpensesAmount == other.prepaidExpensesAmount && + prepaidExpensesCurrency == other.prepaidExpensesCurrency && + roomNights == other.roomNights && + totalRoomTaxAmount == other.totalRoomTaxAmount && + totalRoomTaxCurrency == other.totalRoomTaxCurrency && + totalTaxAmount == other.totalTaxAmount && + totalTaxCurrency == other.totalTaxCurrency && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + checkInDate, + dailyRoomRateAmount, + dailyRoomRateCurrency, + extraCharges, + folioCashAdvancesAmount, + folioCashAdvancesCurrency, + foodBeverageChargesAmount, + foodBeverageChargesCurrency, + noShowIndicator, + prepaidExpensesAmount, + prepaidExpensesCurrency, + roomNights, + totalRoomTaxAmount, + totalRoomTaxCurrency, + totalTaxAmount, + totalTaxCurrency, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(checkInDate, dailyRoomRateAmount, dailyRoomRateCurrency, extraCharges, folioCashAdvancesAmount, folioCashAdvancesCurrency, foodBeverageChargesAmount, foodBeverageChargesCurrency, noShowIndicator, prepaidExpensesAmount, prepaidExpensesCurrency, roomNights, totalRoomTaxAmount, totalRoomTaxCurrency, totalTaxAmount, totalTaxCurrency, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -23443,7 +23825,7 @@ private constructor( return true } - return /* spotless:off */ other is PurchaseIdentifierFormat && value == other.value /* spotless:on */ + return other is PurchaseIdentifierFormat && value == other.value } override fun hashCode() = value.hashCode() @@ -24849,7 +25231,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditReasonIndicator && value == other.value /* spotless:on */ + return other is CreditReasonIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -25419,7 +25801,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -25432,12 +25814,15 @@ private constructor( return true } - return /* spotless:off */ other is Service && category == other.category && subCategory == other.subCategory && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Service && + category == other.category && + subCategory == other.subCategory && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, subCategory, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, subCategory, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -25450,13 +25835,27 @@ private constructor( return true } - return /* spotless:off */ other is Ancillary && connectedTicketDocumentNumber == other.connectedTicketDocumentNumber && creditReasonIndicator == other.creditReasonIndicator && passengerNameOrDescription == other.passengerNameOrDescription && services == other.services && ticketDocumentNumber == other.ticketDocumentNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Ancillary && + connectedTicketDocumentNumber == + other.connectedTicketDocumentNumber && + creditReasonIndicator == other.creditReasonIndicator && + passengerNameOrDescription == other.passengerNameOrDescription && + services == other.services && + ticketDocumentNumber == other.ticketDocumentNumber && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + connectedTicketDocumentNumber, + creditReasonIndicator, + passengerNameOrDescription, + services, + ticketDocumentNumber, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(connectedTicketDocumentNumber, creditReasonIndicator, passengerNameOrDescription, services, ticketDocumentNumber, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -25664,7 +26063,7 @@ private constructor( return true } - return /* spotless:off */ other is CreditReasonIndicator && value == other.value /* spotless:on */ + return other is CreditReasonIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -25815,7 +26214,7 @@ private constructor( return true } - return /* spotless:off */ other is RestrictedTicketIndicator && value == other.value /* spotless:on */ + return other is RestrictedTicketIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -25972,7 +26371,7 @@ private constructor( return true } - return /* spotless:off */ other is TicketChangeIndicator && value == other.value /* spotless:on */ + return other is TicketChangeIndicator && value == other.value } override fun hashCode() = value.hashCode() @@ -26568,7 +26967,7 @@ private constructor( return true } - return /* spotless:off */ other is StopOverCode && value == other.value /* spotless:on */ + return other is StopOverCode && value == other.value } override fun hashCode() = value.hashCode() @@ -26581,13 +26980,28 @@ private constructor( return true } - return /* spotless:off */ other is TripLeg && carrierCode == other.carrierCode && destinationCityAirportCode == other.destinationCityAirportCode && fareBasisCode == other.fareBasisCode && flightNumber == other.flightNumber && serviceClass == other.serviceClass && stopOverCode == other.stopOverCode && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TripLeg && + carrierCode == other.carrierCode && + destinationCityAirportCode == other.destinationCityAirportCode && + fareBasisCode == other.fareBasisCode && + flightNumber == other.flightNumber && + serviceClass == other.serviceClass && + stopOverCode == other.stopOverCode && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carrierCode, + destinationCityAirportCode, + fareBasisCode, + flightNumber, + serviceClass, + stopOverCode, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carrierCode, destinationCityAirportCode, fareBasisCode, flightNumber, serviceClass, stopOverCode, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -26599,13 +27013,40 @@ private constructor( return true } - return /* spotless:off */ other is Travel && ancillary == other.ancillary && computerizedReservationSystem == other.computerizedReservationSystem && creditReasonIndicator == other.creditReasonIndicator && departureDate == other.departureDate && originationCityAirportCode == other.originationCityAirportCode && passengerName == other.passengerName && restrictedTicketIndicator == other.restrictedTicketIndicator && ticketChangeIndicator == other.ticketChangeIndicator && ticketNumber == other.ticketNumber && travelAgencyCode == other.travelAgencyCode && travelAgencyName == other.travelAgencyName && tripLegs == other.tripLegs && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Travel && + ancillary == other.ancillary && + computerizedReservationSystem == other.computerizedReservationSystem && + creditReasonIndicator == other.creditReasonIndicator && + departureDate == other.departureDate && + originationCityAirportCode == other.originationCityAirportCode && + passengerName == other.passengerName && + restrictedTicketIndicator == other.restrictedTicketIndicator && + ticketChangeIndicator == other.ticketChangeIndicator && + ticketNumber == other.ticketNumber && + travelAgencyCode == other.travelAgencyCode && + travelAgencyName == other.travelAgencyName && + tripLegs == other.tripLegs && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + ancillary, + computerizedReservationSystem, + creditReasonIndicator, + departureDate, + originationCityAirportCode, + passengerName, + restrictedTicketIndicator, + ticketChangeIndicator, + ticketNumber, + travelAgencyCode, + travelAgencyName, + tripLegs, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(ancillary, computerizedReservationSystem, creditReasonIndicator, departureDate, originationCityAirportCode, passengerName, restrictedTicketIndicator, ticketChangeIndicator, ticketNumber, travelAgencyCode, travelAgencyName, tripLegs, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -26617,13 +27058,36 @@ private constructor( return true } - return /* spotless:off */ other is PurchaseDetails && carRental == other.carRental && customerReferenceIdentifier == other.customerReferenceIdentifier && localTaxAmount == other.localTaxAmount && localTaxCurrency == other.localTaxCurrency && lodging == other.lodging && nationalTaxAmount == other.nationalTaxAmount && nationalTaxCurrency == other.nationalTaxCurrency && purchaseIdentifier == other.purchaseIdentifier && purchaseIdentifierFormat == other.purchaseIdentifierFormat && travel == other.travel && additionalProperties == other.additionalProperties /* spotless:on */ + return other is PurchaseDetails && + carRental == other.carRental && + customerReferenceIdentifier == other.customerReferenceIdentifier && + localTaxAmount == other.localTaxAmount && + localTaxCurrency == other.localTaxCurrency && + lodging == other.lodging && + nationalTaxAmount == other.nationalTaxAmount && + nationalTaxCurrency == other.nationalTaxCurrency && + purchaseIdentifier == other.purchaseIdentifier && + purchaseIdentifierFormat == other.purchaseIdentifierFormat && + travel == other.travel && + additionalProperties == other.additionalProperties + } + + private val hashCode: Int by lazy { + Objects.hash( + carRental, + customerReferenceIdentifier, + localTaxAmount, + localTaxCurrency, + lodging, + nationalTaxAmount, + nationalTaxCurrency, + purchaseIdentifier, + purchaseIdentifierFormat, + travel, + additionalProperties, + ) } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(carRental, customerReferenceIdentifier, localTaxAmount, localTaxCurrency, lodging, nationalTaxAmount, nationalTaxCurrency, purchaseIdentifier, purchaseIdentifierFormat, travel, additionalProperties) } - /* spotless:on */ - override fun hashCode(): Int = hashCode override fun toString() = @@ -26750,7 +27214,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -26763,12 +27227,57 @@ private constructor( return true } - return /* spotless:off */ other is CardSettlement && id == other.id && amount == other.amount && cardAuthorization == other.cardAuthorization && cardPaymentId == other.cardPaymentId && cashback == other.cashback && currency == other.currency && interchange == other.interchange && merchantAcceptorId == other.merchantAcceptorId && merchantCategoryCode == other.merchantCategoryCode && merchantCity == other.merchantCity && merchantCountry == other.merchantCountry && merchantName == other.merchantName && merchantPostalCode == other.merchantPostalCode && merchantState == other.merchantState && networkIdentifiers == other.networkIdentifiers && pendingTransactionId == other.pendingTransactionId && presentmentAmount == other.presentmentAmount && presentmentCurrency == other.presentmentCurrency && purchaseDetails == other.purchaseDetails && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CardSettlement && + id == other.id && + amount == other.amount && + cardAuthorization == other.cardAuthorization && + cardPaymentId == other.cardPaymentId && + cashback == other.cashback && + currency == other.currency && + interchange == other.interchange && + merchantAcceptorId == other.merchantAcceptorId && + merchantCategoryCode == other.merchantCategoryCode && + merchantCity == other.merchantCity && + merchantCountry == other.merchantCountry && + merchantName == other.merchantName && + merchantPostalCode == other.merchantPostalCode && + merchantState == other.merchantState && + networkIdentifiers == other.networkIdentifiers && + pendingTransactionId == other.pendingTransactionId && + presentmentAmount == other.presentmentAmount && + presentmentCurrency == other.presentmentCurrency && + purchaseDetails == other.purchaseDetails && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, amount, cardAuthorization, cardPaymentId, cashback, currency, interchange, merchantAcceptorId, merchantCategoryCode, merchantCity, merchantCountry, merchantName, merchantPostalCode, merchantState, networkIdentifiers, pendingTransactionId, presentmentAmount, presentmentCurrency, purchaseDetails, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + amount, + cardAuthorization, + cardPaymentId, + cashback, + currency, + interchange, + merchantAcceptorId, + merchantCategoryCode, + merchantCity, + merchantCountry, + merchantName, + merchantPostalCode, + merchantState, + networkIdentifiers, + pendingTransactionId, + presentmentAmount, + presentmentCurrency, + purchaseDetails, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -27287,7 +27796,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -27300,12 +27809,25 @@ private constructor( return true } - return /* spotless:off */ other is CashbackPayment && accruedOnCardId == other.accruedOnCardId && amount == other.amount && currency == other.currency && periodEnd == other.periodEnd && periodStart == other.periodStart && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CashbackPayment && + accruedOnCardId == other.accruedOnCardId && + amount == other.amount && + currency == other.currency && + periodEnd == other.periodEnd && + periodStart == other.periodStart && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accruedOnCardId, amount, currency, periodEnd, periodStart, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accruedOnCardId, + amount, + currency, + periodEnd, + periodStart, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -27924,7 +28446,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -28553,7 +29075,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -28566,12 +29088,29 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositAcceptance && accountNumber == other.accountNumber && amount == other.amount && auxiliaryOnUs == other.auxiliaryOnUs && checkDepositId == other.checkDepositId && currency == other.currency && routingNumber == other.routingNumber && serialNumber == other.serialNumber && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckDepositAcceptance && + accountNumber == other.accountNumber && + amount == other.amount && + auxiliaryOnUs == other.auxiliaryOnUs && + checkDepositId == other.checkDepositId && + currency == other.currency && + routingNumber == other.routingNumber && + serialNumber == other.serialNumber && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumber, amount, auxiliaryOnUs, checkDepositId, currency, routingNumber, serialNumber, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountNumber, + amount, + auxiliaryOnUs, + checkDepositId, + currency, + routingNumber, + serialNumber, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -29145,7 +29684,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -29552,7 +30091,7 @@ private constructor( return true } - return /* spotless:off */ other is ReturnReason && value == other.value /* spotless:on */ + return other is ReturnReason && value == other.value } override fun hashCode() = value.hashCode() @@ -29565,12 +30104,27 @@ private constructor( return true } - return /* spotless:off */ other is CheckDepositReturn && amount == other.amount && checkDepositId == other.checkDepositId && currency == other.currency && returnReason == other.returnReason && returnedAt == other.returnedAt && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckDepositReturn && + amount == other.amount && + checkDepositId == other.checkDepositId && + currency == other.currency && + returnReason == other.returnReason && + returnedAt == other.returnedAt && + transactionId == other.transactionId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, checkDepositId, currency, returnReason, returnedAt, transactionId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + checkDepositId, + currency, + returnReason, + returnedAt, + transactionId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -30237,7 +30791,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -30250,12 +30804,31 @@ private constructor( return true } - return /* spotless:off */ other is CheckTransferDeposit && backImageFileId == other.backImageFileId && bankOfFirstDepositRoutingNumber == other.bankOfFirstDepositRoutingNumber && depositedAt == other.depositedAt && frontImageFileId == other.frontImageFileId && inboundCheckDepositId == other.inboundCheckDepositId && transactionId == other.transactionId && transferId == other.transferId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CheckTransferDeposit && + backImageFileId == other.backImageFileId && + bankOfFirstDepositRoutingNumber == other.bankOfFirstDepositRoutingNumber && + depositedAt == other.depositedAt && + frontImageFileId == other.frontImageFileId && + inboundCheckDepositId == other.inboundCheckDepositId && + transactionId == other.transactionId && + transferId == other.transferId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(backImageFileId, bankOfFirstDepositRoutingNumber, depositedAt, frontImageFileId, inboundCheckDepositId, transactionId, transferId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + backImageFileId, + bankOfFirstDepositRoutingNumber, + depositedAt, + frontImageFileId, + inboundCheckDepositId, + transactionId, + transferId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -30722,7 +31295,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -30735,12 +31308,17 @@ private constructor( return true } - return /* spotless:off */ other is FeePayment && amount == other.amount && currency == other.currency && feePeriodStart == other.feePeriodStart && programId == other.programId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is FeePayment && + amount == other.amount && + currency == other.currency && + feePeriodStart == other.feePeriodStart && + programId == other.programId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, feePeriodStart, programId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, feePeriodStart, programId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -31763,7 +32341,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -32105,12 +32683,14 @@ private constructor( return true } - return /* spotless:off */ other is Entry && paymentRelatedInformation == other.paymentRelatedInformation && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Entry && + paymentRelatedInformation == other.paymentRelatedInformation && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(paymentRelatedInformation, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(paymentRelatedInformation, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -32123,12 +32703,14 @@ private constructor( return true } - return /* spotless:off */ other is Freeform && entries == other.entries && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Freeform && + entries == other.entries && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(entries, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(entries, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -32141,12 +32723,15 @@ private constructor( return true } - return /* spotless:off */ other is Addenda && category == other.category && freeform == other.freeform && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Addenda && + category == other.category && + freeform == other.freeform && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(category, freeform, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(category, freeform, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -32159,12 +32744,38 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransfer && addenda == other.addenda && amount == other.amount && originatorCompanyDescriptiveDate == other.originatorCompanyDescriptiveDate && originatorCompanyDiscretionaryData == other.originatorCompanyDiscretionaryData && originatorCompanyEntryDescription == other.originatorCompanyEntryDescription && originatorCompanyId == other.originatorCompanyId && originatorCompanyName == other.originatorCompanyName && receiverIdNumber == other.receiverIdNumber && receiverName == other.receiverName && traceNumber == other.traceNumber && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundAchTransfer && + addenda == other.addenda && + amount == other.amount && + originatorCompanyDescriptiveDate == other.originatorCompanyDescriptiveDate && + originatorCompanyDiscretionaryData == + other.originatorCompanyDiscretionaryData && + originatorCompanyEntryDescription == other.originatorCompanyEntryDescription && + originatorCompanyId == other.originatorCompanyId && + originatorCompanyName == other.originatorCompanyName && + receiverIdNumber == other.receiverIdNumber && + receiverName == other.receiverName && + traceNumber == other.traceNumber && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(addenda, amount, originatorCompanyDescriptiveDate, originatorCompanyDiscretionaryData, originatorCompanyEntryDescription, originatorCompanyId, originatorCompanyName, receiverIdNumber, receiverName, traceNumber, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + addenda, + amount, + originatorCompanyDescriptiveDate, + originatorCompanyDiscretionaryData, + originatorCompanyEntryDescription, + originatorCompanyId, + originatorCompanyName, + receiverIdNumber, + receiverName, + traceNumber, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -32341,12 +32952,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundAchTransferReturnIntention && inboundAchTransferId == other.inboundAchTransferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundAchTransferReturnIntention && + inboundAchTransferId == other.inboundAchTransferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(inboundAchTransferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(inboundAchTransferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -32775,7 +33388,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -32788,12 +33401,16 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckAdjustment && adjustedTransactionId == other.adjustedTransactionId && amount == other.amount && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundCheckAdjustment && + adjustedTransactionId == other.adjustedTransactionId && + amount == other.amount && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(adjustedTransactionId, amount, reason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(adjustedTransactionId, amount, reason, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -33017,12 +33634,15 @@ private constructor( return true } - return /* spotless:off */ other is InboundCheckDepositReturnIntention && inboundCheckDepositId == other.inboundCheckDepositId && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundCheckDepositReturnIntention && + inboundCheckDepositId == other.inboundCheckDepositId && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(inboundCheckDepositId, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(inboundCheckDepositId, transferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -33750,7 +34370,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -33763,12 +34383,33 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransferConfirmation && amount == other.amount && creditorName == other.creditorName && currency == other.currency && debtorAccountNumber == other.debtorAccountNumber && debtorName == other.debtorName && debtorRoutingNumber == other.debtorRoutingNumber && remittanceInformation == other.remittanceInformation && transactionIdentification == other.transactionIdentification && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundRealTimePaymentsTransferConfirmation && + amount == other.amount && + creditorName == other.creditorName && + currency == other.currency && + debtorAccountNumber == other.debtorAccountNumber && + debtorName == other.debtorName && + debtorRoutingNumber == other.debtorRoutingNumber && + remittanceInformation == other.remittanceInformation && + transactionIdentification == other.transactionIdentification && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, creditorName, currency, debtorAccountNumber, debtorName, debtorRoutingNumber, remittanceInformation, transactionIdentification, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + creditorName, + currency, + debtorAccountNumber, + debtorName, + debtorRoutingNumber, + remittanceInformation, + transactionIdentification, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -34530,7 +35171,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -34705,7 +35346,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -34718,12 +35359,35 @@ private constructor( return true } - return /* spotless:off */ other is InboundRealTimePaymentsTransferDecline && amount == other.amount && creditorName == other.creditorName && currency == other.currency && debtorAccountNumber == other.debtorAccountNumber && debtorName == other.debtorName && debtorRoutingNumber == other.debtorRoutingNumber && reason == other.reason && remittanceInformation == other.remittanceInformation && transactionIdentification == other.transactionIdentification && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundRealTimePaymentsTransferDecline && + amount == other.amount && + creditorName == other.creditorName && + currency == other.currency && + debtorAccountNumber == other.debtorAccountNumber && + debtorName == other.debtorName && + debtorRoutingNumber == other.debtorRoutingNumber && + reason == other.reason && + remittanceInformation == other.remittanceInformation && + transactionIdentification == other.transactionIdentification && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, creditorName, currency, debtorAccountNumber, debtorName, debtorRoutingNumber, reason, remittanceInformation, transactionIdentification, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + creditorName, + currency, + debtorAccountNumber, + debtorName, + debtorRoutingNumber, + reason, + remittanceInformation, + transactionIdentification, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -35833,12 +36497,56 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireReversal && amount == other.amount && createdAt == other.createdAt && description == other.description && financialInstitutionToFinancialInstitutionInformation == other.financialInstitutionToFinancialInstitutionInformation && inputCycleDate == other.inputCycleDate && inputMessageAccountabilityData == other.inputMessageAccountabilityData && inputSequenceNumber == other.inputSequenceNumber && inputSource == other.inputSource && originatorRoutingNumber == other.originatorRoutingNumber && originatorToBeneficiaryInformation == other.originatorToBeneficiaryInformation && previousMessageInputCycleDate == other.previousMessageInputCycleDate && previousMessageInputMessageAccountabilityData == other.previousMessageInputMessageAccountabilityData && previousMessageInputSequenceNumber == other.previousMessageInputSequenceNumber && previousMessageInputSource == other.previousMessageInputSource && receiverFinancialInstitutionInformation == other.receiverFinancialInstitutionInformation && senderReference == other.senderReference && transactionId == other.transactionId && wireTransferId == other.wireTransferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundWireReversal && + amount == other.amount && + createdAt == other.createdAt && + description == other.description && + financialInstitutionToFinancialInstitutionInformation == + other.financialInstitutionToFinancialInstitutionInformation && + inputCycleDate == other.inputCycleDate && + inputMessageAccountabilityData == other.inputMessageAccountabilityData && + inputSequenceNumber == other.inputSequenceNumber && + inputSource == other.inputSource && + originatorRoutingNumber == other.originatorRoutingNumber && + originatorToBeneficiaryInformation == + other.originatorToBeneficiaryInformation && + previousMessageInputCycleDate == other.previousMessageInputCycleDate && + previousMessageInputMessageAccountabilityData == + other.previousMessageInputMessageAccountabilityData && + previousMessageInputSequenceNumber == + other.previousMessageInputSequenceNumber && + previousMessageInputSource == other.previousMessageInputSource && + receiverFinancialInstitutionInformation == + other.receiverFinancialInstitutionInformation && + senderReference == other.senderReference && + transactionId == other.transactionId && + wireTransferId == other.wireTransferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, createdAt, description, financialInstitutionToFinancialInstitutionInformation, inputCycleDate, inputMessageAccountabilityData, inputSequenceNumber, inputSource, originatorRoutingNumber, originatorToBeneficiaryInformation, previousMessageInputCycleDate, previousMessageInputMessageAccountabilityData, previousMessageInputSequenceNumber, previousMessageInputSource, receiverFinancialInstitutionInformation, senderReference, transactionId, wireTransferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + createdAt, + description, + financialInstitutionToFinancialInstitutionInformation, + inputCycleDate, + inputMessageAccountabilityData, + inputSequenceNumber, + inputSource, + originatorRoutingNumber, + originatorToBeneficiaryInformation, + previousMessageInputCycleDate, + previousMessageInputMessageAccountabilityData, + previousMessageInputSequenceNumber, + previousMessageInputSource, + receiverFinancialInstitutionInformation, + senderReference, + transactionId, + wireTransferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -37054,12 +37762,58 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransfer && amount == other.amount && beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && beneficiaryName == other.beneficiaryName && beneficiaryReference == other.beneficiaryReference && description == other.description && inputMessageAccountabilityData == other.inputMessageAccountabilityData && originatorAddressLine1 == other.originatorAddressLine1 && originatorAddressLine2 == other.originatorAddressLine2 && originatorAddressLine3 == other.originatorAddressLine3 && originatorName == other.originatorName && originatorRoutingNumber == other.originatorRoutingNumber && originatorToBeneficiaryInformation == other.originatorToBeneficiaryInformation && originatorToBeneficiaryInformationLine1 == other.originatorToBeneficiaryInformationLine1 && originatorToBeneficiaryInformationLine2 == other.originatorToBeneficiaryInformationLine2 && originatorToBeneficiaryInformationLine3 == other.originatorToBeneficiaryInformationLine3 && originatorToBeneficiaryInformationLine4 == other.originatorToBeneficiaryInformationLine4 && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundWireTransfer && + amount == other.amount && + beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && + beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && + beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && + beneficiaryName == other.beneficiaryName && + beneficiaryReference == other.beneficiaryReference && + description == other.description && + inputMessageAccountabilityData == other.inputMessageAccountabilityData && + originatorAddressLine1 == other.originatorAddressLine1 && + originatorAddressLine2 == other.originatorAddressLine2 && + originatorAddressLine3 == other.originatorAddressLine3 && + originatorName == other.originatorName && + originatorRoutingNumber == other.originatorRoutingNumber && + originatorToBeneficiaryInformation == + other.originatorToBeneficiaryInformation && + originatorToBeneficiaryInformationLine1 == + other.originatorToBeneficiaryInformationLine1 && + originatorToBeneficiaryInformationLine2 == + other.originatorToBeneficiaryInformationLine2 && + originatorToBeneficiaryInformationLine3 == + other.originatorToBeneficiaryInformationLine3 && + originatorToBeneficiaryInformationLine4 == + other.originatorToBeneficiaryInformationLine4 && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, beneficiaryAddressLine1, beneficiaryAddressLine2, beneficiaryAddressLine3, beneficiaryName, beneficiaryReference, description, inputMessageAccountabilityData, originatorAddressLine1, originatorAddressLine2, originatorAddressLine3, originatorName, originatorRoutingNumber, originatorToBeneficiaryInformation, originatorToBeneficiaryInformationLine1, originatorToBeneficiaryInformationLine2, originatorToBeneficiaryInformationLine3, originatorToBeneficiaryInformationLine4, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + beneficiaryAddressLine1, + beneficiaryAddressLine2, + beneficiaryAddressLine3, + beneficiaryName, + beneficiaryReference, + description, + inputMessageAccountabilityData, + originatorAddressLine1, + originatorAddressLine2, + originatorAddressLine3, + originatorName, + originatorRoutingNumber, + originatorToBeneficiaryInformation, + originatorToBeneficiaryInformationLine1, + originatorToBeneficiaryInformationLine2, + originatorToBeneficiaryInformationLine3, + originatorToBeneficiaryInformationLine4, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -37235,12 +37989,14 @@ private constructor( return true } - return /* spotless:off */ other is InboundWireTransferReversal && inboundWireTransferId == other.inboundWireTransferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InboundWireTransferReversal && + inboundWireTransferId == other.inboundWireTransferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(inboundWireTransferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(inboundWireTransferId, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -37753,7 +38509,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -37766,12 +38522,25 @@ private constructor( return true } - return /* spotless:off */ other is InterestPayment && accruedOnAccountId == other.accruedOnAccountId && amount == other.amount && currency == other.currency && periodEnd == other.periodEnd && periodStart == other.periodStart && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InterestPayment && + accruedOnAccountId == other.accruedOnAccountId && + amount == other.amount && + currency == other.currency && + periodEnd == other.periodEnd && + periodStart == other.periodStart && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accruedOnAccountId, amount, currency, periodEnd, periodStart, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accruedOnAccountId, + amount, + currency, + periodEnd, + periodStart, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -38190,7 +38959,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -38448,7 +39217,7 @@ private constructor( return true } - return /* spotless:off */ other is Reason && value == other.value /* spotless:on */ + return other is Reason && value == other.value } override fun hashCode() = value.hashCode() @@ -38461,12 +39230,16 @@ private constructor( return true } - return /* spotless:off */ other is InternalSource && amount == other.amount && currency == other.currency && reason == other.reason && additionalProperties == other.additionalProperties /* spotless:on */ + return other is InternalSource && + amount == other.amount && + currency == other.currency && + reason == other.reason && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, currency, reason, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(amount, currency, reason, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -38830,12 +39603,25 @@ private constructor( return true } - return /* spotless:off */ other is RealTimePaymentsTransferAcknowledgement && amount == other.amount && destinationAccountNumber == other.destinationAccountNumber && destinationRoutingNumber == other.destinationRoutingNumber && remittanceInformation == other.remittanceInformation && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is RealTimePaymentsTransferAcknowledgement && + amount == other.amount && + destinationAccountNumber == other.destinationAccountNumber && + destinationRoutingNumber == other.destinationRoutingNumber && + remittanceInformation == other.remittanceInformation && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, destinationAccountNumber, destinationRoutingNumber, remittanceInformation, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + destinationAccountNumber, + destinationRoutingNumber, + remittanceInformation, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -39004,12 +39790,12 @@ private constructor( return true } - return /* spotless:off */ other is SampleFunds && originator == other.originator && additionalProperties == other.additionalProperties /* spotless:on */ + return other is SampleFunds && + originator == other.originator && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(originator, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -39181,12 +39967,12 @@ private constructor( return true } - return /* spotless:off */ other is SwiftTransferIntention && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is SwiftTransferIntention && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(transferId, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -39538,12 +40324,25 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferIntention && accountNumber == other.accountNumber && amount == other.amount && messageToRecipient == other.messageToRecipient && routingNumber == other.routingNumber && transferId == other.transferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is WireTransferIntention && + accountNumber == other.accountNumber && + amount == other.amount && + messageToRecipient == other.messageToRecipient && + routingNumber == other.routingNumber && + transferId == other.transferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumber, amount, messageToRecipient, routingNumber, transferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountNumber, + amount, + messageToRecipient, + routingNumber, + transferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -39556,12 +40355,84 @@ private constructor( return true } - return /* spotless:off */ other is Source && accountTransferIntention == other.accountTransferIntention && achTransferIntention == other.achTransferIntention && achTransferRejection == other.achTransferRejection && achTransferReturn == other.achTransferReturn && cardDisputeAcceptance == other.cardDisputeAcceptance && cardDisputeFinancial == other.cardDisputeFinancial && cardDisputeLoss == other.cardDisputeLoss && cardPushTransferAcceptance == other.cardPushTransferAcceptance && cardRefund == other.cardRefund && cardRevenuePayment == other.cardRevenuePayment && cardSettlement == other.cardSettlement && cashbackPayment == other.cashbackPayment && category == other.category && checkDepositAcceptance == other.checkDepositAcceptance && checkDepositReturn == other.checkDepositReturn && checkTransferDeposit == other.checkTransferDeposit && feePayment == other.feePayment && inboundAchTransfer == other.inboundAchTransfer && inboundAchTransferReturnIntention == other.inboundAchTransferReturnIntention && inboundCheckAdjustment == other.inboundCheckAdjustment && inboundCheckDepositReturnIntention == other.inboundCheckDepositReturnIntention && inboundRealTimePaymentsTransferConfirmation == other.inboundRealTimePaymentsTransferConfirmation && inboundRealTimePaymentsTransferDecline == other.inboundRealTimePaymentsTransferDecline && inboundWireReversal == other.inboundWireReversal && inboundWireTransfer == other.inboundWireTransfer && inboundWireTransferReversal == other.inboundWireTransferReversal && interestPayment == other.interestPayment && internalSource == other.internalSource && this.other == other.other && realTimePaymentsTransferAcknowledgement == other.realTimePaymentsTransferAcknowledgement && sampleFunds == other.sampleFunds && swiftTransferIntention == other.swiftTransferIntention && wireTransferIntention == other.wireTransferIntention && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Source && + accountTransferIntention == other.accountTransferIntention && + achTransferIntention == other.achTransferIntention && + achTransferRejection == other.achTransferRejection && + achTransferReturn == other.achTransferReturn && + cardDisputeAcceptance == other.cardDisputeAcceptance && + cardDisputeFinancial == other.cardDisputeFinancial && + cardDisputeLoss == other.cardDisputeLoss && + cardPushTransferAcceptance == other.cardPushTransferAcceptance && + cardRefund == other.cardRefund && + cardRevenuePayment == other.cardRevenuePayment && + cardSettlement == other.cardSettlement && + cashbackPayment == other.cashbackPayment && + category == other.category && + checkDepositAcceptance == other.checkDepositAcceptance && + checkDepositReturn == other.checkDepositReturn && + checkTransferDeposit == other.checkTransferDeposit && + feePayment == other.feePayment && + inboundAchTransfer == other.inboundAchTransfer && + inboundAchTransferReturnIntention == other.inboundAchTransferReturnIntention && + inboundCheckAdjustment == other.inboundCheckAdjustment && + inboundCheckDepositReturnIntention == other.inboundCheckDepositReturnIntention && + inboundRealTimePaymentsTransferConfirmation == + other.inboundRealTimePaymentsTransferConfirmation && + inboundRealTimePaymentsTransferDecline == + other.inboundRealTimePaymentsTransferDecline && + inboundWireReversal == other.inboundWireReversal && + inboundWireTransfer == other.inboundWireTransfer && + inboundWireTransferReversal == other.inboundWireTransferReversal && + interestPayment == other.interestPayment && + internalSource == other.internalSource && + this.other == other.other && + realTimePaymentsTransferAcknowledgement == + other.realTimePaymentsTransferAcknowledgement && + sampleFunds == other.sampleFunds && + swiftTransferIntention == other.swiftTransferIntention && + wireTransferIntention == other.wireTransferIntention && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountTransferIntention, achTransferIntention, achTransferRejection, achTransferReturn, cardDisputeAcceptance, cardDisputeFinancial, cardDisputeLoss, cardPushTransferAcceptance, cardRefund, cardRevenuePayment, cardSettlement, cashbackPayment, category, checkDepositAcceptance, checkDepositReturn, checkTransferDeposit, feePayment, inboundAchTransfer, inboundAchTransferReturnIntention, inboundCheckAdjustment, inboundCheckDepositReturnIntention, inboundRealTimePaymentsTransferConfirmation, inboundRealTimePaymentsTransferDecline, inboundWireReversal, inboundWireTransfer, inboundWireTransferReversal, interestPayment, internalSource, other, realTimePaymentsTransferAcknowledgement, sampleFunds, swiftTransferIntention, wireTransferIntention, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountTransferIntention, + achTransferIntention, + achTransferRejection, + achTransferReturn, + cardDisputeAcceptance, + cardDisputeFinancial, + cardDisputeLoss, + cardPushTransferAcceptance, + cardRefund, + cardRevenuePayment, + cardSettlement, + cashbackPayment, + category, + checkDepositAcceptance, + checkDepositReturn, + checkTransferDeposit, + feePayment, + inboundAchTransfer, + inboundAchTransferReturnIntention, + inboundCheckAdjustment, + inboundCheckDepositReturnIntention, + inboundRealTimePaymentsTransferConfirmation, + inboundRealTimePaymentsTransferDecline, + inboundWireReversal, + inboundWireTransfer, + inboundWireTransferReversal, + interestPayment, + internalSource, + other, + realTimePaymentsTransferAcknowledgement, + sampleFunds, + swiftTransferIntention, + wireTransferIntention, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -39685,7 +40556,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -39698,12 +40569,35 @@ private constructor( return true } - return /* spotless:off */ other is Transaction && id == other.id && accountId == other.accountId && amount == other.amount && createdAt == other.createdAt && currency == other.currency && description == other.description && routeId == other.routeId && routeType == other.routeType && source == other.source && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Transaction && + id == other.id && + accountId == other.accountId && + amount == other.amount && + createdAt == other.createdAt && + currency == other.currency && + description == other.description && + routeId == other.routeId && + routeType == other.routeType && + source == other.source && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, amount, createdAt, currency, description, routeId, routeType, source, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + amount, + createdAt, + currency, + description, + routeId, + routeType, + source, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPage.kt index 9e4f0b14d..39195ec5a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is TransactionListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is TransactionListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "TransactionListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageAsync.kt index dc4020e96..6ac1142b1 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is TransactionListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is TransactionListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "TransactionListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageResponse.kt index 6054da78f..e8fa0fc46 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageResponse.kt @@ -221,12 +221,13 @@ private constructor( return true } - return /* spotless:off */ other is TransactionListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is TransactionListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListParams.kt index a536bba19..ff010c587 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListParams.kt @@ -1009,7 +1009,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -1022,12 +1022,12 @@ private constructor( return true } - return /* spotless:off */ other is Category && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Category && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -1194,12 +1194,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1212,10 +1217,28 @@ private constructor( return true } - return /* spotless:off */ other is TransactionListParams && accountId == other.accountId && category == other.category && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && routeId == other.routeId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is TransactionListParams && + accountId == other.accountId && + category == other.category && + createdAt == other.createdAt && + cursor == other.cursor && + limit == other.limit && + routeId == other.routeId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, category, createdAt, cursor, limit, routeId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + category, + createdAt, + cursor, + limit, + routeId, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "TransactionListParams{accountId=$accountId, category=$category, createdAt=$createdAt, cursor=$cursor, limit=$limit, routeId=$routeId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionRetrieveParams.kt index 5bac13de7..d9f3c6c72 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionRetrieveParams.kt @@ -185,10 +185,14 @@ private constructor( return true } - return /* spotless:off */ other is TransactionRetrieveParams && transactionId == other.transactionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is TransactionRetrieveParams && + transactionId == other.transactionId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(transactionId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(transactionId, additionalHeaders, additionalQueryParams) override fun toString() = "TransactionRetrieveParams{transactionId=$transactionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequest.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequest.kt index 91a9f52ae..0ac274d4d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequest.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequest.kt @@ -1227,12 +1227,19 @@ private constructor( return true } - return /* spotless:off */ other is CreditorAddress && city == other.city && country == other.country && line1 == other.line1 && line2 == other.line2 && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreditorAddress && + city == other.city && + country == other.country && + line1 == other.line1 && + line2 == other.line2 && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, country, line1, line2, postalCode, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, country, line1, line2, postalCode, state, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1585,12 +1592,19 @@ private constructor( return true } - return /* spotless:off */ other is DebtorAddress && city == other.city && country == other.country && line1 == other.line1 && line2 == other.line2 && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DebtorAddress && + city == other.city && + country == other.country && + line1 == other.line1 && + line2 == other.line2 && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, country, line1, line2, postalCode, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, country, line1, line2, postalCode, state, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1742,7 +1756,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -1914,12 +1928,14 @@ private constructor( return true } - return /* spotless:off */ other is Submission && inputMessageAccountabilityData == other.inputMessageAccountabilityData && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Submission && + inputMessageAccountabilityData == other.inputMessageAccountabilityData && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(inputMessageAccountabilityData, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(inputMessageAccountabilityData, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2044,7 +2060,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -2057,12 +2073,49 @@ private constructor( return true } - return /* spotless:off */ other is WireDrawdownRequest && id == other.id && accountNumberId == other.accountNumberId && amount == other.amount && createdAt == other.createdAt && creditorAddress == other.creditorAddress && creditorName == other.creditorName && currency == other.currency && debtorAccountNumber == other.debtorAccountNumber && debtorAddress == other.debtorAddress && debtorName == other.debtorName && debtorRoutingNumber == other.debtorRoutingNumber && fulfillmentInboundWireTransferId == other.fulfillmentInboundWireTransferId && idempotencyKey == other.idempotencyKey && status == other.status && submission == other.submission && type == other.type && unstructuredRemittanceInformation == other.unstructuredRemittanceInformation && additionalProperties == other.additionalProperties /* spotless:on */ + return other is WireDrawdownRequest && + id == other.id && + accountNumberId == other.accountNumberId && + amount == other.amount && + createdAt == other.createdAt && + creditorAddress == other.creditorAddress && + creditorName == other.creditorName && + currency == other.currency && + debtorAccountNumber == other.debtorAccountNumber && + debtorAddress == other.debtorAddress && + debtorName == other.debtorName && + debtorRoutingNumber == other.debtorRoutingNumber && + fulfillmentInboundWireTransferId == other.fulfillmentInboundWireTransferId && + idempotencyKey == other.idempotencyKey && + status == other.status && + submission == other.submission && + type == other.type && + unstructuredRemittanceInformation == other.unstructuredRemittanceInformation && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountNumberId, amount, createdAt, creditorAddress, creditorName, currency, debtorAccountNumber, debtorAddress, debtorName, debtorRoutingNumber, fulfillmentInboundWireTransferId, idempotencyKey, status, submission, type, unstructuredRemittanceInformation, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountNumberId, + amount, + createdAt, + creditorAddress, + creditorName, + currency, + debtorAccountNumber, + debtorAddress, + debtorName, + debtorRoutingNumber, + fulfillmentInboundWireTransferId, + idempotencyKey, + status, + submission, + type, + unstructuredRemittanceInformation, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestCreateParams.kt index 4a2f682fd..58a21fb8b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestCreateParams.kt @@ -1023,12 +1023,33 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountNumberId == other.accountNumberId && amount == other.amount && creditorAddress == other.creditorAddress && creditorName == other.creditorName && debtorAccountNumber == other.debtorAccountNumber && debtorAddress == other.debtorAddress && debtorName == other.debtorName && debtorRoutingNumber == other.debtorRoutingNumber && unstructuredRemittanceInformation == other.unstructuredRemittanceInformation && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountNumberId == other.accountNumberId && + amount == other.amount && + creditorAddress == other.creditorAddress && + creditorName == other.creditorName && + debtorAccountNumber == other.debtorAccountNumber && + debtorAddress == other.debtorAddress && + debtorName == other.debtorName && + debtorRoutingNumber == other.debtorRoutingNumber && + unstructuredRemittanceInformation == other.unstructuredRemittanceInformation && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountNumberId, amount, creditorAddress, creditorName, debtorAccountNumber, debtorAddress, debtorName, debtorRoutingNumber, unstructuredRemittanceInformation, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountNumberId, + amount, + creditorAddress, + creditorName, + debtorAccountNumber, + debtorAddress, + debtorName, + debtorRoutingNumber, + unstructuredRemittanceInformation, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1366,12 +1387,19 @@ private constructor( return true } - return /* spotless:off */ other is CreditorAddress && city == other.city && country == other.country && line1 == other.line1 && line2 == other.line2 && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreditorAddress && + city == other.city && + country == other.country && + line1 == other.line1 && + line2 == other.line2 && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, country, line1, line2, postalCode, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, country, line1, line2, postalCode, state, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1709,12 +1737,19 @@ private constructor( return true } - return /* spotless:off */ other is DebtorAddress && city == other.city && country == other.country && line1 == other.line1 && line2 == other.line2 && postalCode == other.postalCode && state == other.state && additionalProperties == other.additionalProperties /* spotless:on */ + return other is DebtorAddress && + city == other.city && + country == other.country && + line1 == other.line1 && + line2 == other.line2 && + postalCode == other.postalCode && + state == other.state && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(city, country, line1, line2, postalCode, state, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(city, country, line1, line2, postalCode, state, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1727,10 +1762,13 @@ private constructor( return true } - return /* spotless:off */ other is WireDrawdownRequestCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is WireDrawdownRequestCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "WireDrawdownRequestCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPage.kt index 1088e84dd..06ca2a61d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPage.kt @@ -122,10 +122,13 @@ private constructor( return true } - return /* spotless:off */ other is WireDrawdownRequestListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is WireDrawdownRequestListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "WireDrawdownRequestListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageAsync.kt index 386a022c0..1b2f9dd6f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageAsync.kt @@ -138,10 +138,14 @@ private constructor( return true } - return /* spotless:off */ other is WireDrawdownRequestListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is WireDrawdownRequestListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "WireDrawdownRequestListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageResponse.kt index 6fd9b97d4..6fab39801 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageResponse.kt @@ -227,12 +227,13 @@ private constructor( return true } - return /* spotless:off */ other is WireDrawdownRequestListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is WireDrawdownRequestListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListParams.kt index 036ef6d56..49321da08 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListParams.kt @@ -507,7 +507,7 @@ private constructor( return true } - return /* spotless:off */ other is In && value == other.value /* spotless:on */ + return other is In && value == other.value } override fun hashCode() = value.hashCode() @@ -520,12 +520,12 @@ private constructor( return true } - return /* spotless:off */ other is Status && in_ == other.in_ && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Status && + in_ == other.in_ && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(in_, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -537,10 +537,24 @@ private constructor( return true } - return /* spotless:off */ other is WireDrawdownRequestListParams && cursor == other.cursor && idempotencyKey == other.idempotencyKey && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is WireDrawdownRequestListParams && + cursor == other.cursor && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + status == other.status && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(cursor, idempotencyKey, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + cursor, + idempotencyKey, + limit, + status, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "WireDrawdownRequestListParams{cursor=$cursor, idempotencyKey=$idempotencyKey, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestRetrieveParams.kt index 4614641eb..265a60064 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestRetrieveParams.kt @@ -193,10 +193,14 @@ private constructor( return true } - return /* spotless:off */ other is WireDrawdownRequestRetrieveParams && wireDrawdownRequestId == other.wireDrawdownRequestId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is WireDrawdownRequestRetrieveParams && + wireDrawdownRequestId == other.wireDrawdownRequestId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(wireDrawdownRequestId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(wireDrawdownRequestId, additionalHeaders, additionalQueryParams) override fun toString() = "WireDrawdownRequestRetrieveParams{wireDrawdownRequestId=$wireDrawdownRequestId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransfer.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransfer.kt index fc71abad9..1ca8e080d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransfer.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransfer.kt @@ -1739,12 +1739,15 @@ private constructor( return true } - return /* spotless:off */ other is Approval && approvedAt == other.approvedAt && approvedBy == other.approvedBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Approval && + approvedAt == other.approvedAt && + approvedBy == other.approvedBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(approvedAt, approvedBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(approvedAt, approvedBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -1959,12 +1962,15 @@ private constructor( return true } - return /* spotless:off */ other is Cancellation && canceledAt == other.canceledAt && canceledBy == other.canceledBy && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Cancellation && + canceledAt == other.canceledAt && + canceledBy == other.canceledBy && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(canceledAt, canceledBy, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(canceledAt, canceledBy, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -2408,12 +2414,12 @@ private constructor( return true } - return /* spotless:off */ other is ApiKey && description == other.description && additionalProperties == other.additionalProperties /* spotless:on */ + return other is ApiKey && + description == other.description && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(description, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2568,7 +2574,7 @@ private constructor( return true } - return /* spotless:off */ other is Category && value == other.value /* spotless:on */ + return other is Category && value == other.value } override fun hashCode() = value.hashCode() @@ -2726,12 +2732,12 @@ private constructor( return true } - return /* spotless:off */ other is OAuthApplication && name == other.name && additionalProperties == other.additionalProperties /* spotless:on */ + return other is OAuthApplication && + name == other.name && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(name, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2886,12 +2892,12 @@ private constructor( return true } - return /* spotless:off */ other is User && email == other.email && additionalProperties == other.additionalProperties /* spotless:on */ + return other is User && + email == other.email && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(email, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode @@ -2904,12 +2910,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedBy && apiKey == other.apiKey && category == other.category && oauthApplication == other.oauthApplication && user == other.user && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedBy && + apiKey == other.apiKey && + category == other.category && + oauthApplication == other.oauthApplication && + user == other.user && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(apiKey, category, oauthApplication, user, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -3082,7 +3093,7 @@ private constructor( return true } - return /* spotless:off */ other is Currency && value == other.value /* spotless:on */ + return other is Currency && value == other.value } override fun hashCode() = value.hashCode() @@ -3204,7 +3215,7 @@ private constructor( return true } - return /* spotless:off */ other is Network && value == other.value /* spotless:on */ + return other is Network && value == other.value } override fun hashCode() = value.hashCode() @@ -4251,12 +4262,54 @@ private constructor( return true } - return /* spotless:off */ other is Reversal && amount == other.amount && createdAt == other.createdAt && description == other.description && financialInstitutionToFinancialInstitutionInformation == other.financialInstitutionToFinancialInstitutionInformation && inputCycleDate == other.inputCycleDate && inputMessageAccountabilityData == other.inputMessageAccountabilityData && inputSequenceNumber == other.inputSequenceNumber && inputSource == other.inputSource && originatorRoutingNumber == other.originatorRoutingNumber && originatorToBeneficiaryInformation == other.originatorToBeneficiaryInformation && previousMessageInputCycleDate == other.previousMessageInputCycleDate && previousMessageInputMessageAccountabilityData == other.previousMessageInputMessageAccountabilityData && previousMessageInputSequenceNumber == other.previousMessageInputSequenceNumber && previousMessageInputSource == other.previousMessageInputSource && receiverFinancialInstitutionInformation == other.receiverFinancialInstitutionInformation && senderReference == other.senderReference && transactionId == other.transactionId && wireTransferId == other.wireTransferId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Reversal && + amount == other.amount && + createdAt == other.createdAt && + description == other.description && + financialInstitutionToFinancialInstitutionInformation == + other.financialInstitutionToFinancialInstitutionInformation && + inputCycleDate == other.inputCycleDate && + inputMessageAccountabilityData == other.inputMessageAccountabilityData && + inputSequenceNumber == other.inputSequenceNumber && + inputSource == other.inputSource && + originatorRoutingNumber == other.originatorRoutingNumber && + originatorToBeneficiaryInformation == other.originatorToBeneficiaryInformation && + previousMessageInputCycleDate == other.previousMessageInputCycleDate && + previousMessageInputMessageAccountabilityData == + other.previousMessageInputMessageAccountabilityData && + previousMessageInputSequenceNumber == other.previousMessageInputSequenceNumber && + previousMessageInputSource == other.previousMessageInputSource && + receiverFinancialInstitutionInformation == + other.receiverFinancialInstitutionInformation && + senderReference == other.senderReference && + transactionId == other.transactionId && + wireTransferId == other.wireTransferId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(amount, createdAt, description, financialInstitutionToFinancialInstitutionInformation, inputCycleDate, inputMessageAccountabilityData, inputSequenceNumber, inputSource, originatorRoutingNumber, originatorToBeneficiaryInformation, previousMessageInputCycleDate, previousMessageInputMessageAccountabilityData, previousMessageInputSequenceNumber, previousMessageInputSource, receiverFinancialInstitutionInformation, senderReference, transactionId, wireTransferId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + amount, + createdAt, + description, + financialInstitutionToFinancialInstitutionInformation, + inputCycleDate, + inputMessageAccountabilityData, + inputSequenceNumber, + inputSource, + originatorRoutingNumber, + originatorToBeneficiaryInformation, + previousMessageInputCycleDate, + previousMessageInputMessageAccountabilityData, + previousMessageInputSequenceNumber, + previousMessageInputSource, + receiverFinancialInstitutionInformation, + senderReference, + transactionId, + wireTransferId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -4453,7 +4506,7 @@ private constructor( return true } - return /* spotless:off */ other is Status && value == other.value /* spotless:on */ + return other is Status && value == other.value } override fun hashCode() = value.hashCode() @@ -4661,12 +4714,15 @@ private constructor( return true } - return /* spotless:off */ other is Submission && inputMessageAccountabilityData == other.inputMessageAccountabilityData && submittedAt == other.submittedAt && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Submission && + inputMessageAccountabilityData == other.inputMessageAccountabilityData && + submittedAt == other.submittedAt && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(inputMessageAccountabilityData, submittedAt, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(inputMessageAccountabilityData, submittedAt, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -4791,7 +4847,7 @@ private constructor( return true } - return /* spotless:off */ other is Type && value == other.value /* spotless:on */ + return other is Type && value == other.value } override fun hashCode() = value.hashCode() @@ -4804,12 +4860,75 @@ private constructor( return true } - return /* spotless:off */ other is WireTransfer && id == other.id && accountId == other.accountId && accountNumber == other.accountNumber && amount == other.amount && approval == other.approval && beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && beneficiaryName == other.beneficiaryName && cancellation == other.cancellation && createdAt == other.createdAt && createdBy == other.createdBy && currency == other.currency && externalAccountId == other.externalAccountId && idempotencyKey == other.idempotencyKey && inboundWireDrawdownRequestId == other.inboundWireDrawdownRequestId && messageToRecipient == other.messageToRecipient && network == other.network && originatorAddressLine1 == other.originatorAddressLine1 && originatorAddressLine2 == other.originatorAddressLine2 && originatorAddressLine3 == other.originatorAddressLine3 && originatorName == other.originatorName && pendingTransactionId == other.pendingTransactionId && reversal == other.reversal && routingNumber == other.routingNumber && sourceAccountNumberId == other.sourceAccountNumberId && status == other.status && submission == other.submission && transactionId == other.transactionId && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */ + return other is WireTransfer && + id == other.id && + accountId == other.accountId && + accountNumber == other.accountNumber && + amount == other.amount && + approval == other.approval && + beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && + beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && + beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && + beneficiaryName == other.beneficiaryName && + cancellation == other.cancellation && + createdAt == other.createdAt && + createdBy == other.createdBy && + currency == other.currency && + externalAccountId == other.externalAccountId && + idempotencyKey == other.idempotencyKey && + inboundWireDrawdownRequestId == other.inboundWireDrawdownRequestId && + messageToRecipient == other.messageToRecipient && + network == other.network && + originatorAddressLine1 == other.originatorAddressLine1 && + originatorAddressLine2 == other.originatorAddressLine2 && + originatorAddressLine3 == other.originatorAddressLine3 && + originatorName == other.originatorName && + pendingTransactionId == other.pendingTransactionId && + reversal == other.reversal && + routingNumber == other.routingNumber && + sourceAccountNumberId == other.sourceAccountNumberId && + status == other.status && + submission == other.submission && + transactionId == other.transactionId && + type == other.type && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(id, accountId, accountNumber, amount, approval, beneficiaryAddressLine1, beneficiaryAddressLine2, beneficiaryAddressLine3, beneficiaryName, cancellation, createdAt, createdBy, currency, externalAccountId, idempotencyKey, inboundWireDrawdownRequestId, messageToRecipient, network, originatorAddressLine1, originatorAddressLine2, originatorAddressLine3, originatorName, pendingTransactionId, reversal, routingNumber, sourceAccountNumberId, status, submission, transactionId, type, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + id, + accountId, + accountNumber, + amount, + approval, + beneficiaryAddressLine1, + beneficiaryAddressLine2, + beneficiaryAddressLine3, + beneficiaryName, + cancellation, + createdAt, + createdBy, + currency, + externalAccountId, + idempotencyKey, + inboundWireDrawdownRequestId, + messageToRecipient, + network, + originatorAddressLine1, + originatorAddressLine2, + originatorAddressLine3, + originatorName, + pendingTransactionId, + reversal, + routingNumber, + sourceAccountNumberId, + status, + submission, + transactionId, + type, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferApproveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferApproveParams.kt index a8f902e72..5a0a884dc 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferApproveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferApproveParams.kt @@ -220,10 +220,20 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferApproveParams && wireTransferId == other.wireTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is WireTransferApproveParams && + wireTransferId == other.wireTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(wireTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + wireTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "WireTransferApproveParams{wireTransferId=$wireTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferCancelParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferCancelParams.kt index 629214bf7..123899f82 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferCancelParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferCancelParams.kt @@ -218,10 +218,20 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferCancelParams && wireTransferId == other.wireTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */ + return other is WireTransferCancelParams && + wireTransferId == other.wireTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams && + additionalBodyProperties == other.additionalBodyProperties } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(wireTransferId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + wireTransferId, + additionalHeaders, + additionalQueryParams, + additionalBodyProperties, + ) override fun toString() = "WireTransferCancelParams{wireTransferId=$wireTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferCreateParams.kt index ca093645b..e7858351e 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferCreateParams.kt @@ -1650,12 +1650,49 @@ private constructor( return true } - return /* spotless:off */ other is Body && accountId == other.accountId && amount == other.amount && beneficiaryName == other.beneficiaryName && messageToRecipient == other.messageToRecipient && accountNumber == other.accountNumber && beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && externalAccountId == other.externalAccountId && inboundWireDrawdownRequestId == other.inboundWireDrawdownRequestId && originatorAddressLine1 == other.originatorAddressLine1 && originatorAddressLine2 == other.originatorAddressLine2 && originatorAddressLine3 == other.originatorAddressLine3 && originatorName == other.originatorName && requireApproval == other.requireApproval && routingNumber == other.routingNumber && sourceAccountNumberId == other.sourceAccountNumberId && additionalProperties == other.additionalProperties /* spotless:on */ + return other is Body && + accountId == other.accountId && + amount == other.amount && + beneficiaryName == other.beneficiaryName && + messageToRecipient == other.messageToRecipient && + accountNumber == other.accountNumber && + beneficiaryAddressLine1 == other.beneficiaryAddressLine1 && + beneficiaryAddressLine2 == other.beneficiaryAddressLine2 && + beneficiaryAddressLine3 == other.beneficiaryAddressLine3 && + externalAccountId == other.externalAccountId && + inboundWireDrawdownRequestId == other.inboundWireDrawdownRequestId && + originatorAddressLine1 == other.originatorAddressLine1 && + originatorAddressLine2 == other.originatorAddressLine2 && + originatorAddressLine3 == other.originatorAddressLine3 && + originatorName == other.originatorName && + requireApproval == other.requireApproval && + routingNumber == other.routingNumber && + sourceAccountNumberId == other.sourceAccountNumberId && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(accountId, amount, beneficiaryName, messageToRecipient, accountNumber, beneficiaryAddressLine1, beneficiaryAddressLine2, beneficiaryAddressLine3, externalAccountId, inboundWireDrawdownRequestId, originatorAddressLine1, originatorAddressLine2, originatorAddressLine3, originatorName, requireApproval, routingNumber, sourceAccountNumberId, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash( + accountId, + amount, + beneficiaryName, + messageToRecipient, + accountNumber, + beneficiaryAddressLine1, + beneficiaryAddressLine2, + beneficiaryAddressLine3, + externalAccountId, + inboundWireDrawdownRequestId, + originatorAddressLine1, + originatorAddressLine2, + originatorAddressLine3, + originatorName, + requireApproval, + routingNumber, + sourceAccountNumberId, + additionalProperties, + ) + } override fun hashCode(): Int = hashCode @@ -1668,10 +1705,13 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is WireTransferCreateParams && + body == other.body && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams) override fun toString() = "WireTransferCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPage.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPage.kt index ff637e2b2..12a197685 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPage.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPage.kt @@ -119,10 +119,13 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferListPage && service == other.service && params == other.params && response == other.response /* spotless:on */ + return other is WireTransferListPage && + service == other.service && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, params, response) override fun toString() = "WireTransferListPage{service=$service, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageAsync.kt index 0f74c092f..92d257bd6 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageAsync.kt @@ -132,10 +132,14 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */ + return other is WireTransferListPageAsync && + service == other.service && + streamHandlerExecutor == other.streamHandlerExecutor && + params == other.params && + response == other.response } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */ + override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response) override fun toString() = "WireTransferListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageResponse.kt index 7e3568ab2..0341c0a3d 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageResponse.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageResponse.kt @@ -223,12 +223,13 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */ + return other is WireTransferListPageResponse && + data == other.data && + nextCursor == other.nextCursor && + additionalProperties == other.additionalProperties } - /* spotless:off */ private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) } - /* spotless:on */ override fun hashCode(): Int = hashCode diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListParams.kt index 65ffef5e5..43511fcd3 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListParams.kt @@ -453,12 +453,17 @@ private constructor( return true } - return /* spotless:off */ other is CreatedAt && after == other.after && before == other.before && onOrAfter == other.onOrAfter && onOrBefore == other.onOrBefore && additionalProperties == other.additionalProperties /* spotless:on */ + return other is CreatedAt && + after == other.after && + before == other.before && + onOrAfter == other.onOrAfter && + onOrBefore == other.onOrBefore && + additionalProperties == other.additionalProperties } - /* spotless:off */ - private val hashCode: Int by lazy { Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) } - /* spotless:on */ + private val hashCode: Int by lazy { + Objects.hash(after, before, onOrAfter, onOrBefore, additionalProperties) + } override fun hashCode(): Int = hashCode @@ -471,10 +476,28 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferListParams && accountId == other.accountId && createdAt == other.createdAt && cursor == other.cursor && externalAccountId == other.externalAccountId && idempotencyKey == other.idempotencyKey && limit == other.limit && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is WireTransferListParams && + accountId == other.accountId && + createdAt == other.createdAt && + cursor == other.cursor && + externalAccountId == other.externalAccountId && + idempotencyKey == other.idempotencyKey && + limit == other.limit && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, createdAt, cursor, externalAccountId, idempotencyKey, limit, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash( + accountId, + createdAt, + cursor, + externalAccountId, + idempotencyKey, + limit, + additionalHeaders, + additionalQueryParams, + ) override fun toString() = "WireTransferListParams{accountId=$accountId, createdAt=$createdAt, cursor=$cursor, externalAccountId=$externalAccountId, idempotencyKey=$idempotencyKey, limit=$limit, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferRetrieveParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferRetrieveParams.kt index 26f1f3732..7d2c241c0 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferRetrieveParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferRetrieveParams.kt @@ -185,10 +185,14 @@ private constructor( return true } - return /* spotless:off */ other is WireTransferRetrieveParams && wireTransferId == other.wireTransferId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */ + return other is WireTransferRetrieveParams && + wireTransferId == other.wireTransferId && + additionalHeaders == other.additionalHeaders && + additionalQueryParams == other.additionalQueryParams } - override fun hashCode(): Int = /* spotless:off */ Objects.hash(wireTransferId, additionalHeaders, additionalQueryParams) /* spotless:on */ + override fun hashCode(): Int = + Objects.hash(wireTransferId, additionalHeaders, additionalQueryParams) override fun toString() = "WireTransferRetrieveParams{wireTransferId=$wireTransferId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}" diff --git a/increase-java-core/src/test/kotlin/com/increase/api/models/accounts/AccountTest.kt b/increase-java-core/src/test/kotlin/com/increase/api/models/accounts/AccountTest.kt index 6295c2d57..9d851b54c 100644 --- a/increase-java-core/src/test/kotlin/com/increase/api/models/accounts/AccountTest.kt +++ b/increase-java-core/src/test/kotlin/com/increase/api/models/accounts/AccountTest.kt @@ -37,7 +37,7 @@ internal class AccountTest { assertThat(account.closedAt()).isEmpty assertThat(account.createdAt()).isEqualTo(OffsetDateTime.parse("2020-01-31T23:59:59Z")) assertThat(account.currency()).isEqualTo(Account.Currency.USD) - assertThat(account.entityId()).contains("entity_n8y8tnk2p9339ti393yi") + assertThat(account.entityId()).isEqualTo("entity_n8y8tnk2p9339ti393yi") assertThat(account.idempotencyKey()).isEmpty assertThat(account.informationalEntityId()).isEmpty assertThat(account.interestAccrued()).isEqualTo("0.01") diff --git a/scripts/test b/scripts/test index 2177cb8ae..047bc1dbb 100755 --- a/scripts/test +++ b/scripts/test @@ -53,4 +53,4 @@ else fi echo "==> Running tests" -./gradlew test +./gradlew test "$@" diff --git a/settings.gradle.kts b/settings.gradle.kts index 573cd1176..4016681b6 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,7 +1,14 @@ rootProject.name = "increase-java-root" -include("increase-java") -include("increase-java-client-okhttp") -include("increase-java-core") -include("increase-java-proguard-test") -include("increase-java-example") +val projectNames = rootDir.listFiles() + ?.asSequence() + .orEmpty() + .filter { file -> + file.isDirectory && + file.name.startsWith("increase-java") && + file.listFiles()?.asSequence().orEmpty().any { it.name == "build.gradle.kts" } + } + .map { it.name } + .toList() +println("projects: $projectNames") +projectNames.forEach { include(it) }