diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 83946c948..5f7092c0f 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.515.0"
+ ".": "0.516.0"
}
\ No newline at end of file
diff --git a/.stats.yml b/.stats.yml
index ebb831829..4040608c9 100644
--- a/.stats.yml
+++ b/.stats.yml
@@ -1,4 +1,4 @@
configured_endpoints: 241
-openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ecd0cee565701f1d47c0db3efed2734f1195f60e5767c9c5f67ddb5de5e6abf1.yml
-openapi_spec_hash: d9205bf9cc1ce52d0d046007318761a1
+openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4be650ff48cb364ea7a5b638127234a1097527c5814c232559d6157516ec1d0a.yml
+openapi_spec_hash: 2acb075b897ec407db8d854467a51669
config_hash: cb5b8736705c06b670f6a25484622d62
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 86cd8b0a5..66670b23b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.516.0 (2026-04-14)
+
+Full Changelog: [v0.515.0...v0.516.0](https://github.com/Increase/increase-java/compare/v0.515.0...v0.516.0)
+
+### Features
+
+* **api:** api update ([c1baeb7](https://github.com/Increase/increase-java/commit/c1baeb7ba49dc687ac25bf681352214ad9851623))
+
## 0.515.0 (2026-04-13)
Full Changelog: [v0.514.0...v0.515.0](https://github.com/Increase/increase-java/compare/v0.514.0...v0.515.0)
diff --git a/README.md b/README.md
index 1c7e4aa94..c39f496b9 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.515.0)
-[](https://javadoc.io/doc/com.increase.api/increase-java/0.515.0)
+[](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.516.0)
+[](https://javadoc.io/doc/com.increase.api/increase-java/0.516.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.515.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.516.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.515.0")
+implementation("com.increase.api:increase-java:0.516.0")
```
### Maven
@@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.515.0")
com.increase.api
increase-java
- 0.515.0
+ 0.516.0
```
diff --git a/build.gradle.kts b/build.gradle.kts
index 173b0236d..e82253812 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ repositories {
allprojects {
group = "com.increase.api"
- version = "0.515.0" // x-release-please-version
+ version = "0.516.0" // x-release-please-version
}
subprojects {
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 b7d9e2717..81b906bc2 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
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -135,7 +136,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageResponse.kt
index 8867834b1..41ff8ac3e 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounts/AccountListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageResponse.kt
index 1f40891bb..c9b5accf2 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accountstatements/AccountStatementListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageResponse.kt
index ee7169d0e..09473fc1e 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/accounttransfers/AccountTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageResponse.kt
index 683d38ca0..6a3d9b62a 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achprenotifications/AchPrenotificationListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageResponse.kt
index ba224a5ea..6c57c9c16 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/achtransfers/AchTransferListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/beneficialowners/BeneficialOwnerListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/beneficialowners/BeneficialOwnerListPageResponse.kt
index ecf6a70a4..0a6f32287 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/beneficialowners/BeneficialOwnerListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/beneficialowners/BeneficialOwnerListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageResponse.kt
index ab8d56227..1b661f937 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingaccounts/BookkeepingAccountListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageResponse.kt
index 6364ab287..4530ac179 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentries/BookkeepingEntryListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageResponse.kt
index 62ea0aef2..68583b991 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/bookkeepingentrysets/BookkeepingEntrySetListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -138,7 +139,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageResponse.kt
index 8ca9d9a35..52cbd4669 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/carddisputes/CardDisputeListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageResponse.kt
index ee43e398b..02be8c6c5 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpayments/CardPaymentListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageResponse.kt
index fb8febe63..1bc7db547 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpurchasesupplements/CardPurchaseSupplementListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -140,7 +141,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpushtransfers/CardPushTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpushtransfers/CardPushTransferListPageResponse.kt
index 7a8324456..ea50c9843 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardpushtransfers/CardPushTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardpushtransfers/CardPushTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageResponse.kt
index 69c2b231a..5405a372e 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cards/CardListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -131,7 +132,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardtokens/CardTokenListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardtokens/CardTokenListPageResponse.kt
index efe5e9148..ed6bd2379 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardtokens/CardTokenListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardtokens/CardTokenListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/cardvalidations/CardValidationListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/cardvalidations/CardValidationListPageResponse.kt
index 36bf00502..15bc1b3a0 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/cardvalidations/CardValidationListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/cardvalidations/CardValidationListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -136,7 +137,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageResponse.kt
index fca0aa67e..728c608ab 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDepositListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -134,7 +135,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageResponse.kt
index 011fd93dd..9a24054a2 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/checktransfers/CheckTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -135,7 +136,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageResponse.kt
index 772ba046e..bbf86709e 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransactionListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -138,7 +139,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageResponse.kt
index b79889b74..70f882f01 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalcardprofiles/DigitalCardProfileListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageResponse.kt
index 5a5e6de79..33226a9dc 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/digitalwallettokens/DigitalWalletTokenListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageResponse.kt
index 0b14c799f..53ad8ba9d 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entityonboardingsessions/EntityOnboardingSessionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entityonboardingsessions/EntityOnboardingSessionListPageResponse.kt
index f3a9d3f21..d1613597c 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/entityonboardingsessions/EntityOnboardingSessionListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entityonboardingsessions/EntityOnboardingSessionListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -140,7 +141,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageResponse.kt
index e9745d07e..4fba27337 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/events/EventListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageResponse.kt
index 7bb8a523c..c11f0ca47 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/eventsubscriptions/EventSubscriptionListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageResponse.kt
index 224854996..5aaf02358 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageResponse.kt
index a2c30b3ad..6aaa9a1fb 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/externalaccounts/ExternalAccountListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/fednowtransfers/FednowTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/fednowtransfers/FednowTransferListPageResponse.kt
index 42b40ec21..d1638004c 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/fednowtransfers/FednowTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/fednowtransfers/FednowTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -136,7 +137,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageResponse.kt
index d19d77aa3..a54356435 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/files/FileListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -131,7 +132,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageResponse.kt
index 9d5c71ce5..c6cfbbb97 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundachtransfers/InboundAchTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageResponse.kt
index 21382c712..d94cc4e49 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundcheckdeposits/InboundCheckDepositListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -138,7 +139,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundfednowtransfers/InboundFednowTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundfednowtransfers/InboundFednowTransferListPageResponse.kt
index 7ba304261..36ea5c381 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundfednowtransfers/InboundFednowTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundfednowtransfers/InboundFednowTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -138,7 +139,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageResponse.kt
index 71b62bea8..0198bc06e 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundmailitems/InboundMailItemListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageResponse.kt
index 8dfaacb78..62d722baf 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundrealtimepaymentstransfers/InboundRealTimePaymentsTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -141,7 +142,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageResponse.kt
index 0694fbae6..484211c73 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiredrawdownrequests/InboundWireDrawdownRequestListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -140,7 +141,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageResponse.kt
index 9a819fa83..ac2063b9b 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/inboundwiretransfers/InboundWireTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -138,7 +139,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageResponse.kt
index baa3b0ff3..f173ece25 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiaccountenrollments/IntrafiAccountEnrollmentListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -140,7 +141,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageResponse.kt
index 24c9ea4fb..1d3c3d787 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/intrafiexclusions/IntrafiExclusionListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageResponse.kt
index 6f58c0358..004059007 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/lockboxes/LockboxListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageResponse.kt
index fbe4d6bfe..1e4b33a0e 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthapplications/OAuthApplicationListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageResponse.kt
index 8f2c66a26..307b0dca2 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/oauthconnections/OAuthConnectionListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageResponse.kt
index d7db61a20..ac4b344f6 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/pendingtransactions/PendingTransactionListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageResponse.kt
index f67b66899..b2c100620 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcardprofiles/PhysicalCardProfileListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -138,7 +139,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageResponse.kt
index c70a9bc5c..e6c1566d3 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/physicalcards/PhysicalCardListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -134,7 +135,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageResponse.kt
index f653285aa..cd4e87376 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/programs/ProgramListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageResponse.kt
index ca717db89..bd320546e 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/realtimepaymentstransfers/RealTimePaymentsTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -140,7 +141,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageResponse.kt
index 8b944fbe8..b61cf31ad 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/routingnumbers/RoutingNumberListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -137,7 +138,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageResponse.kt
index 87630b151..2f8a9b6c0 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/supplementaldocuments/SupplementalDocumentListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -140,7 +141,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/swifttransfers/SwiftTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/swifttransfers/SwiftTransferListPageResponse.kt
index 79988066e..f9c5cac2c 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/swifttransfers/SwiftTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/swifttransfers/SwiftTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -135,7 +136,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageResponse.kt
index 463455347..a101f146b 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/transactions/TransactionListPageResponse.kt
@@ -45,7 +45,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -132,7 +133,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageResponse.kt
index 52e9d6477..8d4656f45 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiredrawdownrequests/WireDrawdownRequestListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -138,7 +139,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */
diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageResponse.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageResponse.kt
index 8f775277a..b7cccee54 100644
--- a/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageResponse.kt
+++ b/increase-java-core/src/main/kotlin/com/increase/api/models/wiretransfers/WireTransferListPageResponse.kt
@@ -47,7 +47,8 @@ private constructor(
fun data(): List = data.getRequired("data")
/**
- * A pointer to a place in the list.
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next
+ * page of results. If there are no more results, the value will be `null`.
*
* @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if the
* server responded with an unexpected value).
@@ -134,7 +135,10 @@ private constructor(
}
}
- /** A pointer to a place in the list. */
+ /**
+ * A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the
+ * next page of results. If there are no more results, the value will be `null`.
+ */
fun nextCursor(nextCursor: String?) = nextCursor(JsonField.ofNullable(nextCursor))
/** Alias for calling [Builder.nextCursor] with `nextCursor.orElse(null)`. */