diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index ca93fdaad..7fef08e1b 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.97.0"
+ ".": "0.97.1"
}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e8f2aa175..492eef95a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,18 @@
# Changelog
+## 0.97.1 (2025-07-24)
+
+Full Changelog: [v0.97.0...v0.97.1](https://github.com/lithic-com/lithic-java/compare/v0.97.0...v0.97.1)
+
+### Bug Fixes
+
+* **client:** accidental mutability of some classes ([fc619ca](https://github.com/lithic-com/lithic-java/commit/fc619cadba3ade9214c2638bb9f9c5c224925a9d))
+
+
+### Chores
+
+* **internal:** remove unnecessary `[...]` in `[@see](https://github.com/see)` ([47d67f7](https://github.com/lithic-com/lithic-java/commit/47d67f774679aed9f823bf66237895ac21c8a2ae))
+
## 0.97.0 (2025-07-23)
Full Changelog: [v0.96.1...v0.97.0](https://github.com/lithic-com/lithic-java/compare/v0.96.1...v0.97.0)
diff --git a/README.md b/README.md
index 2911c1104..24a7c240b 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-[](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.97.0)
-[](https://javadoc.io/doc/com.lithic.api/lithic-java/0.97.0)
+[](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.97.1)
+[](https://javadoc.io/doc/com.lithic.api/lithic-java/0.97.1)
@@ -13,7 +13,7 @@ The Lithic Java SDK is similar to the Lithic Kotlin SDK but with minor differenc
-The REST API documentation can be found on [docs.lithic.com](https://docs.lithic.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.lithic.api/lithic-java/0.97.0).
+The REST API documentation can be found on [docs.lithic.com](https://docs.lithic.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.lithic.api/lithic-java/0.97.1).
@@ -24,7 +24,7 @@ The REST API documentation can be found on [docs.lithic.com](https://docs.lithic
### Gradle
```kotlin
-implementation("com.lithic.api:lithic-java:0.97.0")
+implementation("com.lithic.api:lithic-java:0.97.1")
```
### Maven
@@ -33,7 +33,7 @@ implementation("com.lithic.api:lithic-java:0.97.0")
com.lithic.api
lithic-java
- 0.97.0
+ 0.97.1
```
diff --git a/build.gradle.kts b/build.gradle.kts
index 10f2bf60e..88485b384 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ repositories {
allprojects {
group = "com.lithic.api"
- version = "0.97.0" // x-release-please-version
+ version = "0.97.1" // x-release-please-version
}
subprojects {
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClient.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClient.kt
index 1a5d815fa..ababd62f1 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClient.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClient.kt
@@ -136,17 +136,17 @@ interface LithicClient {
/** Status of api */
fun apiStatus(): ApiStatus = apiStatus(ClientApiStatusParams.none())
- /** @see [apiStatus] */
+ /** @see apiStatus */
fun apiStatus(
params: ClientApiStatusParams = ClientApiStatusParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): ApiStatus
- /** @see [apiStatus] */
+ /** @see apiStatus */
fun apiStatus(params: ClientApiStatusParams = ClientApiStatusParams.none()): ApiStatus =
apiStatus(params, RequestOptions.none())
- /** @see [apiStatus] */
+ /** @see apiStatus */
fun apiStatus(requestOptions: RequestOptions): ApiStatus =
apiStatus(ClientApiStatusParams.none(), requestOptions)
@@ -236,20 +236,20 @@ interface LithicClient {
@MustBeClosed
fun apiStatus(): HttpResponseFor = apiStatus(ClientApiStatusParams.none())
- /** @see [apiStatus] */
+ /** @see apiStatus */
@MustBeClosed
fun apiStatus(
params: ClientApiStatusParams = ClientApiStatusParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): HttpResponseFor
- /** @see [apiStatus] */
+ /** @see apiStatus */
@MustBeClosed
fun apiStatus(
params: ClientApiStatusParams = ClientApiStatusParams.none()
): HttpResponseFor = apiStatus(params, RequestOptions.none())
- /** @see [apiStatus] */
+ /** @see apiStatus */
@MustBeClosed
fun apiStatus(requestOptions: RequestOptions): HttpResponseFor =
apiStatus(ClientApiStatusParams.none(), requestOptions)
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClientAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClientAsync.kt
index 25833f2ec..20cbe7005 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClientAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClientAsync.kt
@@ -136,18 +136,18 @@ interface LithicClientAsync {
/** Status of api */
fun apiStatus(): CompletableFuture = apiStatus(ClientApiStatusParams.none())
- /** @see [apiStatus] */
+ /** @see apiStatus */
fun apiStatus(
params: ClientApiStatusParams = ClientApiStatusParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [apiStatus] */
+ /** @see apiStatus */
fun apiStatus(
params: ClientApiStatusParams = ClientApiStatusParams.none()
): CompletableFuture = apiStatus(params, RequestOptions.none())
- /** @see [apiStatus] */
+ /** @see apiStatus */
fun apiStatus(requestOptions: RequestOptions): CompletableFuture =
apiStatus(ClientApiStatusParams.none(), requestOptions)
@@ -239,18 +239,18 @@ interface LithicClientAsync {
fun apiStatus(): CompletableFuture> =
apiStatus(ClientApiStatusParams.none())
- /** @see [apiStatus] */
+ /** @see apiStatus */
fun apiStatus(
params: ClientApiStatusParams = ClientApiStatusParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [apiStatus] */
+ /** @see apiStatus */
fun apiStatus(
params: ClientApiStatusParams = ClientApiStatusParams.none()
): CompletableFuture> = apiStatus(params, RequestOptions.none())
- /** @see [apiStatus] */
+ /** @see apiStatus */
fun apiStatus(
requestOptions: RequestOptions
): CompletableFuture> =
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPage.kt
index ea67d822b..f4cbfc2bf 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [AccountHolderService.list] */
+/** @see AccountHolderService.list */
class AccountHolderListPage
private constructor(
private val service: AccountHolderService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [AccountHolderListPageResponse], but gracefully handles missing data.
*
- * @see [AccountHolderListPageResponse.data]
+ * @see AccountHolderListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [AccountHolderListPageResponse], but gracefully handles missing data.
*
- * @see [AccountHolderListPageResponse.hasMore]
+ * @see AccountHolderListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPageAsync.kt
index f4b93ab02..3b71d863a 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountHolderListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [AccountHolderServiceAsync.list] */
+/** @see AccountHolderServiceAsync.list */
class AccountHolderListPageAsync
private constructor(
private val service: AccountHolderServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [AccountHolderListPageResponse], but gracefully handles missing data.
*
- * @see [AccountHolderListPageResponse.data]
+ * @see AccountHolderListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [AccountHolderListPageResponse], but gracefully handles missing data.
*
- * @see [AccountHolderListPageResponse.hasMore]
+ * @see AccountHolderListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPage.kt
index aafebdcfd..bfb4e05e5 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [AccountService.list] */
+/** @see AccountService.list */
class AccountListPage
private constructor(
private val service: AccountService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [AccountListPageResponse], but gracefully handles missing data.
*
- * @see [AccountListPageResponse.data]
+ * @see AccountListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [AccountListPageResponse], but gracefully handles missing data.
*
- * @see [AccountListPageResponse.hasMore]
+ * @see AccountListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPageAsync.kt
index 4812bee1c..99b219556 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AccountListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [AccountServiceAsync.list] */
+/** @see AccountServiceAsync.list */
class AccountListPageAsync
private constructor(
private val service: AccountServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [AccountListPageResponse], but gracefully handles missing data.
*
- * @see [AccountListPageResponse.data]
+ * @see AccountListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [AccountListPageResponse], but gracefully handles missing data.
*
- * @see [AccountListPageResponse.hasMore]
+ * @see AccountListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPage.kt
index 2972cd86e..27282c569 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [AggregateBalanceService.list] */
+/** @see AggregateBalanceService.list */
class AggregateBalanceListPage
private constructor(
private val service: AggregateBalanceService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [AggregateBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [AggregateBalanceListPageResponse.data]
+ * @see AggregateBalanceListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [AggregateBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [AggregateBalanceListPageResponse.hasMore]
+ * @see AggregateBalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPageAsync.kt
index 2c9e59532..2973ef682 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AggregateBalanceListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [AggregateBalanceServiceAsync.list] */
+/** @see AggregateBalanceServiceAsync.list */
class AggregateBalanceListPageAsync
private constructor(
private val service: AggregateBalanceServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [AggregateBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [AggregateBalanceListPageResponse.data]
+ * @see AggregateBalanceListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [AggregateBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [AggregateBalanceListPageResponse.hasMore]
+ * @see AggregateBalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleCondition.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleCondition.kt
index 2e5da6b15..e3a36ec5e 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleCondition.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleCondition.kt
@@ -22,6 +22,7 @@ import com.lithic.api.core.JsonMissing
import com.lithic.api.core.JsonValue
import com.lithic.api.core.allMaxBy
import com.lithic.api.core.getOrThrow
+import com.lithic.api.core.toImmutable
import com.lithic.api.errors.LithicInvalidDataException
import java.util.Collections
import java.util.Objects
@@ -589,7 +590,8 @@ private constructor(
/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
@JvmStatic
- fun ofListOfStrings(listOfStrings: List) = Value(listOfStrings = listOfStrings)
+ fun ofListOfStrings(listOfStrings: List) =
+ Value(listOfStrings = listOfStrings.toImmutable())
}
/** An interface that defines how to map each variant of [Value] to a value of type [T]. */
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPage.kt
index 477d2012b..b375e7eba 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [V2Service.list] */
+/** @see V2Service.list */
class AuthRuleV2ListPage
private constructor(
private val service: V2Service,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [AuthRuleV2ListPageResponse], but gracefully handles missing data.
*
- * @see [AuthRuleV2ListPageResponse.data]
+ * @see AuthRuleV2ListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [AuthRuleV2ListPageResponse], but gracefully handles missing data.
*
- * @see [AuthRuleV2ListPageResponse.hasMore]
+ * @see AuthRuleV2ListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPageAsync.kt
index 95daec735..eb7f3078e 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/AuthRuleV2ListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [V2ServiceAsync.list] */
+/** @see V2ServiceAsync.list */
class AuthRuleV2ListPageAsync
private constructor(
private val service: V2ServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [AuthRuleV2ListPageResponse], but gracefully handles missing data.
*
- * @see [AuthRuleV2ListPageResponse.data]
+ * @see AuthRuleV2ListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [AuthRuleV2ListPageResponse], but gracefully handles missing data.
*
- * @see [AuthRuleV2ListPageResponse.hasMore]
+ * @see AuthRuleV2ListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/BalanceListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/BalanceListPage.kt
index 25973ae4b..c49bcbeea 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/BalanceListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/BalanceListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [BalanceService.list] */
+/** @see BalanceService.list */
class BalanceListPage
private constructor(
private val service: BalanceService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [BalanceListPageResponse], but gracefully handles missing data.
*
- * @see [BalanceListPageResponse.data]
+ * @see BalanceListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [BalanceListPageResponse], but gracefully handles missing data.
*
- * @see [BalanceListPageResponse.hasMore]
+ * @see BalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/BalanceListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/BalanceListPageAsync.kt
index b70c8b286..652e8bb24 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/BalanceListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/BalanceListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [BalanceServiceAsync.list] */
+/** @see BalanceServiceAsync.list */
class BalanceListPageAsync
private constructor(
private val service: BalanceServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [BalanceListPageResponse], but gracefully handles missing data.
*
- * @see [BalanceListPageResponse.data]
+ * @see BalanceListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [BalanceListPageResponse], but gracefully handles missing data.
*
- * @see [BalanceListPageResponse.hasMore]
+ * @see BalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/BookTransferListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/BookTransferListPage.kt
index 30bcbfec8..a68000086 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/BookTransferListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/BookTransferListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [BookTransferService.list] */
+/** @see BookTransferService.list */
class BookTransferListPage
private constructor(
private val service: BookTransferService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [BookTransferListPageResponse], but gracefully handles missing data.
*
- * @see [BookTransferListPageResponse.data]
+ * @see BookTransferListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [BookTransferListPageResponse], but gracefully handles missing data.
*
- * @see [BookTransferListPageResponse.hasMore]
+ * @see BookTransferListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/BookTransferListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/BookTransferListPageAsync.kt
index 7036e17c6..0be2b0555 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/BookTransferListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/BookTransferListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [BookTransferServiceAsync.list] */
+/** @see BookTransferServiceAsync.list */
class BookTransferListPageAsync
private constructor(
private val service: BookTransferServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [BookTransferListPageResponse], but gracefully handles missing data.
*
- * @see [BookTransferListPageResponse.data]
+ * @see BookTransferListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [BookTransferListPageResponse], but gracefully handles missing data.
*
- * @see [BookTransferListPageResponse.hasMore]
+ * @see BookTransferListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardAggregateBalanceListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardAggregateBalanceListPage.kt
index 6e5564286..96f9f0fa4 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardAggregateBalanceListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardAggregateBalanceListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [AggregateBalanceService.list] */
+/** @see AggregateBalanceService.list */
class CardAggregateBalanceListPage
private constructor(
private val service: AggregateBalanceService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [CardAggregateBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [CardAggregateBalanceListPageResponse.data]
+ * @see CardAggregateBalanceListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [CardAggregateBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [CardAggregateBalanceListPageResponse.hasMore]
+ * @see CardAggregateBalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardAggregateBalanceListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardAggregateBalanceListPageAsync.kt
index da3db1b05..a99214a2f 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardAggregateBalanceListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardAggregateBalanceListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [AggregateBalanceServiceAsync.list] */
+/** @see AggregateBalanceServiceAsync.list */
class CardAggregateBalanceListPageAsync
private constructor(
private val service: AggregateBalanceServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [CardAggregateBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [CardAggregateBalanceListPageResponse.data]
+ * @see CardAggregateBalanceListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [CardAggregateBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [CardAggregateBalanceListPageResponse.hasMore]
+ * @see CardAggregateBalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardBalanceListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardBalanceListPage.kt
index fd1736310..4d9586b28 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardBalanceListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardBalanceListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [BalanceService.list] */
+/** @see BalanceService.list */
class CardBalanceListPage
private constructor(
private val service: BalanceService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [CardBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [CardBalanceListPageResponse.data]
+ * @see CardBalanceListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [CardBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [CardBalanceListPageResponse.hasMore]
+ * @see CardBalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardBalanceListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardBalanceListPageAsync.kt
index 147b1a71b..ec7a82328 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardBalanceListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardBalanceListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [BalanceServiceAsync.list] */
+/** @see BalanceServiceAsync.list */
class CardBalanceListPageAsync
private constructor(
private val service: BalanceServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [CardBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [CardBalanceListPageResponse.data]
+ * @see CardBalanceListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [CardBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [CardBalanceListPageResponse.hasMore]
+ * @see CardBalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardFinancialTransactionListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardFinancialTransactionListPage.kt
index e658f076d..47dd72b2e 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardFinancialTransactionListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardFinancialTransactionListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [FinancialTransactionService.list] */
+/** @see FinancialTransactionService.list */
class CardFinancialTransactionListPage
private constructor(
private val service: FinancialTransactionService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [CardFinancialTransactionListPageResponse], but gracefully handles missing data.
*
- * @see [CardFinancialTransactionListPageResponse.data]
+ * @see CardFinancialTransactionListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [CardFinancialTransactionListPageResponse], but gracefully handles missing data.
*
- * @see [CardFinancialTransactionListPageResponse.hasMore]
+ * @see CardFinancialTransactionListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardFinancialTransactionListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardFinancialTransactionListPageAsync.kt
index 4651104ea..7ff7a34b9 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardFinancialTransactionListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardFinancialTransactionListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [FinancialTransactionServiceAsync.list] */
+/** @see FinancialTransactionServiceAsync.list */
class CardFinancialTransactionListPageAsync
private constructor(
private val service: FinancialTransactionServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [CardFinancialTransactionListPageResponse], but gracefully handles missing data.
*
- * @see [CardFinancialTransactionListPageResponse.data]
+ * @see CardFinancialTransactionListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [CardFinancialTransactionListPageResponse], but gracefully handles missing data.
*
- * @see [CardFinancialTransactionListPageResponse.hasMore]
+ * @see CardFinancialTransactionListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardListPage.kt
index c8918d234..879e70ec4 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [CardService.list] */
+/** @see CardService.list */
class CardListPage
private constructor(
private val service: CardService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [CardListPageResponse], but gracefully handles missing data.
*
- * @see [CardListPageResponse.data]
+ * @see CardListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [CardListPageResponse], but gracefully handles missing data.
*
- * @see [CardListPageResponse.hasMore]
+ * @see CardListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardListPageAsync.kt
index 0a405935d..05c62bdc8 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [CardServiceAsync.list] */
+/** @see CardServiceAsync.list */
class CardListPageAsync
private constructor(
private val service: CardServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [CardListPageResponse], but gracefully handles missing data.
*
- * @see [CardListPageResponse.data]
+ * @see CardListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [CardListPageResponse], but gracefully handles missing data.
*
- * @see [CardListPageResponse.hasMore]
+ * @see CardListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardProgramListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardProgramListPage.kt
index ab86c8ce8..9aaebc5d1 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardProgramListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardProgramListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [CardProgramService.list] */
+/** @see CardProgramService.list */
class CardProgramListPage
private constructor(
private val service: CardProgramService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [CardProgramListPageResponse], but gracefully handles missing data.
*
- * @see [CardProgramListPageResponse.data]
+ * @see CardProgramListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [CardProgramListPageResponse], but gracefully handles missing data.
*
- * @see [CardProgramListPageResponse.hasMore]
+ * @see CardProgramListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardProgramListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardProgramListPageAsync.kt
index 15066e6f4..72782c3db 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardProgramListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/CardProgramListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [CardProgramServiceAsync.list] */
+/** @see CardProgramServiceAsync.list */
class CardProgramListPageAsync
private constructor(
private val service: CardProgramServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [CardProgramListPageResponse], but gracefully handles missing data.
*
- * @see [CardProgramListPageResponse.data]
+ * @see CardProgramListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [CardProgramListPageResponse], but gracefully handles missing data.
*
- * @see [CardProgramListPageResponse.hasMore]
+ * @see CardProgramListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/Conditional3dsActionParameters.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/Conditional3dsActionParameters.kt
index 0648ba26d..813ceeda4 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/Conditional3dsActionParameters.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/Conditional3dsActionParameters.kt
@@ -1063,7 +1063,7 @@ private constructor(
/** An array of strings, to be used with `IS_ONE_OF` or `IS_NOT_ONE_OF` */
@JvmStatic
fun ofListOfStrings(listOfStrings: List) =
- Value(listOfStrings = listOfStrings)
+ Value(listOfStrings = listOfStrings.toImmutable())
}
/**
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DigitalCardArtListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DigitalCardArtListPage.kt
index da00ce3f3..31ba7b014 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DigitalCardArtListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DigitalCardArtListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [DigitalCardArtService.list] */
+/** @see DigitalCardArtService.list */
class DigitalCardArtListPage
private constructor(
private val service: DigitalCardArtService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [DigitalCardArtListPageResponse], but gracefully handles missing data.
*
- * @see [DigitalCardArtListPageResponse.data]
+ * @see DigitalCardArtListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [DigitalCardArtListPageResponse], but gracefully handles missing data.
*
- * @see [DigitalCardArtListPageResponse.hasMore]
+ * @see DigitalCardArtListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DigitalCardArtListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DigitalCardArtListPageAsync.kt
index 7886cba94..144943ce8 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DigitalCardArtListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DigitalCardArtListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [DigitalCardArtServiceAsync.list] */
+/** @see DigitalCardArtServiceAsync.list */
class DigitalCardArtListPageAsync
private constructor(
private val service: DigitalCardArtServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [DigitalCardArtListPageResponse], but gracefully handles missing data.
*
- * @see [DigitalCardArtListPageResponse.data]
+ * @see DigitalCardArtListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [DigitalCardArtListPageResponse], but gracefully handles missing data.
*
- * @see [DigitalCardArtListPageResponse.hasMore]
+ * @see DigitalCardArtListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListEvidencesPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListEvidencesPage.kt
index af63985d3..b9f41c088 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListEvidencesPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListEvidencesPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [DisputeService.listEvidences] */
+/** @see DisputeService.listEvidences */
class DisputeListEvidencesPage
private constructor(
private val service: DisputeService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [DisputeListEvidencesPageResponse], but gracefully handles missing data.
*
- * @see [DisputeListEvidencesPageResponse.data]
+ * @see DisputeListEvidencesPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [DisputeListEvidencesPageResponse], but gracefully handles missing data.
*
- * @see [DisputeListEvidencesPageResponse.hasMore]
+ * @see DisputeListEvidencesPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListEvidencesPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListEvidencesPageAsync.kt
index 75b7e3bb3..3bf998e14 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListEvidencesPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListEvidencesPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [DisputeServiceAsync.listEvidences] */
+/** @see DisputeServiceAsync.listEvidences */
class DisputeListEvidencesPageAsync
private constructor(
private val service: DisputeServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [DisputeListEvidencesPageResponse], but gracefully handles missing data.
*
- * @see [DisputeListEvidencesPageResponse.data]
+ * @see DisputeListEvidencesPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [DisputeListEvidencesPageResponse], but gracefully handles missing data.
*
- * @see [DisputeListEvidencesPageResponse.hasMore]
+ * @see DisputeListEvidencesPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListPage.kt
index 3c6a3cb36..f154b6867 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [DisputeService.list] */
+/** @see DisputeService.list */
class DisputeListPage
private constructor(
private val service: DisputeService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [DisputeListPageResponse], but gracefully handles missing data.
*
- * @see [DisputeListPageResponse.data]
+ * @see DisputeListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [DisputeListPageResponse], but gracefully handles missing data.
*
- * @see [DisputeListPageResponse.hasMore]
+ * @see DisputeListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListPageAsync.kt
index d3759f4be..37029d568 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/DisputeListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [DisputeServiceAsync.list] */
+/** @see DisputeServiceAsync.list */
class DisputeListPageAsync
private constructor(
private val service: DisputeServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [DisputeListPageResponse], but gracefully handles missing data.
*
- * @see [DisputeListPageResponse.data]
+ * @see DisputeListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [DisputeListPageResponse], but gracefully handles missing data.
*
- * @see [DisputeListPageResponse.hasMore]
+ * @see DisputeListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListAttemptsPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListAttemptsPage.kt
index ee5c5bf2a..ba384e7c5 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListAttemptsPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListAttemptsPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [EventService.listAttempts] */
+/** @see EventService.listAttempts */
class EventListAttemptsPage
private constructor(
private val service: EventService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [EventListAttemptsPageResponse], but gracefully handles missing data.
*
- * @see [EventListAttemptsPageResponse.data]
+ * @see EventListAttemptsPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [EventListAttemptsPageResponse], but gracefully handles missing data.
*
- * @see [EventListAttemptsPageResponse.hasMore]
+ * @see EventListAttemptsPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListAttemptsPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListAttemptsPageAsync.kt
index f6b9e19a7..d21904963 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListAttemptsPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListAttemptsPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [EventServiceAsync.listAttempts] */
+/** @see EventServiceAsync.listAttempts */
class EventListAttemptsPageAsync
private constructor(
private val service: EventServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [EventListAttemptsPageResponse], but gracefully handles missing data.
*
- * @see [EventListAttemptsPageResponse.data]
+ * @see EventListAttemptsPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [EventListAttemptsPageResponse], but gracefully handles missing data.
*
- * @see [EventListAttemptsPageResponse.hasMore]
+ * @see EventListAttemptsPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListPage.kt
index 5bd1e4d81..43e8ccd48 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [EventService.list] */
+/** @see EventService.list */
class EventListPage
private constructor(
private val service: EventService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [EventListPageResponse], but gracefully handles missing data.
*
- * @see [EventListPageResponse.data]
+ * @see EventListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [EventListPageResponse], but gracefully handles missing data.
*
- * @see [EventListPageResponse.hasMore]
+ * @see EventListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListPageAsync.kt
index a843f0765..a9f6fe181 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [EventServiceAsync.list] */
+/** @see EventServiceAsync.list */
class EventListPageAsync
private constructor(
private val service: EventServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [EventListPageResponse], but gracefully handles missing data.
*
- * @see [EventListPageResponse.data]
+ * @see EventListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [EventListPageResponse], but gracefully handles missing data.
*
- * @see [EventListPageResponse.hasMore]
+ * @see EventListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListAttemptsPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListAttemptsPage.kt
index 630e7ef68..a70d6ddfb 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListAttemptsPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListAttemptsPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [SubscriptionService.listAttempts] */
+/** @see SubscriptionService.listAttempts */
class EventSubscriptionListAttemptsPage
private constructor(
private val service: SubscriptionService,
@@ -22,7 +22,7 @@ private constructor(
* Delegates to [EventSubscriptionListAttemptsPageResponse], but gracefully handles missing
* data.
*
- * @see [EventSubscriptionListAttemptsPageResponse.data]
+ * @see EventSubscriptionListAttemptsPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -31,7 +31,7 @@ private constructor(
* Delegates to [EventSubscriptionListAttemptsPageResponse], but gracefully handles missing
* data.
*
- * @see [EventSubscriptionListAttemptsPageResponse.hasMore]
+ * @see EventSubscriptionListAttemptsPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListAttemptsPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListAttemptsPageAsync.kt
index 7aec988b0..e5ebdb18b 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListAttemptsPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListAttemptsPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [SubscriptionServiceAsync.listAttempts] */
+/** @see SubscriptionServiceAsync.listAttempts */
class EventSubscriptionListAttemptsPageAsync
private constructor(
private val service: SubscriptionServiceAsync,
@@ -25,7 +25,7 @@ private constructor(
* Delegates to [EventSubscriptionListAttemptsPageResponse], but gracefully handles missing
* data.
*
- * @see [EventSubscriptionListAttemptsPageResponse.data]
+ * @see EventSubscriptionListAttemptsPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -34,7 +34,7 @@ private constructor(
* Delegates to [EventSubscriptionListAttemptsPageResponse], but gracefully handles missing
* data.
*
- * @see [EventSubscriptionListAttemptsPageResponse.hasMore]
+ * @see EventSubscriptionListAttemptsPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListPage.kt
index 396383787..7528dd488 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [SubscriptionService.list] */
+/** @see SubscriptionService.list */
class EventSubscriptionListPage
private constructor(
private val service: SubscriptionService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [EventSubscriptionListPageResponse], but gracefully handles missing data.
*
- * @see [EventSubscriptionListPageResponse.data]
+ * @see EventSubscriptionListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [EventSubscriptionListPageResponse], but gracefully handles missing data.
*
- * @see [EventSubscriptionListPageResponse.hasMore]
+ * @see EventSubscriptionListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListPageAsync.kt
index 3c75d4fa9..fac238f31 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/EventSubscriptionListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [SubscriptionServiceAsync.list] */
+/** @see SubscriptionServiceAsync.list */
class EventSubscriptionListPageAsync
private constructor(
private val service: SubscriptionServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [EventSubscriptionListPageResponse], but gracefully handles missing data.
*
- * @see [EventSubscriptionListPageResponse.data]
+ * @see EventSubscriptionListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [EventSubscriptionListPageResponse], but gracefully handles missing data.
*
- * @see [EventSubscriptionListPageResponse.hasMore]
+ * @see EventSubscriptionListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountListPage.kt
index 95d16d1bb..2d2338db7 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [ExternalBankAccountService.list] */
+/** @see ExternalBankAccountService.list */
class ExternalBankAccountListPage
private constructor(
private val service: ExternalBankAccountService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [ExternalBankAccountListPageResponse], but gracefully handles missing data.
*
- * @see [ExternalBankAccountListPageResponse.data]
+ * @see ExternalBankAccountListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [ExternalBankAccountListPageResponse], but gracefully handles missing data.
*
- * @see [ExternalBankAccountListPageResponse.hasMore]
+ * @see ExternalBankAccountListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountListPageAsync.kt
index 17a52c2b1..53981e29c 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalBankAccountListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [ExternalBankAccountServiceAsync.list] */
+/** @see ExternalBankAccountServiceAsync.list */
class ExternalBankAccountListPageAsync
private constructor(
private val service: ExternalBankAccountServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [ExternalBankAccountListPageResponse], but gracefully handles missing data.
*
- * @see [ExternalBankAccountListPageResponse.data]
+ * @see ExternalBankAccountListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [ExternalBankAccountListPageResponse], but gracefully handles missing data.
*
- * @see [ExternalBankAccountListPageResponse.hasMore]
+ * @see ExternalBankAccountListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalPaymentListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalPaymentListPage.kt
index 53bcc6d43..94f66c327 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalPaymentListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalPaymentListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [ExternalPaymentService.list] */
+/** @see ExternalPaymentService.list */
class ExternalPaymentListPage
private constructor(
private val service: ExternalPaymentService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [ExternalPaymentListPageResponse], but gracefully handles missing data.
*
- * @see [ExternalPaymentListPageResponse.data]
+ * @see ExternalPaymentListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [ExternalPaymentListPageResponse], but gracefully handles missing data.
*
- * @see [ExternalPaymentListPageResponse.hasMore]
+ * @see ExternalPaymentListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalPaymentListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalPaymentListPageAsync.kt
index 29885bc30..a96444f38 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalPaymentListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ExternalPaymentListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [ExternalPaymentServiceAsync.list] */
+/** @see ExternalPaymentServiceAsync.list */
class ExternalPaymentListPageAsync
private constructor(
private val service: ExternalPaymentServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [ExternalPaymentListPageResponse], but gracefully handles missing data.
*
- * @see [ExternalPaymentListPageResponse.data]
+ * @see ExternalPaymentListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [ExternalPaymentListPageResponse], but gracefully handles missing data.
*
- * @see [ExternalPaymentListPageResponse.hasMore]
+ * @see ExternalPaymentListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountBalanceListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountBalanceListPage.kt
index 7169f5f4b..997623b73 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountBalanceListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountBalanceListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [BalanceService.list] */
+/** @see BalanceService.list */
class FinancialAccountBalanceListPage
private constructor(
private val service: BalanceService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [FinancialAccountBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountBalanceListPageResponse.data]
+ * @see FinancialAccountBalanceListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [FinancialAccountBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountBalanceListPageResponse.hasMore]
+ * @see FinancialAccountBalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountBalanceListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountBalanceListPageAsync.kt
index 4c61ae23c..cf61ebff7 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountBalanceListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountBalanceListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [BalanceServiceAsync.list] */
+/** @see BalanceServiceAsync.list */
class FinancialAccountBalanceListPageAsync
private constructor(
private val service: BalanceServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [FinancialAccountBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountBalanceListPageResponse.data]
+ * @see FinancialAccountBalanceListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [FinancialAccountBalanceListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountBalanceListPageResponse.hasMore]
+ * @see FinancialAccountBalanceListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountListPage.kt
index ad4f636cc..39196b6c6 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [FinancialAccountService.list] */
+/** @see FinancialAccountService.list */
class FinancialAccountListPage
private constructor(
private val service: FinancialAccountService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [FinancialAccountListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountListPageResponse.data]
+ * @see FinancialAccountListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [FinancialAccountListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountListPageResponse.hasMore]
+ * @see FinancialAccountListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountListPageAsync.kt
index 2e0eac8c7..d7e521621 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [FinancialAccountServiceAsync.list] */
+/** @see FinancialAccountServiceAsync.list */
class FinancialAccountListPageAsync
private constructor(
private val service: FinancialAccountServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [FinancialAccountListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountListPageResponse.data]
+ * @see FinancialAccountListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [FinancialAccountListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountListPageResponse.hasMore]
+ * @see FinancialAccountListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountLoanTapeListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountLoanTapeListPage.kt
index 290eaba8a..09d5e7c38 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountLoanTapeListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountLoanTapeListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [LoanTapeService.list] */
+/** @see LoanTapeService.list */
class FinancialAccountLoanTapeListPage
private constructor(
private val service: LoanTapeService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [FinancialAccountLoanTapeListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountLoanTapeListPageResponse.data]
+ * @see FinancialAccountLoanTapeListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [FinancialAccountLoanTapeListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountLoanTapeListPageResponse.hasMore]
+ * @see FinancialAccountLoanTapeListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountLoanTapeListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountLoanTapeListPageAsync.kt
index d5a91f81c..08596ee41 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountLoanTapeListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountLoanTapeListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [LoanTapeServiceAsync.list] */
+/** @see LoanTapeServiceAsync.list */
class FinancialAccountLoanTapeListPageAsync
private constructor(
private val service: LoanTapeServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [FinancialAccountLoanTapeListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountLoanTapeListPageResponse.data]
+ * @see FinancialAccountLoanTapeListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [FinancialAccountLoanTapeListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialAccountLoanTapeListPageResponse.hasMore]
+ * @see FinancialAccountLoanTapeListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementLineItemListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementLineItemListPage.kt
index c09a7e9e1..58a04c6e5 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementLineItemListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementLineItemListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [LineItemService.list] */
+/** @see LineItemService.list */
class FinancialAccountStatementLineItemListPage
private constructor(
private val service: LineItemService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [StatementLineItems], but gracefully handles missing data.
*
- * @see [StatementLineItems.data]
+ * @see StatementLineItems.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [StatementLineItems], but gracefully handles missing data.
*
- * @see [StatementLineItems.hasMore]
+ * @see StatementLineItems.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementLineItemListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementLineItemListPageAsync.kt
index d0446a37f..5830c692f 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementLineItemListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementLineItemListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [LineItemServiceAsync.list] */
+/** @see LineItemServiceAsync.list */
class FinancialAccountStatementLineItemListPageAsync
private constructor(
private val service: LineItemServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [StatementLineItems], but gracefully handles missing data.
*
- * @see [StatementLineItems.data]
+ * @see StatementLineItems.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [StatementLineItems], but gracefully handles missing data.
*
- * @see [StatementLineItems.hasMore]
+ * @see StatementLineItems.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementListPage.kt
index ee00acd9d..cc52f633b 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [StatementService.list] */
+/** @see StatementService.list */
class FinancialAccountStatementListPage
private constructor(
private val service: StatementService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [Statements], but gracefully handles missing data.
*
- * @see [Statements.data]
+ * @see Statements.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [Statements], but gracefully handles missing data.
*
- * @see [Statements.hasMore]
+ * @see Statements.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementListPageAsync.kt
index 346ac052f..d80845dc6 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountStatementListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [StatementServiceAsync.list] */
+/** @see StatementServiceAsync.list */
class FinancialAccountStatementListPageAsync
private constructor(
private val service: StatementServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [Statements], but gracefully handles missing data.
*
- * @see [Statements.data]
+ * @see Statements.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [Statements], but gracefully handles missing data.
*
- * @see [Statements.hasMore]
+ * @see Statements.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialTransactionListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialTransactionListPage.kt
index 27ddfe68a..61ec98e5a 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialTransactionListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialTransactionListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [FinancialTransactionService.list] */
+/** @see FinancialTransactionService.list */
class FinancialTransactionListPage
private constructor(
private val service: FinancialTransactionService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [FinancialTransactionListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialTransactionListPageResponse.data]
+ * @see FinancialTransactionListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [FinancialTransactionListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialTransactionListPageResponse.hasMore]
+ * @see FinancialTransactionListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialTransactionListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialTransactionListPageAsync.kt
index d0a48afaf..f3c36e3ec 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialTransactionListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialTransactionListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [FinancialTransactionServiceAsync.list] */
+/** @see FinancialTransactionServiceAsync.list */
class FinancialTransactionListPageAsync
private constructor(
private val service: FinancialTransactionServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [FinancialTransactionListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialTransactionListPageResponse.data]
+ * @see FinancialTransactionListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [FinancialTransactionListPageResponse], but gracefully handles missing data.
*
- * @see [FinancialTransactionListPageResponse.hasMore]
+ * @see FinancialTransactionListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FundingEventListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FundingEventListPage.kt
index ef0c46438..81a042601 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FundingEventListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FundingEventListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [FundingEventService.list] */
+/** @see FundingEventService.list */
class FundingEventListPage
private constructor(
private val service: FundingEventService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [FundingEventListPageResponse], but gracefully handles missing data.
*
- * @see [FundingEventListPageResponse.data]
+ * @see FundingEventListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [FundingEventListPageResponse], but gracefully handles missing data.
*
- * @see [FundingEventListPageResponse.hasMore]
+ * @see FundingEventListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FundingEventListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FundingEventListPageAsync.kt
index 7ba10cdbb..2083f6d5d 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FundingEventListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FundingEventListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [FundingEventServiceAsync.list] */
+/** @see FundingEventServiceAsync.list */
class FundingEventListPageAsync
private constructor(
private val service: FundingEventServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [FundingEventListPageResponse], but gracefully handles missing data.
*
- * @see [FundingEventListPageResponse.data]
+ * @see FundingEventListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [FundingEventListPageResponse], but gracefully handles missing data.
*
- * @see [FundingEventListPageResponse.hasMore]
+ * @see FundingEventListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ManagementOperationListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ManagementOperationListPage.kt
index 96f934329..f9c1c0db2 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ManagementOperationListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ManagementOperationListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [ManagementOperationService.list] */
+/** @see ManagementOperationService.list */
class ManagementOperationListPage
private constructor(
private val service: ManagementOperationService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [ManagementOperationListPageResponse], but gracefully handles missing data.
*
- * @see [ManagementOperationListPageResponse.data]
+ * @see ManagementOperationListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [ManagementOperationListPageResponse], but gracefully handles missing data.
*
- * @see [ManagementOperationListPageResponse.hasMore]
+ * @see ManagementOperationListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ManagementOperationListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ManagementOperationListPageAsync.kt
index c66efb8c6..0839174d2 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ManagementOperationListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ManagementOperationListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [ManagementOperationServiceAsync.list] */
+/** @see ManagementOperationServiceAsync.list */
class ManagementOperationListPageAsync
private constructor(
private val service: ManagementOperationServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [ManagementOperationListPageResponse], but gracefully handles missing data.
*
- * @see [ManagementOperationListPageResponse.data]
+ * @see ManagementOperationListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [ManagementOperationListPageResponse], but gracefully handles missing data.
*
- * @see [ManagementOperationListPageResponse.hasMore]
+ * @see ManagementOperationListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/NetworkProgramListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/NetworkProgramListPage.kt
index b0ca240d2..3541ef600 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/NetworkProgramListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/NetworkProgramListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [NetworkProgramService.list] */
+/** @see NetworkProgramService.list */
class NetworkProgramListPage
private constructor(
private val service: NetworkProgramService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [NetworkProgramListPageResponse], but gracefully handles missing data.
*
- * @see [NetworkProgramListPageResponse.data]
+ * @see NetworkProgramListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [NetworkProgramListPageResponse], but gracefully handles missing data.
*
- * @see [NetworkProgramListPageResponse.hasMore]
+ * @see NetworkProgramListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/NetworkProgramListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/NetworkProgramListPageAsync.kt
index fce61ac76..d8f2e8ec3 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/NetworkProgramListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/NetworkProgramListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [NetworkProgramServiceAsync.list] */
+/** @see NetworkProgramServiceAsync.list */
class NetworkProgramListPageAsync
private constructor(
private val service: NetworkProgramServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [NetworkProgramListPageResponse], but gracefully handles missing data.
*
- * @see [NetworkProgramListPageResponse.data]
+ * @see NetworkProgramListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [NetworkProgramListPageResponse], but gracefully handles missing data.
*
- * @see [NetworkProgramListPageResponse.hasMore]
+ * @see NetworkProgramListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/PaymentListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/PaymentListPage.kt
index e0f92f119..e5cff7a13 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/PaymentListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/PaymentListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [PaymentService.list] */
+/** @see PaymentService.list */
class PaymentListPage
private constructor(
private val service: PaymentService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [PaymentListPageResponse], but gracefully handles missing data.
*
- * @see [PaymentListPageResponse.data]
+ * @see PaymentListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [PaymentListPageResponse], but gracefully handles missing data.
*
- * @see [PaymentListPageResponse.hasMore]
+ * @see PaymentListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/PaymentListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/PaymentListPageAsync.kt
index 29d1ab061..9009aded2 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/PaymentListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/PaymentListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [PaymentServiceAsync.list] */
+/** @see PaymentServiceAsync.list */
class PaymentListPageAsync
private constructor(
private val service: PaymentServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [PaymentListPageResponse], but gracefully handles missing data.
*
- * @see [PaymentListPageResponse.data]
+ * @see PaymentListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [PaymentListPageResponse], but gracefully handles missing data.
*
- * @see [PaymentListPageResponse.hasMore]
+ * @see PaymentListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementListDetailsPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementListDetailsPage.kt
index 8266a796c..aea3752b2 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementListDetailsPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementListDetailsPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [SettlementService.listDetails] */
+/** @see SettlementService.listDetails */
class ReportSettlementListDetailsPage
private constructor(
private val service: SettlementService,
@@ -21,7 +21,7 @@ private constructor(
/**
* Delegates to [ReportSettlementListDetailsPageResponse], but gracefully handles missing data.
*
- * @see [ReportSettlementListDetailsPageResponse.data]
+ * @see ReportSettlementListDetailsPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -29,7 +29,7 @@ private constructor(
/**
* Delegates to [ReportSettlementListDetailsPageResponse], but gracefully handles missing data.
*
- * @see [ReportSettlementListDetailsPageResponse.hasMore]
+ * @see ReportSettlementListDetailsPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementListDetailsPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementListDetailsPageAsync.kt
index 590a13898..517916ea5 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementListDetailsPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementListDetailsPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [SettlementServiceAsync.listDetails] */
+/** @see SettlementServiceAsync.listDetails */
class ReportSettlementListDetailsPageAsync
private constructor(
private val service: SettlementServiceAsync,
@@ -24,7 +24,7 @@ private constructor(
/**
* Delegates to [ReportSettlementListDetailsPageResponse], but gracefully handles missing data.
*
- * @see [ReportSettlementListDetailsPageResponse.data]
+ * @see ReportSettlementListDetailsPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -32,7 +32,7 @@ private constructor(
/**
* Delegates to [ReportSettlementListDetailsPageResponse], but gracefully handles missing data.
*
- * @see [ReportSettlementListDetailsPageResponse.hasMore]
+ * @see ReportSettlementListDetailsPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementNetworkTotalListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementNetworkTotalListPage.kt
index b5d82dc95..eef09bad5 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementNetworkTotalListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementNetworkTotalListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [NetworkTotalService.list] */
+/** @see NetworkTotalService.list */
class ReportSettlementNetworkTotalListPage
private constructor(
private val service: NetworkTotalService,
@@ -22,7 +22,7 @@ private constructor(
* Delegates to [ReportSettlementNetworkTotalListPageResponse], but gracefully handles missing
* data.
*
- * @see [ReportSettlementNetworkTotalListPageResponse.data]
+ * @see ReportSettlementNetworkTotalListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -31,7 +31,7 @@ private constructor(
* Delegates to [ReportSettlementNetworkTotalListPageResponse], but gracefully handles missing
* data.
*
- * @see [ReportSettlementNetworkTotalListPageResponse.hasMore]
+ * @see ReportSettlementNetworkTotalListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementNetworkTotalListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementNetworkTotalListPageAsync.kt
index 2748e8305..aa4b2cdae 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementNetworkTotalListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/ReportSettlementNetworkTotalListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [NetworkTotalServiceAsync.list] */
+/** @see NetworkTotalServiceAsync.list */
class ReportSettlementNetworkTotalListPageAsync
private constructor(
private val service: NetworkTotalServiceAsync,
@@ -25,7 +25,7 @@ private constructor(
* Delegates to [ReportSettlementNetworkTotalListPageResponse], but gracefully handles missing
* data.
*
- * @see [ReportSettlementNetworkTotalListPageResponse.data]
+ * @see ReportSettlementNetworkTotalListPageResponse.data
*/
fun data(): List =
response._data().getOptional("data").getOrNull() ?: emptyList()
@@ -34,7 +34,7 @@ private constructor(
* Delegates to [ReportSettlementNetworkTotalListPageResponse], but gracefully handles missing
* data.
*
- * @see [ReportSettlementNetworkTotalListPageResponse.hasMore]
+ * @see ReportSettlementNetworkTotalListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/TokenizationListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/TokenizationListPage.kt
index 4bca6e0f9..df046632a 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/TokenizationListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/TokenizationListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [TokenizationService.list] */
+/** @see TokenizationService.list */
class TokenizationListPage
private constructor(
private val service: TokenizationService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [TokenizationListPageResponse], but gracefully handles missing data.
*
- * @see [TokenizationListPageResponse.data]
+ * @see TokenizationListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [TokenizationListPageResponse], but gracefully handles missing data.
*
- * @see [TokenizationListPageResponse.hasMore]
+ * @see TokenizationListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/TokenizationListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/TokenizationListPageAsync.kt
index a7a5ec3fa..c1c79f484 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/TokenizationListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/TokenizationListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [TokenizationServiceAsync.list] */
+/** @see TokenizationServiceAsync.list */
class TokenizationListPageAsync
private constructor(
private val service: TokenizationServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [TokenizationListPageResponse], but gracefully handles missing data.
*
- * @see [TokenizationListPageResponse.data]
+ * @see TokenizationListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [TokenizationListPageResponse], but gracefully handles missing data.
*
- * @see [TokenizationListPageResponse.hasMore]
+ * @see TokenizationListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/TransactionListPage.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/TransactionListPage.kt
index e93c414eb..49041dc06 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/TransactionListPage.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/TransactionListPage.kt
@@ -10,7 +10,7 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
-/** @see [TransactionService.list] */
+/** @see TransactionService.list */
class TransactionListPage
private constructor(
private val service: TransactionService,
@@ -21,14 +21,14 @@ private constructor(
/**
* Delegates to [TransactionListPageResponse], but gracefully handles missing data.
*
- * @see [TransactionListPageResponse.data]
+ * @see TransactionListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [TransactionListPageResponse], but gracefully handles missing data.
*
- * @see [TransactionListPageResponse.hasMore]
+ * @see TransactionListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/TransactionListPageAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/TransactionListPageAsync.kt
index f719654e9..ebdc80a8d 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/TransactionListPageAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/TransactionListPageAsync.kt
@@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executor
import kotlin.jvm.optionals.getOrNull
-/** @see [TransactionServiceAsync.list] */
+/** @see TransactionServiceAsync.list */
class TransactionListPageAsync
private constructor(
private val service: TransactionServiceAsync,
@@ -24,14 +24,14 @@ private constructor(
/**
* Delegates to [TransactionListPageResponse], but gracefully handles missing data.
*
- * @see [TransactionListPageResponse.data]
+ * @see TransactionListPageResponse.data
*/
fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList()
/**
* Delegates to [TransactionListPageResponse], but gracefully handles missing data.
*
- * @see [TransactionListPageResponse.hasMore]
+ * @see TransactionListPageResponse.hasMore
*/
fun hasMore(): Optional = response._hasMore().getOptional("has_more")
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AccountHolderServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AccountHolderServiceAsync.kt
index 50f0c83fb..6fa120acd 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AccountHolderServiceAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AccountHolderServiceAsync.kt
@@ -50,7 +50,7 @@ interface AccountHolderServiceAsync {
fun create(params: AccountHolderCreateParams): CompletableFuture =
create(params, RequestOptions.none())
- /** @see [create] */
+ /** @see create */
fun create(
params: AccountHolderCreateParams,
requestOptions: RequestOptions = RequestOptions.none(),
@@ -60,7 +60,7 @@ interface AccountHolderServiceAsync {
fun retrieve(accountHolderToken: String): CompletableFuture =
retrieve(accountHolderToken, AccountHolderRetrieveParams.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountHolderToken: String,
params: AccountHolderRetrieveParams = AccountHolderRetrieveParams.none(),
@@ -68,24 +68,24 @@ interface AccountHolderServiceAsync {
): CompletableFuture =
retrieve(params.toBuilder().accountHolderToken(accountHolderToken).build(), requestOptions)
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountHolderToken: String,
params: AccountHolderRetrieveParams = AccountHolderRetrieveParams.none(),
): CompletableFuture =
retrieve(accountHolderToken, params, RequestOptions.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
params: AccountHolderRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(params: AccountHolderRetrieveParams): CompletableFuture =
retrieve(params, RequestOptions.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountHolderToken: String,
requestOptions: RequestOptions,
@@ -109,7 +109,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture =
update(accountHolderToken, params, RequestOptions.none())
- /** @see [update] */
+ /** @see update */
fun update(
accountHolderToken: String,
params: AccountHolderUpdateParams,
@@ -117,11 +117,11 @@ interface AccountHolderServiceAsync {
): CompletableFuture =
update(params.toBuilder().accountHolderToken(accountHolderToken).build(), requestOptions)
- /** @see [update] */
+ /** @see update */
fun update(params: AccountHolderUpdateParams): CompletableFuture =
update(params, RequestOptions.none())
- /** @see [update] */
+ /** @see update */
fun update(
params: AccountHolderUpdateParams,
requestOptions: RequestOptions = RequestOptions.none(),
@@ -132,18 +132,18 @@ interface AccountHolderServiceAsync {
*/
fun list(): CompletableFuture = list(AccountHolderListParams.none())
- /** @see [list] */
+ /** @see list */
fun list(
params: AccountHolderListParams = AccountHolderListParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [list] */
+ /** @see list */
fun list(
params: AccountHolderListParams = AccountHolderListParams.none()
): CompletableFuture = list(params, RequestOptions.none())
- /** @see [list] */
+ /** @see list */
fun list(requestOptions: RequestOptions): CompletableFuture =
list(AccountHolderListParams.none(), requestOptions)
@@ -167,7 +167,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture =
listDocuments(accountHolderToken, AccountHolderListDocumentsParams.none())
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
accountHolderToken: String,
params: AccountHolderListDocumentsParams = AccountHolderListDocumentsParams.none(),
@@ -178,26 +178,26 @@ interface AccountHolderServiceAsync {
requestOptions,
)
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
accountHolderToken: String,
params: AccountHolderListDocumentsParams = AccountHolderListDocumentsParams.none(),
): CompletableFuture =
listDocuments(accountHolderToken, params, RequestOptions.none())
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
params: AccountHolderListDocumentsParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
params: AccountHolderListDocumentsParams
): CompletableFuture =
listDocuments(params, RequestOptions.none())
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
accountHolderToken: String,
requestOptions: RequestOptions,
@@ -224,7 +224,7 @@ interface AccountHolderServiceAsync {
params: AccountHolderRetrieveDocumentParams,
): CompletableFuture = retrieveDocument(documentToken, params, RequestOptions.none())
- /** @see [retrieveDocument] */
+ /** @see retrieveDocument */
fun retrieveDocument(
documentToken: String,
params: AccountHolderRetrieveDocumentParams,
@@ -232,11 +232,11 @@ interface AccountHolderServiceAsync {
): CompletableFuture =
retrieveDocument(params.toBuilder().documentToken(documentToken).build(), requestOptions)
- /** @see [retrieveDocument] */
+ /** @see retrieveDocument */
fun retrieveDocument(params: AccountHolderRetrieveDocumentParams): CompletableFuture =
retrieveDocument(params, RequestOptions.none())
- /** @see [retrieveDocument] */
+ /** @see retrieveDocument */
fun retrieveDocument(
params: AccountHolderRetrieveDocumentParams,
requestOptions: RequestOptions = RequestOptions.none(),
@@ -247,7 +247,7 @@ interface AccountHolderServiceAsync {
params: AccountHolderSimulateEnrollmentDocumentReviewParams
): CompletableFuture = simulateEnrollmentDocumentReview(params, RequestOptions.none())
- /** @see [simulateEnrollmentDocumentReview] */
+ /** @see simulateEnrollmentDocumentReview */
fun simulateEnrollmentDocumentReview(
params: AccountHolderSimulateEnrollmentDocumentReviewParams,
requestOptions: RequestOptions = RequestOptions.none(),
@@ -261,21 +261,21 @@ interface AccountHolderServiceAsync {
CompletableFuture =
simulateEnrollmentReview(AccountHolderSimulateEnrollmentReviewParams.none())
- /** @see [simulateEnrollmentReview] */
+ /** @see simulateEnrollmentReview */
fun simulateEnrollmentReview(
params: AccountHolderSimulateEnrollmentReviewParams =
AccountHolderSimulateEnrollmentReviewParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [simulateEnrollmentReview] */
+ /** @see simulateEnrollmentReview */
fun simulateEnrollmentReview(
params: AccountHolderSimulateEnrollmentReviewParams =
AccountHolderSimulateEnrollmentReviewParams.none()
): CompletableFuture =
simulateEnrollmentReview(params, RequestOptions.none())
- /** @see [simulateEnrollmentReview] */
+ /** @see simulateEnrollmentReview */
fun simulateEnrollmentReview(
requestOptions: RequestOptions
): CompletableFuture =
@@ -305,7 +305,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture =
uploadDocument(accountHolderToken, params, RequestOptions.none())
- /** @see [uploadDocument] */
+ /** @see uploadDocument */
fun uploadDocument(
accountHolderToken: String,
params: AccountHolderUploadDocumentParams,
@@ -316,11 +316,11 @@ interface AccountHolderServiceAsync {
requestOptions,
)
- /** @see [uploadDocument] */
+ /** @see uploadDocument */
fun uploadDocument(params: AccountHolderUploadDocumentParams): CompletableFuture =
uploadDocument(params, RequestOptions.none())
- /** @see [uploadDocument] */
+ /** @see uploadDocument */
fun uploadDocument(
params: AccountHolderUploadDocumentParams,
requestOptions: RequestOptions = RequestOptions.none(),
@@ -350,7 +350,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture> =
create(params, RequestOptions.none())
- /** @see [create] */
+ /** @see create */
fun create(
params: AccountHolderCreateParams,
requestOptions: RequestOptions = RequestOptions.none(),
@@ -365,7 +365,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture> =
retrieve(accountHolderToken, AccountHolderRetrieveParams.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountHolderToken: String,
params: AccountHolderRetrieveParams = AccountHolderRetrieveParams.none(),
@@ -376,26 +376,26 @@ interface AccountHolderServiceAsync {
requestOptions,
)
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountHolderToken: String,
params: AccountHolderRetrieveParams = AccountHolderRetrieveParams.none(),
): CompletableFuture> =
retrieve(accountHolderToken, params, RequestOptions.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
params: AccountHolderRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
params: AccountHolderRetrieveParams
): CompletableFuture> =
retrieve(params, RequestOptions.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountHolderToken: String,
requestOptions: RequestOptions,
@@ -412,7 +412,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture> =
update(accountHolderToken, params, RequestOptions.none())
- /** @see [update] */
+ /** @see update */
fun update(
accountHolderToken: String,
params: AccountHolderUpdateParams,
@@ -423,13 +423,13 @@ interface AccountHolderServiceAsync {
requestOptions,
)
- /** @see [update] */
+ /** @see update */
fun update(
params: AccountHolderUpdateParams
): CompletableFuture> =
update(params, RequestOptions.none())
- /** @see [update] */
+ /** @see update */
fun update(
params: AccountHolderUpdateParams,
requestOptions: RequestOptions = RequestOptions.none(),
@@ -442,19 +442,19 @@ interface AccountHolderServiceAsync {
fun list(): CompletableFuture> =
list(AccountHolderListParams.none())
- /** @see [list] */
+ /** @see list */
fun list(
params: AccountHolderListParams = AccountHolderListParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [list] */
+ /** @see list */
fun list(
params: AccountHolderListParams = AccountHolderListParams.none()
): CompletableFuture> =
list(params, RequestOptions.none())
- /** @see [list] */
+ /** @see list */
fun list(
requestOptions: RequestOptions
): CompletableFuture> =
@@ -470,7 +470,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture> =
listDocuments(accountHolderToken, AccountHolderListDocumentsParams.none())
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
accountHolderToken: String,
params: AccountHolderListDocumentsParams = AccountHolderListDocumentsParams.none(),
@@ -481,26 +481,26 @@ interface AccountHolderServiceAsync {
requestOptions,
)
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
accountHolderToken: String,
params: AccountHolderListDocumentsParams = AccountHolderListDocumentsParams.none(),
): CompletableFuture> =
listDocuments(accountHolderToken, params, RequestOptions.none())
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
params: AccountHolderListDocumentsParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
params: AccountHolderListDocumentsParams
): CompletableFuture> =
listDocuments(params, RequestOptions.none())
- /** @see [listDocuments] */
+ /** @see listDocuments */
fun listDocuments(
accountHolderToken: String,
requestOptions: RequestOptions,
@@ -522,7 +522,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture> =
retrieveDocument(documentToken, params, RequestOptions.none())
- /** @see [retrieveDocument] */
+ /** @see retrieveDocument */
fun retrieveDocument(
documentToken: String,
params: AccountHolderRetrieveDocumentParams,
@@ -533,13 +533,13 @@ interface AccountHolderServiceAsync {
requestOptions,
)
- /** @see [retrieveDocument] */
+ /** @see retrieveDocument */
fun retrieveDocument(
params: AccountHolderRetrieveDocumentParams
): CompletableFuture> =
retrieveDocument(params, RequestOptions.none())
- /** @see [retrieveDocument] */
+ /** @see retrieveDocument */
fun retrieveDocument(
params: AccountHolderRetrieveDocumentParams,
requestOptions: RequestOptions = RequestOptions.none(),
@@ -555,7 +555,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture> =
simulateEnrollmentDocumentReview(params, RequestOptions.none())
- /** @see [simulateEnrollmentDocumentReview] */
+ /** @see simulateEnrollmentDocumentReview */
fun simulateEnrollmentDocumentReview(
params: AccountHolderSimulateEnrollmentDocumentReviewParams,
requestOptions: RequestOptions = RequestOptions.none(),
@@ -569,21 +569,21 @@ interface AccountHolderServiceAsync {
CompletableFuture> =
simulateEnrollmentReview(AccountHolderSimulateEnrollmentReviewParams.none())
- /** @see [simulateEnrollmentReview] */
+ /** @see simulateEnrollmentReview */
fun simulateEnrollmentReview(
params: AccountHolderSimulateEnrollmentReviewParams =
AccountHolderSimulateEnrollmentReviewParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [simulateEnrollmentReview] */
+ /** @see simulateEnrollmentReview */
fun simulateEnrollmentReview(
params: AccountHolderSimulateEnrollmentReviewParams =
AccountHolderSimulateEnrollmentReviewParams.none()
): CompletableFuture> =
simulateEnrollmentReview(params, RequestOptions.none())
- /** @see [simulateEnrollmentReview] */
+ /** @see simulateEnrollmentReview */
fun simulateEnrollmentReview(
requestOptions: RequestOptions
): CompletableFuture> =
@@ -603,7 +603,7 @@ interface AccountHolderServiceAsync {
): CompletableFuture> =
uploadDocument(accountHolderToken, params, RequestOptions.none())
- /** @see [uploadDocument] */
+ /** @see uploadDocument */
fun uploadDocument(
accountHolderToken: String,
params: AccountHolderUploadDocumentParams,
@@ -614,13 +614,13 @@ interface AccountHolderServiceAsync {
requestOptions,
)
- /** @see [uploadDocument] */
+ /** @see uploadDocument */
fun uploadDocument(
params: AccountHolderUploadDocumentParams
): CompletableFuture> =
uploadDocument(params, RequestOptions.none())
- /** @see [uploadDocument] */
+ /** @see uploadDocument */
fun uploadDocument(
params: AccountHolderUploadDocumentParams,
requestOptions: RequestOptions = RequestOptions.none(),
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AccountServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AccountServiceAsync.kt
index 711cd6d78..46db932ca 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AccountServiceAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AccountServiceAsync.kt
@@ -33,7 +33,7 @@ interface AccountServiceAsync {
fun retrieve(accountToken: String): CompletableFuture =
retrieve(accountToken, AccountRetrieveParams.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountToken: String,
params: AccountRetrieveParams = AccountRetrieveParams.none(),
@@ -41,23 +41,23 @@ interface AccountServiceAsync {
): CompletableFuture =
retrieve(params.toBuilder().accountToken(accountToken).build(), requestOptions)
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountToken: String,
params: AccountRetrieveParams = AccountRetrieveParams.none(),
): CompletableFuture = retrieve(accountToken, params, RequestOptions.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
params: AccountRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(params: AccountRetrieveParams): CompletableFuture =
retrieve(params, RequestOptions.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(accountToken: String, requestOptions: RequestOptions): CompletableFuture =
retrieve(accountToken, AccountRetrieveParams.none(), requestOptions)
@@ -69,7 +69,7 @@ interface AccountServiceAsync {
fun update(accountToken: String): CompletableFuture =
update(accountToken, AccountUpdateParams.none())
- /** @see [update] */
+ /** @see update */
fun update(
accountToken: String,
params: AccountUpdateParams = AccountUpdateParams.none(),
@@ -77,41 +77,41 @@ interface AccountServiceAsync {
): CompletableFuture =
update(params.toBuilder().accountToken(accountToken).build(), requestOptions)
- /** @see [update] */
+ /** @see update */
fun update(
accountToken: String,
params: AccountUpdateParams = AccountUpdateParams.none(),
): CompletableFuture = update(accountToken, params, RequestOptions.none())
- /** @see [update] */
+ /** @see update */
fun update(
params: AccountUpdateParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [update] */
+ /** @see update */
fun update(params: AccountUpdateParams): CompletableFuture =
update(params, RequestOptions.none())
- /** @see [update] */
+ /** @see update */
fun update(accountToken: String, requestOptions: RequestOptions): CompletableFuture =
update(accountToken, AccountUpdateParams.none(), requestOptions)
/** List account configurations. */
fun list(): CompletableFuture = list(AccountListParams.none())
- /** @see [list] */
+ /** @see list */
fun list(
params: AccountListParams = AccountListParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [list] */
+ /** @see list */
fun list(
params: AccountListParams = AccountListParams.none()
): CompletableFuture = list(params, RequestOptions.none())
- /** @see [list] */
+ /** @see list */
fun list(requestOptions: RequestOptions): CompletableFuture =
list(AccountListParams.none(), requestOptions)
@@ -124,7 +124,7 @@ interface AccountServiceAsync {
fun retrieveSpendLimits(accountToken: String): CompletableFuture =
retrieveSpendLimits(accountToken, AccountRetrieveSpendLimitsParams.none())
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
accountToken: String,
params: AccountRetrieveSpendLimitsParams = AccountRetrieveSpendLimitsParams.none(),
@@ -132,25 +132,25 @@ interface AccountServiceAsync {
): CompletableFuture =
retrieveSpendLimits(params.toBuilder().accountToken(accountToken).build(), requestOptions)
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
accountToken: String,
params: AccountRetrieveSpendLimitsParams = AccountRetrieveSpendLimitsParams.none(),
): CompletableFuture =
retrieveSpendLimits(accountToken, params, RequestOptions.none())
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
params: AccountRetrieveSpendLimitsParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
params: AccountRetrieveSpendLimitsParams
): CompletableFuture = retrieveSpendLimits(params, RequestOptions.none())
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
accountToken: String,
requestOptions: RequestOptions,
@@ -178,7 +178,7 @@ interface AccountServiceAsync {
fun retrieve(accountToken: String): CompletableFuture> =
retrieve(accountToken, AccountRetrieveParams.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountToken: String,
params: AccountRetrieveParams = AccountRetrieveParams.none(),
@@ -186,24 +186,24 @@ interface AccountServiceAsync {
): CompletableFuture> =
retrieve(params.toBuilder().accountToken(accountToken).build(), requestOptions)
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountToken: String,
params: AccountRetrieveParams = AccountRetrieveParams.none(),
): CompletableFuture> =
retrieve(accountToken, params, RequestOptions.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
params: AccountRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(params: AccountRetrieveParams): CompletableFuture> =
retrieve(params, RequestOptions.none())
- /** @see [retrieve] */
+ /** @see retrieve */
fun retrieve(
accountToken: String,
requestOptions: RequestOptions,
@@ -217,7 +217,7 @@ interface AccountServiceAsync {
fun update(accountToken: String): CompletableFuture> =
update(accountToken, AccountUpdateParams.none())
- /** @see [update] */
+ /** @see update */
fun update(
accountToken: String,
params: AccountUpdateParams = AccountUpdateParams.none(),
@@ -225,24 +225,24 @@ interface AccountServiceAsync {
): CompletableFuture> =
update(params.toBuilder().accountToken(accountToken).build(), requestOptions)
- /** @see [update] */
+ /** @see update */
fun update(
accountToken: String,
params: AccountUpdateParams = AccountUpdateParams.none(),
): CompletableFuture> =
update(accountToken, params, RequestOptions.none())
- /** @see [update] */
+ /** @see update */
fun update(
params: AccountUpdateParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [update] */
+ /** @see update */
fun update(params: AccountUpdateParams): CompletableFuture> =
update(params, RequestOptions.none())
- /** @see [update] */
+ /** @see update */
fun update(
accountToken: String,
requestOptions: RequestOptions,
@@ -256,19 +256,19 @@ interface AccountServiceAsync {
fun list(): CompletableFuture> =
list(AccountListParams.none())
- /** @see [list] */
+ /** @see list */
fun list(
params: AccountListParams = AccountListParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [list] */
+ /** @see list */
fun list(
params: AccountListParams = AccountListParams.none()
): CompletableFuture> =
list(params, RequestOptions.none())
- /** @see [list] */
+ /** @see list */
fun list(
requestOptions: RequestOptions
): CompletableFuture> =
@@ -283,7 +283,7 @@ interface AccountServiceAsync {
): CompletableFuture> =
retrieveSpendLimits(accountToken, AccountRetrieveSpendLimitsParams.none())
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
accountToken: String,
params: AccountRetrieveSpendLimitsParams = AccountRetrieveSpendLimitsParams.none(),
@@ -294,26 +294,26 @@ interface AccountServiceAsync {
requestOptions,
)
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
accountToken: String,
params: AccountRetrieveSpendLimitsParams = AccountRetrieveSpendLimitsParams.none(),
): CompletableFuture> =
retrieveSpendLimits(accountToken, params, RequestOptions.none())
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
params: AccountRetrieveSpendLimitsParams,
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
params: AccountRetrieveSpendLimitsParams
): CompletableFuture> =
retrieveSpendLimits(params, RequestOptions.none())
- /** @see [retrieveSpendLimits] */
+ /** @see retrieveSpendLimits */
fun retrieveSpendLimits(
accountToken: String,
requestOptions: RequestOptions,
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AggregateBalanceServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AggregateBalanceServiceAsync.kt
index f382c0739..48c56329f 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AggregateBalanceServiceAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AggregateBalanceServiceAsync.kt
@@ -28,18 +28,18 @@ interface AggregateBalanceServiceAsync {
fun list(): CompletableFuture =
list(AggregateBalanceListParams.none())
- /** @see [list] */
+ /** @see list */
fun list(
params: AggregateBalanceListParams = AggregateBalanceListParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [list] */
+ /** @see list */
fun list(
params: AggregateBalanceListParams = AggregateBalanceListParams.none()
): CompletableFuture = list(params, RequestOptions.none())
- /** @see [list] */
+ /** @see list */
fun list(requestOptions: RequestOptions): CompletableFuture =
list(AggregateBalanceListParams.none(), requestOptions)
@@ -65,19 +65,19 @@ interface AggregateBalanceServiceAsync {
fun list(): CompletableFuture> =
list(AggregateBalanceListParams.none())
- /** @see [list] */
+ /** @see list */
fun list(
params: AggregateBalanceListParams = AggregateBalanceListParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture>
- /** @see [list] */
+ /** @see list */
fun list(
params: AggregateBalanceListParams = AggregateBalanceListParams.none()
): CompletableFuture> =
list(params, RequestOptions.none())
- /** @see [list] */
+ /** @see list */
fun list(
requestOptions: RequestOptions
): CompletableFuture> =
diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AuthStreamEnrollmentServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AuthStreamEnrollmentServiceAsync.kt
index b0b1310e5..31ab0f174 100644
--- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AuthStreamEnrollmentServiceAsync.kt
+++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/AuthStreamEnrollmentServiceAsync.kt
@@ -36,20 +36,20 @@ interface AuthStreamEnrollmentServiceAsync {
fun retrieveSecret(): CompletableFuture =
retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams.none())
- /** @see [retrieveSecret] */
+ /** @see retrieveSecret */
fun retrieveSecret(
params: AuthStreamEnrollmentRetrieveSecretParams =
AuthStreamEnrollmentRetrieveSecretParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture
- /** @see [retrieveSecret] */
+ /** @see retrieveSecret */
fun retrieveSecret(
params: AuthStreamEnrollmentRetrieveSecretParams =
AuthStreamEnrollmentRetrieveSecretParams.none()
): CompletableFuture = retrieveSecret(params, RequestOptions.none())
- /** @see [retrieveSecret] */
+ /** @see retrieveSecret */
fun retrieveSecret(requestOptions: RequestOptions): CompletableFuture =
retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams.none(), requestOptions)
@@ -62,20 +62,20 @@ interface AuthStreamEnrollmentServiceAsync {
fun rotateSecret(): CompletableFuture =
rotateSecret(AuthStreamEnrollmentRotateSecretParams.none())
- /** @see [rotateSecret] */
+ /** @see rotateSecret */
fun rotateSecret(
params: AuthStreamEnrollmentRotateSecretParams =
AuthStreamEnrollmentRotateSecretParams.none(),
requestOptions: RequestOptions = RequestOptions.none(),
): CompletableFuture