diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 07070f383..dd67050b9 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.295.0"
+ ".": "0.295.1"
}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 33c3a1950..4565b5706 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.295.1 (2025-08-22)
+
+Full Changelog: [v0.295.0...v0.295.1](https://github.com/Increase/increase-java/compare/v0.295.0...v0.295.1)
+
+### Bug Fixes
+
+* update singularization rules ([691c68b](https://github.com/Increase/increase-java/commit/691c68be2e3d95cc503a0684b2fee6c86618b9c8))
+
## 0.295.0 (2025-08-22)
Full Changelog: [v0.294.0...v0.295.0](https://github.com/Increase/increase-java/compare/v0.294.0...v0.295.0)
diff --git a/README.md b/README.md
index 383137723..966cb02b4 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.295.0)
-[](https://javadoc.io/doc/com.increase.api/increase-java/0.295.0)
+[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.295.1)
+[](https://javadoc.io/doc/com.increase.api/increase-java/0.295.1)
@@ -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.295.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.295.1).
@@ -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.295.0")
+implementation("com.increase.api:increase-java:0.295.1")
```
### Maven
@@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.295.0")
com.increase.api
increase-java
- 0.295.0
+ 0.295.1
```
diff --git a/build.gradle.kts b/build.gradle.kts
index dc40bf51b..6ab5d972e 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ repositories {
allprojects {
group = "com.increase.api"
- version = "0.295.0" // x-release-please-version
+ version = "0.295.1" // x-release-please-version
}
subprojects {
diff --git a/increase-java-client-okhttp/src/main/kotlin/com/increase/api/client/okhttp/IncreaseOkHttpClient.kt b/increase-java-client-okhttp/src/main/kotlin/com/increase/api/client/okhttp/IncreaseOkHttpClient.kt
index e39a18d6e..07c450eb7 100644
--- a/increase-java-client-okhttp/src/main/kotlin/com/increase/api/client/okhttp/IncreaseOkHttpClient.kt
+++ b/increase-java-client-okhttp/src/main/kotlin/com/increase/api/client/okhttp/IncreaseOkHttpClient.kt
@@ -220,33 +220,33 @@ class IncreaseOkHttpClient private constructor() {
fun putHeader(name: String, value: String) = apply { clientOptions.putHeader(name, value) }
- fun putHeaders(name: String, values: Iterable) = apply {
- clientOptions.putHeaders(name, values)
+ fun putheaders(name: String, values: Iterable) = apply {
+ clientOptions.putheaders(name, values)
}
- fun putAllHeaders(headers: Headers) = apply { clientOptions.putAllHeaders(headers) }
+ fun putAllheaders(headers: Headers) = apply { clientOptions.putAllheaders(headers) }
- fun putAllHeaders(headers: Map>) = apply {
- clientOptions.putAllHeaders(headers)
+ fun putAllheaders(headers: Map>) = apply {
+ clientOptions.putAllheaders(headers)
}
- fun replaceHeaders(name: String, value: String) = apply {
- clientOptions.replaceHeaders(name, value)
+ fun replaceheaders(name: String, value: String) = apply {
+ clientOptions.replaceheaders(name, value)
}
- fun replaceHeaders(name: String, values: Iterable) = apply {
- clientOptions.replaceHeaders(name, values)
+ fun replaceheaders(name: String, values: Iterable) = apply {
+ clientOptions.replaceheaders(name, values)
}
- fun replaceAllHeaders(headers: Headers) = apply { clientOptions.replaceAllHeaders(headers) }
+ fun replaceAllheaders(headers: Headers) = apply { clientOptions.replaceAllheaders(headers) }
- fun replaceAllHeaders(headers: Map>) = apply {
- clientOptions.replaceAllHeaders(headers)
+ fun replaceAllheaders(headers: Map>) = apply {
+ clientOptions.replaceAllheaders(headers)
}
- fun removeHeaders(name: String) = apply { clientOptions.removeHeaders(name) }
+ fun removeheaders(name: String) = apply { clientOptions.removeheaders(name) }
- fun removeAllHeaders(names: Set) = apply { clientOptions.removeAllHeaders(names) }
+ fun removeAllheaders(names: Set) = apply { clientOptions.removeAllheaders(names) }
fun queryParams(queryParams: QueryParams) = apply { clientOptions.queryParams(queryParams) }
@@ -258,38 +258,38 @@ class IncreaseOkHttpClient private constructor() {
clientOptions.putQueryParam(key, value)
}
- fun putQueryParams(key: String, values: Iterable) = apply {
- clientOptions.putQueryParams(key, values)
+ fun putquery_params(key: String, values: Iterable) = apply {
+ clientOptions.putquery_params(key, values)
}
- fun putAllQueryParams(queryParams: QueryParams) = apply {
- clientOptions.putAllQueryParams(queryParams)
+ fun putAllquery_params(queryParams: QueryParams) = apply {
+ clientOptions.putAllquery_params(queryParams)
}
- fun putAllQueryParams(queryParams: Map>) = apply {
- clientOptions.putAllQueryParams(queryParams)
+ fun putAllquery_params(queryParams: Map>) = apply {
+ clientOptions.putAllquery_params(queryParams)
}
- fun replaceQueryParams(key: String, value: String) = apply {
- clientOptions.replaceQueryParams(key, value)
+ fun replacequery_params(key: String, value: String) = apply {
+ clientOptions.replacequery_params(key, value)
}
- fun replaceQueryParams(key: String, values: Iterable) = apply {
- clientOptions.replaceQueryParams(key, values)
+ fun replacequery_params(key: String, values: Iterable) = apply {
+ clientOptions.replacequery_params(key, values)
}
- fun replaceAllQueryParams(queryParams: QueryParams) = apply {
- clientOptions.replaceAllQueryParams(queryParams)
+ fun replaceAllquery_params(queryParams: QueryParams) = apply {
+ clientOptions.replaceAllquery_params(queryParams)
}
- fun replaceAllQueryParams(queryParams: Map>) = apply {
- clientOptions.replaceAllQueryParams(queryParams)
+ fun replaceAllquery_params(queryParams: Map>) = apply {
+ clientOptions.replaceAllquery_params(queryParams)
}
- fun removeQueryParams(key: String) = apply { clientOptions.removeQueryParams(key) }
+ fun removequery_params(key: String) = apply { clientOptions.removequery_params(key) }
- fun removeAllQueryParams(keys: Set) = apply {
- clientOptions.removeAllQueryParams(keys)
+ fun removeAllquery_params(keys: Set) = apply {
+ clientOptions.removeAllquery_params(keys)
}
/**
diff --git a/increase-java-client-okhttp/src/main/kotlin/com/increase/api/client/okhttp/IncreaseOkHttpClientAsync.kt b/increase-java-client-okhttp/src/main/kotlin/com/increase/api/client/okhttp/IncreaseOkHttpClientAsync.kt
index d4c0b7a53..d87770533 100644
--- a/increase-java-client-okhttp/src/main/kotlin/com/increase/api/client/okhttp/IncreaseOkHttpClientAsync.kt
+++ b/increase-java-client-okhttp/src/main/kotlin/com/increase/api/client/okhttp/IncreaseOkHttpClientAsync.kt
@@ -220,33 +220,33 @@ class IncreaseOkHttpClientAsync private constructor() {
fun putHeader(name: String, value: String) = apply { clientOptions.putHeader(name, value) }
- fun putHeaders(name: String, values: Iterable) = apply {
- clientOptions.putHeaders(name, values)
+ fun putheaders(name: String, values: Iterable) = apply {
+ clientOptions.putheaders(name, values)
}
- fun putAllHeaders(headers: Headers) = apply { clientOptions.putAllHeaders(headers) }
+ fun putAllheaders(headers: Headers) = apply { clientOptions.putAllheaders(headers) }
- fun putAllHeaders(headers: Map>) = apply {
- clientOptions.putAllHeaders(headers)
+ fun putAllheaders(headers: Map>) = apply {
+ clientOptions.putAllheaders(headers)
}
- fun replaceHeaders(name: String, value: String) = apply {
- clientOptions.replaceHeaders(name, value)
+ fun replaceheaders(name: String, value: String) = apply {
+ clientOptions.replaceheaders(name, value)
}
- fun replaceHeaders(name: String, values: Iterable) = apply {
- clientOptions.replaceHeaders(name, values)
+ fun replaceheaders(name: String, values: Iterable) = apply {
+ clientOptions.replaceheaders(name, values)
}
- fun replaceAllHeaders(headers: Headers) = apply { clientOptions.replaceAllHeaders(headers) }
+ fun replaceAllheaders(headers: Headers) = apply { clientOptions.replaceAllheaders(headers) }
- fun replaceAllHeaders(headers: Map>) = apply {
- clientOptions.replaceAllHeaders(headers)
+ fun replaceAllheaders(headers: Map>) = apply {
+ clientOptions.replaceAllheaders(headers)
}
- fun removeHeaders(name: String) = apply { clientOptions.removeHeaders(name) }
+ fun removeheaders(name: String) = apply { clientOptions.removeheaders(name) }
- fun removeAllHeaders(names: Set) = apply { clientOptions.removeAllHeaders(names) }
+ fun removeAllheaders(names: Set) = apply { clientOptions.removeAllheaders(names) }
fun queryParams(queryParams: QueryParams) = apply { clientOptions.queryParams(queryParams) }
@@ -258,38 +258,38 @@ class IncreaseOkHttpClientAsync private constructor() {
clientOptions.putQueryParam(key, value)
}
- fun putQueryParams(key: String, values: Iterable) = apply {
- clientOptions.putQueryParams(key, values)
+ fun putquery_params(key: String, values: Iterable) = apply {
+ clientOptions.putquery_params(key, values)
}
- fun putAllQueryParams(queryParams: QueryParams) = apply {
- clientOptions.putAllQueryParams(queryParams)
+ fun putAllquery_params(queryParams: QueryParams) = apply {
+ clientOptions.putAllquery_params(queryParams)
}
- fun putAllQueryParams(queryParams: Map>) = apply {
- clientOptions.putAllQueryParams(queryParams)
+ fun putAllquery_params(queryParams: Map>) = apply {
+ clientOptions.putAllquery_params(queryParams)
}
- fun replaceQueryParams(key: String, value: String) = apply {
- clientOptions.replaceQueryParams(key, value)
+ fun replacequery_params(key: String, value: String) = apply {
+ clientOptions.replacequery_params(key, value)
}
- fun replaceQueryParams(key: String, values: Iterable) = apply {
- clientOptions.replaceQueryParams(key, values)
+ fun replacequery_params(key: String, values: Iterable) = apply {
+ clientOptions.replacequery_params(key, values)
}
- fun replaceAllQueryParams(queryParams: QueryParams) = apply {
- clientOptions.replaceAllQueryParams(queryParams)
+ fun replaceAllquery_params(queryParams: QueryParams) = apply {
+ clientOptions.replaceAllquery_params(queryParams)
}
- fun replaceAllQueryParams(queryParams: Map>) = apply {
- clientOptions.replaceAllQueryParams(queryParams)
+ fun replaceAllquery_params(queryParams: Map>) = apply {
+ clientOptions.replaceAllquery_params(queryParams)
}
- fun removeQueryParams(key: String) = apply { clientOptions.removeQueryParams(key) }
+ fun removequery_params(key: String) = apply { clientOptions.removequery_params(key) }
- fun removeAllQueryParams(keys: Set) = apply {
- clientOptions.removeAllQueryParams(keys)
+ fun removeAllquery_params(keys: Set) = apply {
+ clientOptions.removeAllquery_params(keys)
}
/**
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/core/ClientOptions.kt b/increase-java-core/src/main/kotlin/com/increase/api/core/ClientOptions.kt
index 9cb09226b..54106f7fa 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/core/ClientOptions.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/core/ClientOptions.kt
@@ -303,83 +303,83 @@ private constructor(
fun headers(headers: Headers) = apply {
this.headers.clear()
- putAllHeaders(headers)
+ putAllheaders(headers)
}
fun headers(headers: Map>) = apply {
this.headers.clear()
- putAllHeaders(headers)
+ putAllheaders(headers)
}
fun putHeader(name: String, value: String) = apply { headers.put(name, value) }
- fun putHeaders(name: String, values: Iterable) = apply { headers.put(name, values) }
+ fun putheaders(name: String, values: Iterable) = apply { headers.put(name, values) }
- fun putAllHeaders(headers: Headers) = apply { this.headers.putAll(headers) }
+ fun putAllheaders(headers: Headers) = apply { this.headers.putAll(headers) }
- fun putAllHeaders(headers: Map>) = apply {
+ fun putAllheaders(headers: Map>) = apply {
this.headers.putAll(headers)
}
- fun replaceHeaders(name: String, value: String) = apply { headers.replace(name, value) }
+ fun replaceheaders(name: String, value: String) = apply { headers.replace(name, value) }
- fun replaceHeaders(name: String, values: Iterable) = apply {
+ fun replaceheaders(name: String, values: Iterable) = apply {
headers.replace(name, values)
}
- fun replaceAllHeaders(headers: Headers) = apply { this.headers.replaceAll(headers) }
+ fun replaceAllheaders(headers: Headers) = apply { this.headers.replaceAll(headers) }
- fun replaceAllHeaders(headers: Map>) = apply {
+ fun replaceAllheaders(headers: Map>) = apply {
this.headers.replaceAll(headers)
}
- fun removeHeaders(name: String) = apply { headers.remove(name) }
+ fun removeheaders(name: String) = apply { headers.remove(name) }
- fun removeAllHeaders(names: Set) = apply { headers.removeAll(names) }
+ fun removeAllheaders(names: Set) = apply { headers.removeAll(names) }
fun queryParams(queryParams: QueryParams) = apply {
this.queryParams.clear()
- putAllQueryParams(queryParams)
+ putAllquery_params(queryParams)
}
fun queryParams(queryParams: Map>) = apply {
this.queryParams.clear()
- putAllQueryParams(queryParams)
+ putAllquery_params(queryParams)
}
fun putQueryParam(key: String, value: String) = apply { queryParams.put(key, value) }
- fun putQueryParams(key: String, values: Iterable) = apply {
+ fun putquery_params(key: String, values: Iterable) = apply {
queryParams.put(key, values)
}
- fun putAllQueryParams(queryParams: QueryParams) = apply {
+ fun putAllquery_params(queryParams: QueryParams) = apply {
this.queryParams.putAll(queryParams)
}
- fun putAllQueryParams(queryParams: Map>) = apply {
+ fun putAllquery_params(queryParams: Map>) = apply {
this.queryParams.putAll(queryParams)
}
- fun replaceQueryParams(key: String, value: String) = apply {
+ fun replacequery_params(key: String, value: String) = apply {
queryParams.replace(key, value)
}
- fun replaceQueryParams(key: String, values: Iterable) = apply {
+ fun replacequery_params(key: String, values: Iterable) = apply {
queryParams.replace(key, values)
}
- fun replaceAllQueryParams(queryParams: QueryParams) = apply {
+ fun replaceAllquery_params(queryParams: QueryParams) = apply {
this.queryParams.replaceAll(queryParams)
}
- fun replaceAllQueryParams(queryParams: Map>) = apply {
+ fun replaceAllquery_params(queryParams: Map>) = apply {
this.queryParams.replaceAll(queryParams)
}
- fun removeQueryParams(key: String) = apply { queryParams.remove(key) }
+ fun removequery_params(key: String) = apply { queryParams.remove(key) }
- fun removeAllQueryParams(keys: Set) = apply { queryParams.removeAll(keys) }
+ fun removeAllquery_params(keys: Set) = apply { queryParams.removeAll(keys) }
fun timeout(): Timeout = timeout
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/core/http/HttpRequest.kt b/increase-java-core/src/main/kotlin/com/increase/api/core/http/HttpRequest.kt
index c8c0f5f72..2e017a4ed 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/core/http/HttpRequest.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/core/http/HttpRequest.kt
@@ -53,83 +53,83 @@ private constructor(
fun headers(headers: Headers) = apply {
this.headers.clear()
- putAllHeaders(headers)
+ putAllheaders(headers)
}
fun headers(headers: Map>) = apply {
this.headers.clear()
- putAllHeaders(headers)
+ putAllheaders(headers)
}
fun putHeader(name: String, value: String) = apply { headers.put(name, value) }
- fun putHeaders(name: String, values: Iterable) = apply { headers.put(name, values) }
+ fun putheaders(name: String, values: Iterable) = apply { headers.put(name, values) }
- fun putAllHeaders(headers: Headers) = apply { this.headers.putAll(headers) }
+ fun putAllheaders(headers: Headers) = apply { this.headers.putAll(headers) }
- fun putAllHeaders(headers: Map>) = apply {
+ fun putAllheaders(headers: Map>) = apply {
this.headers.putAll(headers)
}
- fun replaceHeaders(name: String, value: String) = apply { headers.replace(name, value) }
+ fun replaceheaders(name: String, value: String) = apply { headers.replace(name, value) }
- fun replaceHeaders(name: String, values: Iterable) = apply {
+ fun replaceheaders(name: String, values: Iterable) = apply {
headers.replace(name, values)
}
- fun replaceAllHeaders(headers: Headers) = apply { this.headers.replaceAll(headers) }
+ fun replaceAllheaders(headers: Headers) = apply { this.headers.replaceAll(headers) }
- fun replaceAllHeaders(headers: Map>) = apply {
+ fun replaceAllheaders(headers: Map>) = apply {
this.headers.replaceAll(headers)
}
- fun removeHeaders(name: String) = apply { headers.remove(name) }
+ fun removeheaders(name: String) = apply { headers.remove(name) }
- fun removeAllHeaders(names: Set) = apply { headers.removeAll(names) }
+ fun removeAllheaders(names: Set) = apply { headers.removeAll(names) }
fun queryParams(queryParams: QueryParams) = apply {
this.queryParams.clear()
- putAllQueryParams(queryParams)
+ putAllquery_params(queryParams)
}
fun queryParams(queryParams: Map>) = apply {
this.queryParams.clear()
- putAllQueryParams(queryParams)
+ putAllquery_params(queryParams)
}
fun putQueryParam(key: String, value: String) = apply { queryParams.put(key, value) }
- fun putQueryParams(key: String, values: Iterable) = apply {
+ fun putquery_params(key: String, values: Iterable) = apply {
queryParams.put(key, values)
}
- fun putAllQueryParams(queryParams: QueryParams) = apply {
+ fun putAllquery_params(queryParams: QueryParams) = apply {
this.queryParams.putAll(queryParams)
}
- fun putAllQueryParams(queryParams: Map>) = apply {
+ fun putAllquery_params(queryParams: Map>) = apply {
this.queryParams.putAll(queryParams)
}
- fun replaceQueryParams(key: String, value: String) = apply {
+ fun replacequery_params(key: String, value: String) = apply {
queryParams.replace(key, value)
}
- fun replaceQueryParams(key: String, values: Iterable) = apply {
+ fun replacequery_params(key: String, values: Iterable) = apply {
queryParams.replace(key, values)
}
- fun replaceAllQueryParams(queryParams: QueryParams) = apply {
+ fun replaceAllquery_params(queryParams: QueryParams) = apply {
this.queryParams.replaceAll(queryParams)
}
- fun replaceAllQueryParams(queryParams: Map>) = apply {
+ fun replaceAllquery_params(queryParams: Map>) = apply {
this.queryParams.replaceAll(queryParams)
}
- fun removeQueryParams(key: String) = apply { queryParams.remove(key) }
+ fun removequery_params(key: String) = apply { queryParams.remove(key) }
- fun removeAllQueryParams(keys: Set) = apply { queryParams.removeAll(keys) }
+ fun removeAllquery_params(keys: Set) = apply { queryParams.removeAll(keys) }
fun body(body: HttpRequestBody) = apply { this.body = body }
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 918f91b0a..c510aebca 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
@@ -484,20 +484,20 @@ private constructor(
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
+ fun putAlladditional_properties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
keys.forEach(::removeAdditionalProperty)
}
@@ -676,20 +676,20 @@ private constructor(
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
+ fun putAlladditional_properties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
keys.forEach(::removeAdditionalProperty)
}
@@ -977,20 +977,20 @@ private constructor(
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
+ fun putAlladditional_properties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
keys.forEach(::removeAdditionalProperty)
}
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 8a8e10338..c554c0add 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
@@ -198,112 +198,111 @@ private constructor(
body.putAdditionalProperty(key, value)
}
- fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
+ fun putAlladditional_body_properties(additionalBodyProperties: Map) =
apply {
- body.putAllAdditionalProperties(additionalBodyProperties)
+ body.putAlladditional_body_properties(additionalBodyProperties)
}
fun removeAdditionalBodyProperty(key: String) = apply { body.removeAdditionalProperty(key) }
- fun removeAllAdditionalBodyProperties(keys: Set) = apply {
- body.removeAllAdditionalProperties(keys)
+ fun removeAlladditional_body_properties(keys: Set) = apply {
+ body.removeAlladditional_body_properties(keys)
}
fun additionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.clear()
- putAllAdditionalHeaders(additionalHeaders)
+ putAlladditional_headers(additionalHeaders)
}
fun additionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.clear()
- putAllAdditionalHeaders(additionalHeaders)
+ putAlladditional_headers(additionalHeaders)
}
fun putAdditionalHeader(name: String, value: String) = apply {
additionalHeaders.put(name, value)
}
- fun putAdditionalHeaders(name: String, values: Iterable) = apply {
+ fun putadditional_headers(name: String, values: Iterable) = apply {
additionalHeaders.put(name, values)
}
- fun putAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ fun putAlladditional_headers(additionalHeaders: Headers) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
- fun putAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ fun putAlladditional_headers(additionalHeaders: Map>) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
- fun replaceAdditionalHeaders(name: String, value: String) = apply {
+ fun replaceadditional_headers(name: String, value: String) = apply {
additionalHeaders.replace(name, value)
}
- fun replaceAdditionalHeaders(name: String, values: Iterable) = apply {
+ fun replaceadditional_headers(name: String, values: Iterable) = apply {
additionalHeaders.replace(name, values)
}
- fun replaceAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ fun replaceAlladditional_headers(additionalHeaders: Headers) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun replaceAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ fun replaceAlladditional_headers(additionalHeaders: Map>) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun removeAdditionalHeaders(name: String) = apply { additionalHeaders.remove(name) }
+ fun removeadditional_headers(name: String) = apply { additionalHeaders.remove(name) }
- fun removeAllAdditionalHeaders(names: Set) = apply {
+ fun removeAlladditional_headers(names: Set) = apply {
additionalHeaders.removeAll(names)
}
fun additionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.clear()
- putAllAdditionalQueryParams(additionalQueryParams)
+ putAlladditional_query_params(additionalQueryParams)
}
fun additionalQueryParams(additionalQueryParams: Map>) = apply {
this.additionalQueryParams.clear()
- putAllAdditionalQueryParams(additionalQueryParams)
+ putAlladditional_query_params(additionalQueryParams)
}
fun putAdditionalQueryParam(key: String, value: String) = apply {
additionalQueryParams.put(key, value)
}
- fun putAdditionalQueryParams(key: String, values: Iterable) = apply {
+ fun putadditional_query_params(key: String, values: Iterable) = apply {
additionalQueryParams.put(key, values)
}
- fun putAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ fun putAlladditional_query_params(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
- fun putAllAdditionalQueryParams(additionalQueryParams: Map>) =
+ fun putAlladditional_query_params(additionalQueryParams: Map>) =
apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
- fun replaceAdditionalQueryParams(key: String, value: String) = apply {
+ fun replaceadditional_query_params(key: String, value: String) = apply {
additionalQueryParams.replace(key, value)
}
- fun replaceAdditionalQueryParams(key: String, values: Iterable) = apply {
+ fun replaceadditional_query_params(key: String, values: Iterable) = apply {
additionalQueryParams.replace(key, values)
}
- fun replaceAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ fun replaceAlladditional_query_params(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.replaceAll(additionalQueryParams)
}
- fun replaceAllAdditionalQueryParams(additionalQueryParams: Map>) =
- apply {
- this.additionalQueryParams.replaceAll(additionalQueryParams)
- }
+ fun replaceAlladditional_query_params(
+ additionalQueryParams: Map>
+ ) = apply { this.additionalQueryParams.replaceAll(additionalQueryParams) }
- fun removeAdditionalQueryParams(key: String) = apply { additionalQueryParams.remove(key) }
+ fun removeadditional_query_params(key: String) = apply { additionalQueryParams.remove(key) }
- fun removeAllAdditionalQueryParams(keys: Set) = apply {
+ fun removeAlladditional_query_params(keys: Set) = apply {
additionalQueryParams.removeAll(keys)
}
@@ -523,20 +522,20 @@ private constructor(
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
+ fun putAlladditional_properties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
keys.forEach(::removeAdditionalProperty)
}
@@ -711,20 +710,20 @@ private constructor(
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
+ fun putAlladditional_properties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
keys.forEach(::removeAdditionalProperty)
}
@@ -1017,20 +1016,20 @@ private constructor(
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
+ fun putAlladditional_properties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
keys.forEach(::removeAdditionalProperty)
}
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 4be93aa18..55b31439a 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
@@ -151,20 +151,20 @@ private constructor(
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
+ fun putAlladditional_properties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
keys.forEach(::removeAdditionalProperty)
}
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 634e0e8c8..521b92618 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
@@ -153,99 +153,98 @@ private constructor(
fun additionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.clear()
- putAllAdditionalHeaders(additionalHeaders)
+ putAlladditional_headers(additionalHeaders)
}
fun additionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.clear()
- putAllAdditionalHeaders(additionalHeaders)
+ putAlladditional_headers(additionalHeaders)
}
fun putAdditionalHeader(name: String, value: String) = apply {
additionalHeaders.put(name, value)
}
- fun putAdditionalHeaders(name: String, values: Iterable) = apply {
+ fun putadditional_headers(name: String, values: Iterable) = apply {
additionalHeaders.put(name, values)
}
- fun putAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ fun putAlladditional_headers(additionalHeaders: Headers) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
- fun putAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ fun putAlladditional_headers(additionalHeaders: Map>) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
- fun replaceAdditionalHeaders(name: String, value: String) = apply {
+ fun replaceadditional_headers(name: String, value: String) = apply {
additionalHeaders.replace(name, value)
}
- fun replaceAdditionalHeaders(name: String, values: Iterable) = apply {
+ fun replaceadditional_headers(name: String, values: Iterable) = apply {
additionalHeaders.replace(name, values)
}
- fun replaceAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ fun replaceAlladditional_headers(additionalHeaders: Headers) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun replaceAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ fun replaceAlladditional_headers(additionalHeaders: Map>) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun removeAdditionalHeaders(name: String) = apply { additionalHeaders.remove(name) }
+ fun removeadditional_headers(name: String) = apply { additionalHeaders.remove(name) }
- fun removeAllAdditionalHeaders(names: Set) = apply {
+ fun removeAlladditional_headers(names: Set) = apply {
additionalHeaders.removeAll(names)
}
fun additionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.clear()
- putAllAdditionalQueryParams(additionalQueryParams)
+ putAlladditional_query_params(additionalQueryParams)
}
fun additionalQueryParams(additionalQueryParams: Map>) = apply {
this.additionalQueryParams.clear()
- putAllAdditionalQueryParams(additionalQueryParams)
+ putAlladditional_query_params(additionalQueryParams)
}
fun putAdditionalQueryParam(key: String, value: String) = apply {
additionalQueryParams.put(key, value)
}
- fun putAdditionalQueryParams(key: String, values: Iterable) = apply {
+ fun putadditional_query_params(key: String, values: Iterable) = apply {
additionalQueryParams.put(key, values)
}
- fun putAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ fun putAlladditional_query_params(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
- fun putAllAdditionalQueryParams(additionalQueryParams: Map>) =
+ fun putAlladditional_query_params(additionalQueryParams: Map>) =
apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
- fun replaceAdditionalQueryParams(key: String, value: String) = apply {
+ fun replaceadditional_query_params(key: String, value: String) = apply {
additionalQueryParams.replace(key, value)
}
- fun replaceAdditionalQueryParams(key: String, values: Iterable) = apply {
+ fun replaceadditional_query_params(key: String, values: Iterable) = apply {
additionalQueryParams.replace(key, values)
}
- fun replaceAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ fun replaceAlladditional_query_params(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.replaceAll(additionalQueryParams)
}
- fun replaceAllAdditionalQueryParams(additionalQueryParams: Map>) =
- apply {
- this.additionalQueryParams.replaceAll(additionalQueryParams)
- }
+ fun replaceAlladditional_query_params(
+ additionalQueryParams: Map>
+ ) = apply { this.additionalQueryParams.replaceAll(additionalQueryParams) }
- fun removeAdditionalQueryParams(key: String) = apply { additionalQueryParams.remove(key) }
+ fun removeadditional_query_params(key: String) = apply { additionalQueryParams.remove(key) }
- fun removeAllAdditionalQueryParams(keys: Set) = apply {
+ fun removeAlladditional_query_params(keys: Set) = apply {
additionalQueryParams.removeAll(keys)
}
@@ -376,50 +375,52 @@ private constructor(
fun additionalProperties(additionalProperties: QueryParams) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun additionalProperties(additionalProperties: Map>) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: String) = apply {
additionalProperties.put(key, value)
}
- fun putAdditionalProperties(key: String, values: Iterable) = apply {
+ fun putadditional_properties(key: String, values: Iterable) = apply {
additionalProperties.put(key, values)
}
- fun putAllAdditionalProperties(additionalProperties: QueryParams) = apply {
+ fun putAlladditional_properties(additionalProperties: QueryParams) = apply {
this.additionalProperties.putAll(additionalProperties)
}
- fun putAllAdditionalProperties(additionalProperties: Map>) =
+ fun putAlladditional_properties(additionalProperties: Map>) =
apply {
this.additionalProperties.putAll(additionalProperties)
}
- fun replaceAdditionalProperties(key: String, value: String) = apply {
+ fun replaceadditional_properties(key: String, value: String) = apply {
additionalProperties.replace(key, value)
}
- fun replaceAdditionalProperties(key: String, values: Iterable) = apply {
+ fun replaceadditional_properties(key: String, values: Iterable) = apply {
additionalProperties.replace(key, values)
}
- fun replaceAllAdditionalProperties(additionalProperties: QueryParams) = apply {
+ fun replaceAlladditional_properties(additionalProperties: QueryParams) = apply {
this.additionalProperties.replaceAll(additionalProperties)
}
- fun replaceAllAdditionalProperties(
+ fun replaceAlladditional_properties(
additionalProperties: Map>
) = apply { this.additionalProperties.replaceAll(additionalProperties) }
- fun removeAdditionalProperties(key: String) = apply { additionalProperties.remove(key) }
+ fun removeadditional_properties(key: String) = apply {
+ additionalProperties.remove(key)
+ }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
additionalProperties.removeAll(keys)
}
@@ -682,50 +683,52 @@ private constructor(
fun additionalProperties(additionalProperties: QueryParams) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun additionalProperties(additionalProperties: Map>) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: String) = apply {
additionalProperties.put(key, value)
}
- fun putAdditionalProperties(key: String, values: Iterable) = apply {
+ fun putadditional_properties(key: String, values: Iterable) = apply {
additionalProperties.put(key, values)
}
- fun putAllAdditionalProperties(additionalProperties: QueryParams) = apply {
+ fun putAlladditional_properties(additionalProperties: QueryParams) = apply {
this.additionalProperties.putAll(additionalProperties)
}
- fun putAllAdditionalProperties(additionalProperties: Map>) =
+ fun putAlladditional_properties(additionalProperties: Map>) =
apply {
this.additionalProperties.putAll(additionalProperties)
}
- fun replaceAdditionalProperties(key: String, value: String) = apply {
+ fun replaceadditional_properties(key: String, value: String) = apply {
additionalProperties.replace(key, value)
}
- fun replaceAdditionalProperties(key: String, values: Iterable) = apply {
+ fun replaceadditional_properties(key: String, values: Iterable) = apply {
additionalProperties.replace(key, values)
}
- fun replaceAllAdditionalProperties(additionalProperties: QueryParams) = apply {
+ fun replaceAlladditional_properties(additionalProperties: QueryParams) = apply {
this.additionalProperties.replaceAll(additionalProperties)
}
- fun replaceAllAdditionalProperties(
+ fun replaceAlladditional_properties(
additionalProperties: Map>
) = apply { this.additionalProperties.replaceAll(additionalProperties) }
- fun removeAdditionalProperties(key: String) = apply { additionalProperties.remove(key) }
+ fun removeadditional_properties(key: String) = apply {
+ additionalProperties.remove(key)
+ }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
additionalProperties.removeAll(keys)
}
@@ -813,50 +816,52 @@ private constructor(
fun additionalProperties(additionalProperties: QueryParams) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun additionalProperties(additionalProperties: Map>) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: String) = apply {
additionalProperties.put(key, value)
}
- fun putAdditionalProperties(key: String, values: Iterable) = apply {
+ fun putadditional_properties(key: String, values: Iterable) = apply {
additionalProperties.put(key, values)
}
- fun putAllAdditionalProperties(additionalProperties: QueryParams) = apply {
+ fun putAlladditional_properties(additionalProperties: QueryParams) = apply {
this.additionalProperties.putAll(additionalProperties)
}
- fun putAllAdditionalProperties(additionalProperties: Map>) =
+ fun putAlladditional_properties(additionalProperties: Map>) =
apply {
this.additionalProperties.putAll(additionalProperties)
}
- fun replaceAdditionalProperties(key: String, value: String) = apply {
+ fun replaceadditional_properties(key: String, value: String) = apply {
additionalProperties.replace(key, value)
}
- fun replaceAdditionalProperties(key: String, values: Iterable) = apply {
+ fun replaceadditional_properties(key: String, values: Iterable) = apply {
additionalProperties.replace(key, values)
}
- fun replaceAllAdditionalProperties(additionalProperties: QueryParams) = apply {
+ fun replaceAlladditional_properties(additionalProperties: QueryParams) = apply {
this.additionalProperties.replaceAll(additionalProperties)
}
- fun replaceAllAdditionalProperties(
+ fun replaceAlladditional_properties(
additionalProperties: Map>
) = apply { this.additionalProperties.replaceAll(additionalProperties) }
- fun removeAdditionalProperties(key: String) = apply { additionalProperties.remove(key) }
+ fun removeadditional_properties(key: String) = apply {
+ additionalProperties.remove(key)
+ }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
additionalProperties.removeAll(keys)
}
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 7ffc0b235..7ad88945a 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
@@ -63,99 +63,98 @@ private constructor(
fun additionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.clear()
- putAllAdditionalHeaders(additionalHeaders)
+ putAlladditional_headers(additionalHeaders)
}
fun additionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.clear()
- putAllAdditionalHeaders(additionalHeaders)
+ putAlladditional_headers(additionalHeaders)
}
fun putAdditionalHeader(name: String, value: String) = apply {
additionalHeaders.put(name, value)
}
- fun putAdditionalHeaders(name: String, values: Iterable) = apply {
+ fun putadditional_headers(name: String, values: Iterable) = apply {
additionalHeaders.put(name, values)
}
- fun putAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ fun putAlladditional_headers(additionalHeaders: Headers) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
- fun putAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ fun putAlladditional_headers(additionalHeaders: Map>) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
- fun replaceAdditionalHeaders(name: String, value: String) = apply {
+ fun replaceadditional_headers(name: String, value: String) = apply {
additionalHeaders.replace(name, value)
}
- fun replaceAdditionalHeaders(name: String, values: Iterable) = apply {
+ fun replaceadditional_headers(name: String, values: Iterable) = apply {
additionalHeaders.replace(name, values)
}
- fun replaceAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ fun replaceAlladditional_headers(additionalHeaders: Headers) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun replaceAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ fun replaceAlladditional_headers(additionalHeaders: Map>) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun removeAdditionalHeaders(name: String) = apply { additionalHeaders.remove(name) }
+ fun removeadditional_headers(name: String) = apply { additionalHeaders.remove(name) }
- fun removeAllAdditionalHeaders(names: Set) = apply {
+ fun removeAlladditional_headers(names: Set) = apply {
additionalHeaders.removeAll(names)
}
fun additionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.clear()
- putAllAdditionalQueryParams(additionalQueryParams)
+ putAlladditional_query_params(additionalQueryParams)
}
fun additionalQueryParams(additionalQueryParams: Map>) = apply {
this.additionalQueryParams.clear()
- putAllAdditionalQueryParams(additionalQueryParams)
+ putAlladditional_query_params(additionalQueryParams)
}
fun putAdditionalQueryParam(key: String, value: String) = apply {
additionalQueryParams.put(key, value)
}
- fun putAdditionalQueryParams(key: String, values: Iterable) = apply {
+ fun putadditional_query_params(key: String, values: Iterable) = apply {
additionalQueryParams.put(key, values)
}
- fun putAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ fun putAlladditional_query_params(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
- fun putAllAdditionalQueryParams(additionalQueryParams: Map>) =
+ fun putAlladditional_query_params(additionalQueryParams: Map>) =
apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
- fun replaceAdditionalQueryParams(key: String, value: String) = apply {
+ fun replaceadditional_query_params(key: String, value: String) = apply {
additionalQueryParams.replace(key, value)
}
- fun replaceAdditionalQueryParams(key: String, values: Iterable) = apply {
+ fun replaceadditional_query_params(key: String, values: Iterable) = apply {
additionalQueryParams.replace(key, values)
}
- fun replaceAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ fun replaceAlladditional_query_params(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.replaceAll(additionalQueryParams)
}
- fun replaceAllAdditionalQueryParams(additionalQueryParams: Map>) =
- apply {
- this.additionalQueryParams.replaceAll(additionalQueryParams)
- }
+ fun replaceAlladditional_query_params(
+ additionalQueryParams: Map>
+ ) = apply { this.additionalQueryParams.replaceAll(additionalQueryParams) }
- fun removeAdditionalQueryParams(key: String) = apply { additionalQueryParams.remove(key) }
+ fun removeadditional_query_params(key: String) = apply { additionalQueryParams.remove(key) }
- fun removeAllAdditionalQueryParams(keys: Set) = apply {
+ fun removeAlladditional_query_params(keys: Set) = apply {
additionalQueryParams.removeAll(keys)
}
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 a1d818a58..f7cc81966 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
@@ -208,112 +208,111 @@ private constructor(
body.putAdditionalProperty(key, value)
}
- fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
+ fun putAlladditional_body_properties(additionalBodyProperties: Map) =
apply {
- body.putAllAdditionalProperties(additionalBodyProperties)
+ body.putAlladditional_body_properties(additionalBodyProperties)
}
fun removeAdditionalBodyProperty(key: String) = apply { body.removeAdditionalProperty(key) }
- fun removeAllAdditionalBodyProperties(keys: Set) = apply {
- body.removeAllAdditionalProperties(keys)
+ fun removeAlladditional_body_properties(keys: Set) = apply {
+ body.removeAlladditional_body_properties(keys)
}
fun additionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.clear()
- putAllAdditionalHeaders(additionalHeaders)
+ putAlladditional_headers(additionalHeaders)
}
fun additionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.clear()
- putAllAdditionalHeaders(additionalHeaders)
+ putAlladditional_headers(additionalHeaders)
}
fun putAdditionalHeader(name: String, value: String) = apply {
additionalHeaders.put(name, value)
}
- fun putAdditionalHeaders(name: String, values: Iterable) = apply {
+ fun putadditional_headers(name: String, values: Iterable) = apply {
additionalHeaders.put(name, values)
}
- fun putAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ fun putAlladditional_headers(additionalHeaders: Headers) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
- fun putAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ fun putAlladditional_headers(additionalHeaders: Map>) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
- fun replaceAdditionalHeaders(name: String, value: String) = apply {
+ fun replaceadditional_headers(name: String, value: String) = apply {
additionalHeaders.replace(name, value)
}
- fun replaceAdditionalHeaders(name: String, values: Iterable) = apply {
+ fun replaceadditional_headers(name: String, values: Iterable) = apply {
additionalHeaders.replace(name, values)
}
- fun replaceAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ fun replaceAlladditional_headers(additionalHeaders: Headers) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun replaceAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ fun replaceAlladditional_headers(additionalHeaders: Map>) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun removeAdditionalHeaders(name: String) = apply { additionalHeaders.remove(name) }
+ fun removeadditional_headers(name: String) = apply { additionalHeaders.remove(name) }
- fun removeAllAdditionalHeaders(names: Set) = apply {
+ fun removeAlladditional_headers(names: Set) = apply {
additionalHeaders.removeAll(names)
}
fun additionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.clear()
- putAllAdditionalQueryParams(additionalQueryParams)
+ putAlladditional_query_params(additionalQueryParams)
}
fun additionalQueryParams(additionalQueryParams: Map>) = apply {
this.additionalQueryParams.clear()
- putAllAdditionalQueryParams(additionalQueryParams)
+ putAlladditional_query_params(additionalQueryParams)
}
fun putAdditionalQueryParam(key: String, value: String) = apply {
additionalQueryParams.put(key, value)
}
- fun putAdditionalQueryParams(key: String, values: Iterable) = apply {
+ fun putadditional_query_params(key: String, values: Iterable) = apply {
additionalQueryParams.put(key, values)
}
- fun putAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ fun putAlladditional_query_params(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
- fun putAllAdditionalQueryParams(additionalQueryParams: Map>) =
+ fun putAlladditional_query_params(additionalQueryParams: Map>) =
apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
- fun replaceAdditionalQueryParams(key: String, value: String) = apply {
+ fun replaceadditional_query_params(key: String, value: String) = apply {
additionalQueryParams.replace(key, value)
}
- fun replaceAdditionalQueryParams(key: String, values: Iterable) = apply {
+ fun replaceadditional_query_params(key: String, values: Iterable) = apply {
additionalQueryParams.replace(key, values)
}
- fun replaceAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ fun replaceAlladditional_query_params(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.replaceAll(additionalQueryParams)
}
- fun replaceAllAdditionalQueryParams(additionalQueryParams: Map>) =
- apply {
- this.additionalQueryParams.replaceAll(additionalQueryParams)
- }
+ fun replaceAlladditional_query_params(
+ additionalQueryParams: Map>
+ ) = apply { this.additionalQueryParams.replaceAll(additionalQueryParams) }
- fun removeAdditionalQueryParams(key: String) = apply { additionalQueryParams.remove(key) }
+ fun removeadditional_query_params(key: String) = apply { additionalQueryParams.remove(key) }
- fun removeAllAdditionalQueryParams(keys: Set) = apply {
+ fun removeAlladditional_query_params(keys: Set) = apply {
additionalQueryParams.removeAll(keys)
}
@@ -522,20 +521,20 @@ private constructor(
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
+ fun putAlladditional_properties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set) = apply {
keys.forEach(::removeAdditionalProperty)
}
@@ -687,20 +686,20 @@ private constructor(
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- putAllAdditionalProperties(additionalProperties)
+ putAlladditional_properties(additionalProperties)
}
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
+ fun putAlladditional_properties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
- fun removeAllAdditionalProperties(keys: Set) = apply {
+ fun removeAlladditional_properties(keys: Set