diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4e9c70e85..79bee3809 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.333.0" + ".": "0.334.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 86d1fe70d..776d32426 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 214 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-884e347f765b181f0f15f821b0c5786f51d532aae1077294aedf3fff0d6f9b22.yml -openapi_spec_hash: 119e76f07825b0975b385de037fe8d96 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-beb9032c2ea0fb6fb46727701c252d27d8f2f77688472dc922fb10afb142dd1c.yml +openapi_spec_hash: dc5aa90744d4e0958a9a2d652adda0ba config_hash: 8dadd60eab7ab858cf06c6a8633ed9f3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f09c8068..eecd622bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.334.0 (2025-09-23) + +Full Changelog: [v0.333.0...v0.334.0](https://github.com/Increase/increase-java/compare/v0.333.0...v0.334.0) + +### Features + +* **api:** api update ([259e81e](https://github.com/Increase/increase-java/commit/259e81e1db82f6480413061a90abc990d22b3e6a)) +* **api:** api update ([32f2605](https://github.com/Increase/increase-java/commit/32f260540ee45dd190f4b2d39ff1cc1667dbb7fd)) + + +### Chores + +* **internal:** change some comment formatting ([bbdf34b](https://github.com/Increase/increase-java/commit/bbdf34bbf04961f7d614e8526f43ec5c90aa65ef)) + ## 0.333.0 (2025-09-22) Full Changelog: [v0.332.0...v0.333.0](https://github.com/Increase/increase-java/compare/v0.332.0...v0.333.0) diff --git a/README.md b/README.md index 7d0b75ffd..a71e1e995 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.333.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.333.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.333.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.334.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.334.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.334.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.333.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.334.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.333.0") +implementation("com.increase.api:increase-java:0.334.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.333.0") com.increase.api increase-java - 0.333.0 + 0.334.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 5df051c69..357c58f13 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.333.0" // x-release-please-version + version = "0.334.0" // x-release-please-version } subprojects { 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 8fafb0ece..2d4e46df8 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 @@ -6225,7 +6225,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6302,7 +6304,11 @@ private constructor( additionalProperties = clinic.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6445,7 +6451,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6522,7 +6530,11 @@ private constructor( additionalProperties = dental.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6665,7 +6677,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6742,7 +6756,11 @@ private constructor( additionalProperties = prescription.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6885,7 +6903,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6962,7 +6982,11 @@ private constructor( additionalProperties = surcharge.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -7107,7 +7131,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -7186,7 +7212,11 @@ private constructor( totalCumulative.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -7329,7 +7359,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -7408,7 +7440,11 @@ private constructor( totalHealthcare.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -7551,7 +7587,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -7628,7 +7666,11 @@ private constructor( additionalProperties = transit.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -7771,7 +7813,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -7848,7 +7892,11 @@ private constructor( additionalProperties = unknown.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -7991,7 +8039,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -8068,7 +8118,11 @@ private constructor( additionalProperties = vision.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -15147,7 +15201,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -15224,7 +15280,11 @@ private constructor( additionalProperties = clinic.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -15367,7 +15427,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -15444,7 +15506,11 @@ private constructor( additionalProperties = dental.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -15587,7 +15653,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -15664,7 +15732,11 @@ private constructor( additionalProperties = prescription.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -15807,7 +15879,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -15884,7 +15958,11 @@ private constructor( additionalProperties = surcharge.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -16029,7 +16107,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -16108,7 +16188,11 @@ private constructor( totalCumulative.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -16251,7 +16335,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -16330,7 +16416,11 @@ private constructor( totalHealthcare.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -16473,7 +16563,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -16550,7 +16642,11 @@ private constructor( additionalProperties = transit.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -16693,7 +16789,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -16770,7 +16868,11 @@ private constructor( additionalProperties = unknown.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -16913,7 +17015,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -16990,7 +17094,11 @@ private constructor( additionalProperties = vision.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -24214,7 +24322,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -24291,7 +24401,11 @@ private constructor( additionalProperties = clinic.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -24434,7 +24548,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -24511,7 +24627,11 @@ private constructor( additionalProperties = dental.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -24654,7 +24774,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -24731,7 +24853,11 @@ private constructor( additionalProperties = prescription.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -24874,7 +25000,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -24951,7 +25079,11 @@ private constructor( additionalProperties = surcharge.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -25096,7 +25228,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -25175,7 +25309,11 @@ private constructor( totalCumulative.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -25318,7 +25456,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -25397,7 +25537,11 @@ private constructor( totalHealthcare.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -25540,7 +25684,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -25617,7 +25763,11 @@ private constructor( additionalProperties = transit.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -25760,7 +25910,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -25837,7 +25989,11 @@ private constructor( additionalProperties = unknown.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -25980,7 +26136,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -26057,7 +26215,11 @@ private constructor( additionalProperties = vision.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -38952,7 +39114,7 @@ private constructor( purchaseDetails.getOptional("purchase_details") /** - * Surcharge amount details, if applicable. The amounts positive if the surcharge is + * Surcharge amount details, if applicable. The amount is positive if the surcharge is * added to to the overall transaction amount (surcharge), and negative if the surcharge * is deducted from the overall transaction amount (discount). * @@ -39646,8 +39808,8 @@ private constructor( } /** - * Surcharge amount details, if applicable. The amounts positive if the surcharge is - * added to to the overall transaction amount (surcharge), and negative if the + * Surcharge amount details, if applicable. The amount is positive if the surcharge + * is added to to the overall transaction amount (surcharge), and negative if the * surcharge is deducted from the overall transaction amount (discount). */ fun surcharge(surcharge: Surcharge?) = surcharge(JsonField.ofNullable(surcharge)) @@ -48295,7 +48457,7 @@ private constructor( } /** - * Surcharge amount details, if applicable. The amounts positive if the surcharge is + * Surcharge amount details, if applicable. The amount is positive if the surcharge is * added to to the overall transaction amount (surcharge), and negative if the surcharge * is deducted from the overall transaction amount (discount). */ @@ -50595,7 +50757,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -50672,7 +50836,11 @@ private constructor( additionalProperties = clinic.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -50815,7 +50983,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -50892,7 +51062,11 @@ private constructor( additionalProperties = dental.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -51035,7 +51209,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -51112,7 +51288,11 @@ private constructor( additionalProperties = prescription.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -51255,7 +51435,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -51332,7 +51514,11 @@ private constructor( additionalProperties = surcharge.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -51477,7 +51663,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -51556,7 +51744,11 @@ private constructor( totalCumulative.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -51699,7 +51891,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -51778,7 +51972,11 @@ private constructor( totalHealthcare.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -51921,7 +52119,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -51998,7 +52198,11 @@ private constructor( additionalProperties = transit.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -52141,7 +52345,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -52218,7 +52424,11 @@ private constructor( additionalProperties = unknown.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -52361,7 +52571,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -52438,7 +52650,11 @@ private constructor( additionalProperties = vision.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** 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 177459ebc..41df4f775 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 @@ -4905,7 +4905,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -4982,7 +4984,11 @@ private constructor( additionalProperties = clinic.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5125,7 +5131,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -5202,7 +5210,11 @@ private constructor( additionalProperties = dental.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5345,7 +5357,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -5422,7 +5436,11 @@ private constructor( additionalProperties = prescription.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5565,7 +5583,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -5642,7 +5662,11 @@ private constructor( additionalProperties = surcharge.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5787,7 +5811,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -5866,7 +5892,11 @@ private constructor( totalCumulative.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6009,7 +6039,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6088,7 +6120,11 @@ private constructor( totalHealthcare.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6231,7 +6267,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6308,7 +6346,11 @@ private constructor( additionalProperties = transit.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6451,7 +6493,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6528,7 +6572,11 @@ private constructor( additionalProperties = unknown.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6671,7 +6719,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6748,7 +6798,11 @@ private constructor( additionalProperties = vision.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** 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 d33bbc17f..51cdd03ae 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 @@ -4958,7 +4958,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -5035,7 +5037,11 @@ private constructor( additionalProperties = clinic.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5178,7 +5184,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -5255,7 +5263,11 @@ private constructor( additionalProperties = dental.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5398,7 +5410,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -5475,7 +5489,11 @@ private constructor( additionalProperties = prescription.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5618,7 +5636,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -5695,7 +5715,11 @@ private constructor( additionalProperties = surcharge.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5840,7 +5864,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -5919,7 +5945,11 @@ private constructor( totalCumulative.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6062,7 +6092,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6141,7 +6173,11 @@ private constructor( totalHealthcare.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6284,7 +6320,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6361,7 +6399,11 @@ private constructor( additionalProperties = transit.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6504,7 +6546,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6581,7 +6625,11 @@ private constructor( additionalProperties = unknown.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -6724,7 +6772,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type * or is unexpectedly missing or null (e.g. if the server responded with an @@ -6801,7 +6851,11 @@ private constructor( additionalProperties = vision.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive + * if it is added to the amount (such as an ATM surcharge fee) and negative + * if it is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** 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 276da737f..51f491e64 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 @@ -3505,7 +3505,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if it + * is added to the amount (such as an ATM surcharge fee) and negative if it is + * subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or * is unexpectedly missing or null (e.g. if the server responded with an @@ -3581,7 +3583,11 @@ private constructor( additionalProperties = clinic.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -3722,7 +3728,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if it + * is added to the amount (such as an ATM surcharge fee) and negative if it is + * subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or * is unexpectedly missing or null (e.g. if the server responded with an @@ -3798,7 +3806,11 @@ private constructor( additionalProperties = dental.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -3939,7 +3951,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if it + * is added to the amount (such as an ATM surcharge fee) and negative if it is + * subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or * is unexpectedly missing or null (e.g. if the server responded with an @@ -4015,7 +4029,11 @@ private constructor( additionalProperties = prescription.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -4156,7 +4174,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if it + * is added to the amount (such as an ATM surcharge fee) and negative if it is + * subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or * is unexpectedly missing or null (e.g. if the server responded with an @@ -4232,7 +4252,11 @@ private constructor( additionalProperties = surcharge.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -4373,7 +4397,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if it + * is added to the amount (such as an ATM surcharge fee) and negative if it is + * subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or * is unexpectedly missing or null (e.g. if the server responded with an @@ -4449,7 +4475,11 @@ private constructor( additionalProperties = totalCumulative.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -4590,7 +4620,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if it + * is added to the amount (such as an ATM surcharge fee) and negative if it is + * subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or * is unexpectedly missing or null (e.g. if the server responded with an @@ -4666,7 +4698,11 @@ private constructor( additionalProperties = totalHealthcare.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -4807,7 +4843,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if it + * is added to the amount (such as an ATM surcharge fee) and negative if it is + * subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or * is unexpectedly missing or null (e.g. if the server responded with an @@ -4883,7 +4921,11 @@ private constructor( additionalProperties = transit.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5024,7 +5066,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if it + * is added to the amount (such as an ATM surcharge fee) and negative if it is + * subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or * is unexpectedly missing or null (e.g. if the server responded with an @@ -5100,7 +5144,11 @@ private constructor( additionalProperties = unknown.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** @@ -5241,7 +5289,9 @@ private constructor( ) : this(amount, currency, mutableMapOf()) /** - * The amount in minor units of the `currency` field. + * The amount in minor units of the `currency` field. The amount is positive if it + * is added to the amount (such as an ATM surcharge fee) and negative if it is + * subtracted from the amount (such as a discount). * * @throws IncreaseInvalidDataException if the JSON field has an unexpected type or * is unexpectedly missing or null (e.g. if the server responded with an @@ -5317,7 +5367,11 @@ private constructor( additionalProperties = vision.additionalProperties.toMutableMap() } - /** The amount in minor units of the `currency` field. */ + /** + * The amount in minor units of the `currency` field. The amount is positive if + * it is added to the amount (such as an ATM surcharge fee) and negative if it + * is subtracted from the amount (such as a discount). + */ fun amount(amount: Long) = amount(JsonField.of(amount)) /** 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 0ea925703..473a8a4f6 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 @@ -18271,7 +18271,7 @@ private constructor( purchaseDetails.getOptional("purchase_details") /** - * Surcharge amount details, if applicable. The amounts positive if the surcharge is + * Surcharge amount details, if applicable. The amount is positive if the surcharge is * added to to the overall transaction amount (surcharge), and negative if the surcharge * is deducted from the overall transaction amount (discount). * @@ -18965,8 +18965,8 @@ private constructor( } /** - * Surcharge amount details, if applicable. The amounts positive if the surcharge is - * added to to the overall transaction amount (surcharge), and negative if the + * Surcharge amount details, if applicable. The amount is positive if the surcharge + * is added to to the overall transaction amount (surcharge), and negative if the * surcharge is deducted from the overall transaction amount (discount). */ fun surcharge(surcharge: Surcharge?) = surcharge(JsonField.ofNullable(surcharge)) @@ -27614,7 +27614,7 @@ private constructor( } /** - * Surcharge amount details, if applicable. The amounts positive if the surcharge is + * Surcharge amount details, if applicable. The amount is positive if the surcharge is * added to to the overall transaction amount (surcharge), and negative if the surcharge * is deducted from the overall transaction amount (discount). */ diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/async/InboundCheckDepositServiceAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/async/InboundCheckDepositServiceAsync.kt index 608cedba7..d716b2693 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/async/InboundCheckDepositServiceAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/async/InboundCheckDepositServiceAsync.kt @@ -133,7 +133,7 @@ interface InboundCheckDepositServiceAsync { ): CompletableFuture = return_(inboundCheckDepositId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( inboundCheckDepositId: String, params: InboundCheckDepositReturnParams, @@ -144,11 +144,11 @@ interface InboundCheckDepositServiceAsync { requestOptions, ) - /** @see return\_ */ + /** @see return_ */ fun return_(params: InboundCheckDepositReturnParams): CompletableFuture = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( params: InboundCheckDepositReturnParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -302,7 +302,7 @@ interface InboundCheckDepositServiceAsync { ): CompletableFuture> = return_(inboundCheckDepositId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( inboundCheckDepositId: String, params: InboundCheckDepositReturnParams, @@ -313,13 +313,13 @@ interface InboundCheckDepositServiceAsync { requestOptions, ) - /** @see return\_ */ + /** @see return_ */ fun return_( params: InboundCheckDepositReturnParams ): CompletableFuture> = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( params: InboundCheckDepositReturnParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/AchTransferServiceAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/AchTransferServiceAsync.kt index d304bb1fd..3f13eeb31 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/AchTransferServiceAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/AchTransferServiceAsync.kt @@ -106,7 +106,7 @@ interface AchTransferServiceAsync { fun return_(achTransferId: String): CompletableFuture = return_(achTransferId, AchTransferReturnParams.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( achTransferId: String, params: AchTransferReturnParams = AchTransferReturnParams.none(), @@ -114,23 +114,23 @@ interface AchTransferServiceAsync { ): CompletableFuture = return_(params.toBuilder().achTransferId(achTransferId).build(), requestOptions) - /** @see return\_ */ + /** @see return_ */ fun return_( achTransferId: String, params: AchTransferReturnParams = AchTransferReturnParams.none(), ): CompletableFuture = return_(achTransferId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( params: AchTransferReturnParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see return\_ */ + /** @see return_ */ fun return_(params: AchTransferReturnParams): CompletableFuture = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( achTransferId: String, requestOptions: RequestOptions, @@ -321,7 +321,7 @@ interface AchTransferServiceAsync { fun return_(achTransferId: String): CompletableFuture> = return_(achTransferId, AchTransferReturnParams.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( achTransferId: String, params: AchTransferReturnParams = AchTransferReturnParams.none(), @@ -329,25 +329,25 @@ interface AchTransferServiceAsync { ): CompletableFuture> = return_(params.toBuilder().achTransferId(achTransferId).build(), requestOptions) - /** @see return\_ */ + /** @see return_ */ fun return_( achTransferId: String, params: AchTransferReturnParams = AchTransferReturnParams.none(), ): CompletableFuture> = return_(achTransferId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( params: AchTransferReturnParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see return\_ */ + /** @see return_ */ fun return_( params: AchTransferReturnParams ): CompletableFuture> = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( achTransferId: String, requestOptions: RequestOptions, diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/CheckDepositServiceAsync.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/CheckDepositServiceAsync.kt index 017dc0f64..fff1ac0aa 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/CheckDepositServiceAsync.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/async/simulations/CheckDepositServiceAsync.kt @@ -71,7 +71,7 @@ interface CheckDepositServiceAsync { fun return_(checkDepositId: String): CompletableFuture = return_(checkDepositId, CheckDepositReturnParams.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( checkDepositId: String, params: CheckDepositReturnParams = CheckDepositReturnParams.none(), @@ -79,23 +79,23 @@ interface CheckDepositServiceAsync { ): CompletableFuture = return_(params.toBuilder().checkDepositId(checkDepositId).build(), requestOptions) - /** @see return\_ */ + /** @see return_ */ fun return_( checkDepositId: String, params: CheckDepositReturnParams = CheckDepositReturnParams.none(), ): CompletableFuture = return_(checkDepositId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( params: CheckDepositReturnParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see return\_ */ + /** @see return_ */ fun return_(params: CheckDepositReturnParams): CompletableFuture = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( checkDepositId: String, requestOptions: RequestOptions, @@ -204,7 +204,7 @@ interface CheckDepositServiceAsync { fun return_(checkDepositId: String): CompletableFuture> = return_(checkDepositId, CheckDepositReturnParams.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( checkDepositId: String, params: CheckDepositReturnParams = CheckDepositReturnParams.none(), @@ -212,25 +212,25 @@ interface CheckDepositServiceAsync { ): CompletableFuture> = return_(params.toBuilder().checkDepositId(checkDepositId).build(), requestOptions) - /** @see return\_ */ + /** @see return_ */ fun return_( checkDepositId: String, params: CheckDepositReturnParams = CheckDepositReturnParams.none(), ): CompletableFuture> = return_(checkDepositId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( params: CheckDepositReturnParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see return\_ */ + /** @see return_ */ fun return_( params: CheckDepositReturnParams ): CompletableFuture> = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( checkDepositId: String, requestOptions: RequestOptions, diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/InboundCheckDepositService.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/InboundCheckDepositService.kt index d7c8683db..e66602102 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/InboundCheckDepositService.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/InboundCheckDepositService.kt @@ -128,7 +128,7 @@ interface InboundCheckDepositService { params: InboundCheckDepositReturnParams, ): InboundCheckDeposit = return_(inboundCheckDepositId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( inboundCheckDepositId: String, params: InboundCheckDepositReturnParams, @@ -139,11 +139,11 @@ interface InboundCheckDepositService { requestOptions, ) - /** @see return\_ */ + /** @see return_ */ fun return_(params: InboundCheckDepositReturnParams): InboundCheckDeposit = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( params: InboundCheckDepositReturnParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -305,7 +305,7 @@ interface InboundCheckDepositService { ): HttpResponseFor = return_(inboundCheckDepositId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( inboundCheckDepositId: String, @@ -317,12 +317,12 @@ interface InboundCheckDepositService { requestOptions, ) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_(params: InboundCheckDepositReturnParams): HttpResponseFor = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( params: InboundCheckDepositReturnParams, diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/AchTransferService.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/AchTransferService.kt index c629b5081..6d45d927f 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/AchTransferService.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/AchTransferService.kt @@ -102,7 +102,7 @@ interface AchTransferService { fun return_(achTransferId: String): AchTransfer = return_(achTransferId, AchTransferReturnParams.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( achTransferId: String, params: AchTransferReturnParams = AchTransferReturnParams.none(), @@ -110,23 +110,23 @@ interface AchTransferService { ): AchTransfer = return_(params.toBuilder().achTransferId(achTransferId).build(), requestOptions) - /** @see return\_ */ + /** @see return_ */ fun return_( achTransferId: String, params: AchTransferReturnParams = AchTransferReturnParams.none(), ): AchTransfer = return_(achTransferId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( params: AchTransferReturnParams, requestOptions: RequestOptions = RequestOptions.none(), ): AchTransfer - /** @see return\_ */ + /** @see return_ */ fun return_(params: AchTransferReturnParams): AchTransfer = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_(achTransferId: String, requestOptions: RequestOptions): AchTransfer = return_(achTransferId, AchTransferReturnParams.none(), requestOptions) @@ -310,7 +310,7 @@ interface AchTransferService { fun return_(achTransferId: String): HttpResponseFor = return_(achTransferId, AchTransferReturnParams.none()) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( achTransferId: String, @@ -319,26 +319,26 @@ interface AchTransferService { ): HttpResponseFor = return_(params.toBuilder().achTransferId(achTransferId).build(), requestOptions) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( achTransferId: String, params: AchTransferReturnParams = AchTransferReturnParams.none(), ): HttpResponseFor = return_(achTransferId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( params: AchTransferReturnParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_(params: AchTransferReturnParams): HttpResponseFor = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( achTransferId: String, diff --git a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/CheckDepositService.kt b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/CheckDepositService.kt index 7a08fc76a..2f8bf7ace 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/CheckDepositService.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/services/blocking/simulations/CheckDepositService.kt @@ -68,7 +68,7 @@ interface CheckDepositService { fun return_(checkDepositId: String): CheckDeposit = return_(checkDepositId, CheckDepositReturnParams.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( checkDepositId: String, params: CheckDepositReturnParams = CheckDepositReturnParams.none(), @@ -76,23 +76,23 @@ interface CheckDepositService { ): CheckDeposit = return_(params.toBuilder().checkDepositId(checkDepositId).build(), requestOptions) - /** @see return\_ */ + /** @see return_ */ fun return_( checkDepositId: String, params: CheckDepositReturnParams = CheckDepositReturnParams.none(), ): CheckDeposit = return_(checkDepositId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_( params: CheckDepositReturnParams, requestOptions: RequestOptions = RequestOptions.none(), ): CheckDeposit - /** @see return\_ */ + /** @see return_ */ fun return_(params: CheckDepositReturnParams): CheckDeposit = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ fun return_(checkDepositId: String, requestOptions: RequestOptions): CheckDeposit = return_(checkDepositId, CheckDepositReturnParams.none(), requestOptions) @@ -199,7 +199,7 @@ interface CheckDepositService { fun return_(checkDepositId: String): HttpResponseFor = return_(checkDepositId, CheckDepositReturnParams.none()) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( checkDepositId: String, @@ -208,26 +208,26 @@ interface CheckDepositService { ): HttpResponseFor = return_(params.toBuilder().checkDepositId(checkDepositId).build(), requestOptions) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( checkDepositId: String, params: CheckDepositReturnParams = CheckDepositReturnParams.none(), ): HttpResponseFor = return_(checkDepositId, params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( params: CheckDepositReturnParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_(params: CheckDepositReturnParams): HttpResponseFor = return_(params, RequestOptions.none()) - /** @see return\_ */ + /** @see return_ */ @MustBeClosed fun return_( checkDepositId: String,