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 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.lithic.api/lithic-java)](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.97.0) -[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.97.0/javadoc.svg)](https://javadoc.io/doc/com.lithic.api/lithic-java/0.97.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.lithic.api/lithic-java)](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.97.1) +[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.97.1/javadoc.svg)](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 - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: AuthStreamEnrollmentRotateSecretParams = AuthStreamEnrollmentRotateSecretParams.none() ): CompletableFuture = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(requestOptions: RequestOptions): CompletableFuture = rotateSecret(AuthStreamEnrollmentRotateSecretParams.none(), requestOptions) @@ -101,21 +101,21 @@ 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> = @@ -128,20 +128,20 @@ interface AuthStreamEnrollmentServiceAsync { fun rotateSecret(): CompletableFuture = rotateSecret(AuthStreamEnrollmentRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: AuthStreamEnrollmentRotateSecretParams = AuthStreamEnrollmentRotateSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: AuthStreamEnrollmentRotateSecretParams = AuthStreamEnrollmentRotateSecretParams.none() ): CompletableFuture = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(requestOptions: RequestOptions): CompletableFuture = rotateSecret(AuthStreamEnrollmentRotateSecretParams.none(), requestOptions) } diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/BalanceServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/BalanceServiceAsync.kt index 4f715d6da..944e72260 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/BalanceServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/BalanceServiceAsync.kt @@ -27,18 +27,18 @@ interface BalanceServiceAsync { /** Get the balances for a program, business, or a given end-user account */ fun list(): CompletableFuture = list(BalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: BalanceListParams = BalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: BalanceListParams = BalanceListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(BalanceListParams.none(), requestOptions) @@ -63,19 +63,19 @@ interface BalanceServiceAsync { fun list(): CompletableFuture> = list(BalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: BalanceListParams = BalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: BalanceListParams = BalanceListParams.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/BookTransferServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/BookTransferServiceAsync.kt index f69fecae1..5de92133a 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/BookTransferServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/BookTransferServiceAsync.kt @@ -34,7 +34,7 @@ interface BookTransferServiceAsync { fun create(params: BookTransferCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: BookTransferCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -44,7 +44,7 @@ interface BookTransferServiceAsync { fun retrieve(bookTransferToken: String): CompletableFuture = retrieve(bookTransferToken, BookTransferRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( bookTransferToken: String, params: BookTransferRetrieveParams = BookTransferRetrieveParams.none(), @@ -52,24 +52,24 @@ interface BookTransferServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().bookTransferToken(bookTransferToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( bookTransferToken: String, params: BookTransferRetrieveParams = BookTransferRetrieveParams.none(), ): CompletableFuture = retrieve(bookTransferToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: BookTransferRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: BookTransferRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( bookTransferToken: String, requestOptions: RequestOptions, @@ -79,18 +79,18 @@ interface BookTransferServiceAsync { /** List book transfers */ fun list(): CompletableFuture = list(BookTransferListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: BookTransferListParams = BookTransferListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: BookTransferListParams = BookTransferListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(BookTransferListParams.none(), requestOptions) @@ -98,7 +98,7 @@ interface BookTransferServiceAsync { fun reverse(bookTransferToken: String): CompletableFuture = reverse(bookTransferToken, BookTransferReverseParams.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( bookTransferToken: String, params: BookTransferReverseParams = BookTransferReverseParams.none(), @@ -106,24 +106,24 @@ interface BookTransferServiceAsync { ): CompletableFuture = reverse(params.toBuilder().bookTransferToken(bookTransferToken).build(), requestOptions) - /** @see [reverse] */ + /** @see reverse */ fun reverse( bookTransferToken: String, params: BookTransferReverseParams = BookTransferReverseParams.none(), ): CompletableFuture = reverse(bookTransferToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: BookTransferReverseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [reverse] */ + /** @see reverse */ fun reverse(params: BookTransferReverseParams): CompletableFuture = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( bookTransferToken: String, requestOptions: RequestOptions, @@ -154,7 +154,7 @@ interface BookTransferServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: BookTransferCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -169,7 +169,7 @@ interface BookTransferServiceAsync { ): CompletableFuture> = retrieve(bookTransferToken, BookTransferRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( bookTransferToken: String, params: BookTransferRetrieveParams = BookTransferRetrieveParams.none(), @@ -180,26 +180,26 @@ interface BookTransferServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( bookTransferToken: String, params: BookTransferRetrieveParams = BookTransferRetrieveParams.none(), ): CompletableFuture> = retrieve(bookTransferToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: BookTransferRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: BookTransferRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( bookTransferToken: String, requestOptions: RequestOptions, @@ -213,19 +213,19 @@ interface BookTransferServiceAsync { fun list(): CompletableFuture> = list(BookTransferListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: BookTransferListParams = BookTransferListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: BookTransferListParams = BookTransferListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -240,7 +240,7 @@ interface BookTransferServiceAsync { ): CompletableFuture> = reverse(bookTransferToken, BookTransferReverseParams.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( bookTransferToken: String, params: BookTransferReverseParams = BookTransferReverseParams.none(), @@ -248,26 +248,26 @@ interface BookTransferServiceAsync { ): CompletableFuture> = reverse(params.toBuilder().bookTransferToken(bookTransferToken).build(), requestOptions) - /** @see [reverse] */ + /** @see reverse */ fun reverse( bookTransferToken: String, params: BookTransferReverseParams = BookTransferReverseParams.none(), ): CompletableFuture> = reverse(bookTransferToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: BookTransferReverseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: BookTransferReverseParams ): CompletableFuture> = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( bookTransferToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/CardProgramServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/CardProgramServiceAsync.kt index b8eefdc53..2f1fdb0dd 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/CardProgramServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/CardProgramServiceAsync.kt @@ -30,7 +30,7 @@ interface CardProgramServiceAsync { fun retrieve(cardProgramToken: String): CompletableFuture = retrieve(cardProgramToken, CardProgramRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardProgramToken: String, params: CardProgramRetrieveParams = CardProgramRetrieveParams.none(), @@ -38,23 +38,23 @@ interface CardProgramServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().cardProgramToken(cardProgramToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardProgramToken: String, params: CardProgramRetrieveParams = CardProgramRetrieveParams.none(), ): CompletableFuture = retrieve(cardProgramToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardProgramRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: CardProgramRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardProgramToken: String, requestOptions: RequestOptions, @@ -64,18 +64,18 @@ interface CardProgramServiceAsync { /** List card programs. */ fun list(): CompletableFuture = list(CardProgramListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardProgramListParams = CardProgramListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CardProgramListParams = CardProgramListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(CardProgramListParams.none(), requestOptions) @@ -101,7 +101,7 @@ interface CardProgramServiceAsync { fun retrieve(cardProgramToken: String): CompletableFuture> = retrieve(cardProgramToken, CardProgramRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardProgramToken: String, params: CardProgramRetrieveParams = CardProgramRetrieveParams.none(), @@ -109,25 +109,25 @@ interface CardProgramServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().cardProgramToken(cardProgramToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardProgramToken: String, params: CardProgramRetrieveParams = CardProgramRetrieveParams.none(), ): CompletableFuture> = retrieve(cardProgramToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardProgramRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardProgramRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardProgramToken: String, requestOptions: RequestOptions, @@ -141,19 +141,19 @@ interface CardProgramServiceAsync { fun list(): CompletableFuture> = list(CardProgramListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardProgramListParams = CardProgramListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CardProgramListParams = CardProgramListParams.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/CardServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/CardServiceAsync.kt index 0c554dc1d..7d6b7d339 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/CardServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/CardServiceAsync.kt @@ -57,7 +57,7 @@ interface CardServiceAsync { fun create(params: CardCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CardCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -67,7 +67,7 @@ interface CardServiceAsync { fun retrieve(cardToken: String): CompletableFuture = retrieve(cardToken, CardRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardToken: String, params: CardRetrieveParams = CardRetrieveParams.none(), @@ -75,23 +75,23 @@ interface CardServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardToken: String, params: CardRetrieveParams = CardRetrieveParams.none(), ): CompletableFuture = retrieve(cardToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: CardRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(cardToken: String, requestOptions: RequestOptions): CompletableFuture = retrieve(cardToken, CardRetrieveParams.none(), requestOptions) @@ -103,7 +103,7 @@ interface CardServiceAsync { fun update(cardToken: String): CompletableFuture = update(cardToken, CardUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( cardToken: String, params: CardUpdateParams = CardUpdateParams.none(), @@ -111,40 +111,40 @@ interface CardServiceAsync { ): CompletableFuture = update(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( cardToken: String, params: CardUpdateParams = CardUpdateParams.none(), ): CompletableFuture = update(cardToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: CardUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: CardUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(cardToken: String, requestOptions: RequestOptions): CompletableFuture = update(cardToken, CardUpdateParams.none(), requestOptions) /** List cards. */ fun list(): CompletableFuture = list(CardListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardListParams = CardListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list(params: CardListParams = CardListParams.none()): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(CardListParams.none(), requestOptions) @@ -163,7 +163,7 @@ interface CardServiceAsync { params: CardConvertPhysicalParams, ): CompletableFuture = convertPhysical(cardToken, params, RequestOptions.none()) - /** @see [convertPhysical] */ + /** @see convertPhysical */ fun convertPhysical( cardToken: String, params: CardConvertPhysicalParams, @@ -171,11 +171,11 @@ interface CardServiceAsync { ): CompletableFuture = convertPhysical(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [convertPhysical] */ + /** @see convertPhysical */ fun convertPhysical(params: CardConvertPhysicalParams): CompletableFuture = convertPhysical(params, RequestOptions.none()) - /** @see [convertPhysical] */ + /** @see convertPhysical */ fun convertPhysical( params: CardConvertPhysicalParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -210,7 +210,7 @@ interface CardServiceAsync { fun embed(params: CardEmbedParams): CompletableFuture = embed(params, RequestOptions.none()) - /** @see [embed] */ + /** @see embed */ fun embed( params: CardEmbedParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -227,7 +227,7 @@ interface CardServiceAsync { fun provision(cardToken: String): CompletableFuture = provision(cardToken, CardProvisionParams.none()) - /** @see [provision] */ + /** @see provision */ fun provision( cardToken: String, params: CardProvisionParams = CardProvisionParams.none(), @@ -235,24 +235,24 @@ interface CardServiceAsync { ): CompletableFuture = provision(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [provision] */ + /** @see provision */ fun provision( cardToken: String, params: CardProvisionParams = CardProvisionParams.none(), ): CompletableFuture = provision(cardToken, params, RequestOptions.none()) - /** @see [provision] */ + /** @see provision */ fun provision( params: CardProvisionParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [provision] */ + /** @see provision */ fun provision(params: CardProvisionParams): CompletableFuture = provision(params, RequestOptions.none()) - /** @see [provision] */ + /** @see provision */ fun provision( cardToken: String, requestOptions: RequestOptions, @@ -268,7 +268,7 @@ interface CardServiceAsync { fun reissue(cardToken: String): CompletableFuture = reissue(cardToken, CardReissueParams.none()) - /** @see [reissue] */ + /** @see reissue */ fun reissue( cardToken: String, params: CardReissueParams = CardReissueParams.none(), @@ -276,23 +276,23 @@ interface CardServiceAsync { ): CompletableFuture = reissue(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [reissue] */ + /** @see reissue */ fun reissue( cardToken: String, params: CardReissueParams = CardReissueParams.none(), ): CompletableFuture = reissue(cardToken, params, RequestOptions.none()) - /** @see [reissue] */ + /** @see reissue */ fun reissue( params: CardReissueParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [reissue] */ + /** @see reissue */ fun reissue(params: CardReissueParams): CompletableFuture = reissue(params, RequestOptions.none()) - /** @see [reissue] */ + /** @see reissue */ fun reissue(cardToken: String, requestOptions: RequestOptions): CompletableFuture = reissue(cardToken, CardReissueParams.none(), requestOptions) @@ -309,7 +309,7 @@ interface CardServiceAsync { fun renew(cardToken: String, params: CardRenewParams): CompletableFuture = renew(cardToken, params, RequestOptions.none()) - /** @see [renew] */ + /** @see renew */ fun renew( cardToken: String, params: CardRenewParams, @@ -317,11 +317,11 @@ interface CardServiceAsync { ): CompletableFuture = renew(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [renew] */ + /** @see renew */ fun renew(params: CardRenewParams): CompletableFuture = renew(params, RequestOptions.none()) - /** @see [renew] */ + /** @see renew */ fun renew( params: CardRenewParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -336,7 +336,7 @@ interface CardServiceAsync { fun retrieveSpendLimits(cardToken: String): CompletableFuture = retrieveSpendLimits(cardToken, CardRetrieveSpendLimitsParams.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( cardToken: String, params: CardRetrieveSpendLimitsParams = CardRetrieveSpendLimitsParams.none(), @@ -344,25 +344,25 @@ interface CardServiceAsync { ): CompletableFuture = retrieveSpendLimits(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( cardToken: String, params: CardRetrieveSpendLimitsParams = CardRetrieveSpendLimitsParams.none(), ): CompletableFuture = retrieveSpendLimits(cardToken, params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( params: CardRetrieveSpendLimitsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( params: CardRetrieveSpendLimitsParams ): CompletableFuture = retrieveSpendLimits(params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( cardToken: String, requestOptions: RequestOptions, @@ -378,7 +378,7 @@ interface CardServiceAsync { fun searchByPan(params: CardSearchByPanParams): CompletableFuture = searchByPan(params, RequestOptions.none()) - /** @see [searchByPan] */ + /** @see searchByPan */ fun searchByPan( params: CardSearchByPanParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -395,7 +395,7 @@ interface CardServiceAsync { fun webProvision(cardToken: String): CompletableFuture = webProvision(cardToken, CardWebProvisionParams.none()) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( cardToken: String, params: CardWebProvisionParams = CardWebProvisionParams.none(), @@ -403,24 +403,24 @@ interface CardServiceAsync { ): CompletableFuture = webProvision(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( cardToken: String, params: CardWebProvisionParams = CardWebProvisionParams.none(), ): CompletableFuture = webProvision(cardToken, params, RequestOptions.none()) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( params: CardWebProvisionParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision(params: CardWebProvisionParams): CompletableFuture = webProvision(params, RequestOptions.none()) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( cardToken: String, requestOptions: RequestOptions, @@ -460,7 +460,7 @@ interface CardServiceAsync { fun create(params: CardCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CardCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -473,7 +473,7 @@ interface CardServiceAsync { fun retrieve(cardToken: String): CompletableFuture> = retrieve(cardToken, CardRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardToken: String, params: CardRetrieveParams = CardRetrieveParams.none(), @@ -481,24 +481,24 @@ interface CardServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardToken: String, params: CardRetrieveParams = CardRetrieveParams.none(), ): CompletableFuture> = retrieve(cardToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: CardRetrieveParams): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardToken: String, requestOptions: RequestOptions, @@ -512,7 +512,7 @@ interface CardServiceAsync { fun update(cardToken: String): CompletableFuture> = update(cardToken, CardUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( cardToken: String, params: CardUpdateParams = CardUpdateParams.none(), @@ -520,24 +520,24 @@ interface CardServiceAsync { ): CompletableFuture> = update(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( cardToken: String, params: CardUpdateParams = CardUpdateParams.none(), ): CompletableFuture> = update(cardToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: CardUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update(params: CardUpdateParams): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( cardToken: String, requestOptions: RequestOptions, @@ -551,19 +551,19 @@ interface CardServiceAsync { fun list(): CompletableFuture> = list(CardListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardListParams = CardListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CardListParams = CardListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -579,7 +579,7 @@ interface CardServiceAsync { ): CompletableFuture> = convertPhysical(cardToken, params, RequestOptions.none()) - /** @see [convertPhysical] */ + /** @see convertPhysical */ fun convertPhysical( cardToken: String, params: CardConvertPhysicalParams, @@ -587,12 +587,12 @@ interface CardServiceAsync { ): CompletableFuture> = convertPhysical(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [convertPhysical] */ + /** @see convertPhysical */ fun convertPhysical( params: CardConvertPhysicalParams ): CompletableFuture> = convertPhysical(params, RequestOptions.none()) - /** @see [convertPhysical] */ + /** @see convertPhysical */ fun convertPhysical( params: CardConvertPhysicalParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -605,7 +605,7 @@ interface CardServiceAsync { fun embed(params: CardEmbedParams): CompletableFuture> = embed(params, RequestOptions.none()) - /** @see [embed] */ + /** @see embed */ fun embed( params: CardEmbedParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -620,7 +620,7 @@ interface CardServiceAsync { ): CompletableFuture> = provision(cardToken, CardProvisionParams.none()) - /** @see [provision] */ + /** @see provision */ fun provision( cardToken: String, params: CardProvisionParams = CardProvisionParams.none(), @@ -628,26 +628,26 @@ interface CardServiceAsync { ): CompletableFuture> = provision(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [provision] */ + /** @see provision */ fun provision( cardToken: String, params: CardProvisionParams = CardProvisionParams.none(), ): CompletableFuture> = provision(cardToken, params, RequestOptions.none()) - /** @see [provision] */ + /** @see provision */ fun provision( params: CardProvisionParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [provision] */ + /** @see provision */ fun provision( params: CardProvisionParams ): CompletableFuture> = provision(params, RequestOptions.none()) - /** @see [provision] */ + /** @see provision */ fun provision( cardToken: String, requestOptions: RequestOptions, @@ -661,7 +661,7 @@ interface CardServiceAsync { fun reissue(cardToken: String): CompletableFuture> = reissue(cardToken, CardReissueParams.none()) - /** @see [reissue] */ + /** @see reissue */ fun reissue( cardToken: String, params: CardReissueParams = CardReissueParams.none(), @@ -669,24 +669,24 @@ interface CardServiceAsync { ): CompletableFuture> = reissue(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [reissue] */ + /** @see reissue */ fun reissue( cardToken: String, params: CardReissueParams = CardReissueParams.none(), ): CompletableFuture> = reissue(cardToken, params, RequestOptions.none()) - /** @see [reissue] */ + /** @see reissue */ fun reissue( params: CardReissueParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [reissue] */ + /** @see reissue */ fun reissue(params: CardReissueParams): CompletableFuture> = reissue(params, RequestOptions.none()) - /** @see [reissue] */ + /** @see reissue */ fun reissue( cardToken: String, requestOptions: RequestOptions, @@ -703,7 +703,7 @@ interface CardServiceAsync { ): CompletableFuture> = renew(cardToken, params, RequestOptions.none()) - /** @see [renew] */ + /** @see renew */ fun renew( cardToken: String, params: CardRenewParams, @@ -711,11 +711,11 @@ interface CardServiceAsync { ): CompletableFuture> = renew(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [renew] */ + /** @see renew */ fun renew(params: CardRenewParams): CompletableFuture> = renew(params, RequestOptions.none()) - /** @see [renew] */ + /** @see renew */ fun renew( params: CardRenewParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -730,7 +730,7 @@ interface CardServiceAsync { ): CompletableFuture> = retrieveSpendLimits(cardToken, CardRetrieveSpendLimitsParams.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( cardToken: String, params: CardRetrieveSpendLimitsParams = CardRetrieveSpendLimitsParams.none(), @@ -738,26 +738,26 @@ interface CardServiceAsync { ): CompletableFuture> = retrieveSpendLimits(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( cardToken: String, params: CardRetrieveSpendLimitsParams = CardRetrieveSpendLimitsParams.none(), ): CompletableFuture> = retrieveSpendLimits(cardToken, params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( params: CardRetrieveSpendLimitsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( params: CardRetrieveSpendLimitsParams ): CompletableFuture> = retrieveSpendLimits(params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( cardToken: String, requestOptions: RequestOptions, @@ -771,7 +771,7 @@ interface CardServiceAsync { fun searchByPan(params: CardSearchByPanParams): CompletableFuture> = searchByPan(params, RequestOptions.none()) - /** @see [searchByPan] */ + /** @see searchByPan */ fun searchByPan( params: CardSearchByPanParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -786,7 +786,7 @@ interface CardServiceAsync { ): CompletableFuture> = webProvision(cardToken, CardWebProvisionParams.none()) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( cardToken: String, params: CardWebProvisionParams = CardWebProvisionParams.none(), @@ -794,26 +794,26 @@ interface CardServiceAsync { ): CompletableFuture> = webProvision(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( cardToken: String, params: CardWebProvisionParams = CardWebProvisionParams.none(), ): CompletableFuture> = webProvision(cardToken, params, RequestOptions.none()) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( params: CardWebProvisionParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( params: CardWebProvisionParams ): CompletableFuture> = webProvision(params, RequestOptions.none()) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( cardToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/DigitalCardArtServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/DigitalCardArtServiceAsync.kt index dbf8e9ebc..7bf04c632 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/DigitalCardArtServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/DigitalCardArtServiceAsync.kt @@ -30,7 +30,7 @@ interface DigitalCardArtServiceAsync { fun retrieve(digitalCardArtToken: String): CompletableFuture = retrieve(digitalCardArtToken, DigitalCardArtRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( digitalCardArtToken: String, params: DigitalCardArtRetrieveParams = DigitalCardArtRetrieveParams.none(), @@ -41,24 +41,24 @@ interface DigitalCardArtServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( digitalCardArtToken: String, params: DigitalCardArtRetrieveParams = DigitalCardArtRetrieveParams.none(), ): CompletableFuture = retrieve(digitalCardArtToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DigitalCardArtRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: DigitalCardArtRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( digitalCardArtToken: String, requestOptions: RequestOptions, @@ -69,18 +69,18 @@ interface DigitalCardArtServiceAsync { fun list(): CompletableFuture = list(DigitalCardArtListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: DigitalCardArtListParams = DigitalCardArtListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: DigitalCardArtListParams = DigitalCardArtListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(DigitalCardArtListParams.none(), requestOptions) @@ -108,7 +108,7 @@ interface DigitalCardArtServiceAsync { ): CompletableFuture> = retrieve(digitalCardArtToken, DigitalCardArtRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( digitalCardArtToken: String, params: DigitalCardArtRetrieveParams = DigitalCardArtRetrieveParams.none(), @@ -119,26 +119,26 @@ interface DigitalCardArtServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( digitalCardArtToken: String, params: DigitalCardArtRetrieveParams = DigitalCardArtRetrieveParams.none(), ): CompletableFuture> = retrieve(digitalCardArtToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DigitalCardArtRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DigitalCardArtRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( digitalCardArtToken: String, requestOptions: RequestOptions, @@ -152,19 +152,19 @@ interface DigitalCardArtServiceAsync { fun list(): CompletableFuture> = list(DigitalCardArtListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: DigitalCardArtListParams = DigitalCardArtListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: DigitalCardArtListParams = DigitalCardArtListParams.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/DisputeServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/DisputeServiceAsync.kt index 5b382d89d..c8e21360f 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/DisputeServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/DisputeServiceAsync.kt @@ -39,7 +39,7 @@ interface DisputeServiceAsync { fun create(params: DisputeCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: DisputeCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -49,7 +49,7 @@ interface DisputeServiceAsync { fun retrieve(disputeToken: String): CompletableFuture = retrieve(disputeToken, DisputeRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( disputeToken: String, params: DisputeRetrieveParams = DisputeRetrieveParams.none(), @@ -57,23 +57,23 @@ interface DisputeServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( disputeToken: String, params: DisputeRetrieveParams = DisputeRetrieveParams.none(), ): CompletableFuture = retrieve(disputeToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DisputeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: DisputeRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(disputeToken: String, requestOptions: RequestOptions): CompletableFuture = retrieve(disputeToken, DisputeRetrieveParams.none(), requestOptions) @@ -81,7 +81,7 @@ interface DisputeServiceAsync { fun update(disputeToken: String): CompletableFuture = update(disputeToken, DisputeUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( disputeToken: String, params: DisputeUpdateParams = DisputeUpdateParams.none(), @@ -89,41 +89,41 @@ interface DisputeServiceAsync { ): CompletableFuture = update(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( disputeToken: String, params: DisputeUpdateParams = DisputeUpdateParams.none(), ): CompletableFuture = update(disputeToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: DisputeUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: DisputeUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(disputeToken: String, requestOptions: RequestOptions): CompletableFuture = update(disputeToken, DisputeUpdateParams.none(), requestOptions) /** List disputes. */ fun list(): CompletableFuture = list(DisputeListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: DisputeListParams = DisputeListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: DisputeListParams = DisputeListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(DisputeListParams.none(), requestOptions) @@ -131,7 +131,7 @@ interface DisputeServiceAsync { fun delete(disputeToken: String): CompletableFuture = delete(disputeToken, DisputeDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( disputeToken: String, params: DisputeDeleteParams = DisputeDeleteParams.none(), @@ -139,23 +139,23 @@ interface DisputeServiceAsync { ): CompletableFuture = delete(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete( disputeToken: String, params: DisputeDeleteParams = DisputeDeleteParams.none(), ): CompletableFuture = delete(disputeToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: DisputeDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [delete] */ + /** @see delete */ fun delete(params: DisputeDeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete(disputeToken: String, requestOptions: RequestOptions): CompletableFuture = delete(disputeToken, DisputeDeleteParams.none(), requestOptions) @@ -169,7 +169,7 @@ interface DisputeServiceAsync { ): CompletableFuture = deleteEvidence(evidenceToken, params, RequestOptions.none()) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ fun deleteEvidence( evidenceToken: String, params: DisputeDeleteEvidenceParams, @@ -177,11 +177,11 @@ interface DisputeServiceAsync { ): CompletableFuture = deleteEvidence(params.toBuilder().evidenceToken(evidenceToken).build(), requestOptions) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ fun deleteEvidence(params: DisputeDeleteEvidenceParams): CompletableFuture = deleteEvidence(params, RequestOptions.none()) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ fun deleteEvidence( params: DisputeDeleteEvidenceParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -197,7 +197,7 @@ interface DisputeServiceAsync { fun initiateEvidenceUpload(disputeToken: String): CompletableFuture = initiateEvidenceUpload(disputeToken, DisputeInitiateEvidenceUploadParams.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( disputeToken: String, params: DisputeInitiateEvidenceUploadParams = DisputeInitiateEvidenceUploadParams.none(), @@ -208,25 +208,25 @@ interface DisputeServiceAsync { requestOptions, ) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( disputeToken: String, params: DisputeInitiateEvidenceUploadParams = DisputeInitiateEvidenceUploadParams.none(), ): CompletableFuture = initiateEvidenceUpload(disputeToken, params, RequestOptions.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( params: DisputeInitiateEvidenceUploadParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( params: DisputeInitiateEvidenceUploadParams ): CompletableFuture = initiateEvidenceUpload(params, RequestOptions.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( disputeToken: String, requestOptions: RequestOptions, @@ -241,7 +241,7 @@ interface DisputeServiceAsync { fun listEvidences(disputeToken: String): CompletableFuture = listEvidences(disputeToken, DisputeListEvidencesParams.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( disputeToken: String, params: DisputeListEvidencesParams = DisputeListEvidencesParams.none(), @@ -249,26 +249,26 @@ interface DisputeServiceAsync { ): CompletableFuture = listEvidences(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( disputeToken: String, params: DisputeListEvidencesParams = DisputeListEvidencesParams.none(), ): CompletableFuture = listEvidences(disputeToken, params, RequestOptions.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( params: DisputeListEvidencesParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( params: DisputeListEvidencesParams ): CompletableFuture = listEvidences(params, RequestOptions.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( disputeToken: String, requestOptions: RequestOptions, @@ -282,7 +282,7 @@ interface DisputeServiceAsync { ): CompletableFuture = retrieveEvidence(evidenceToken, params, RequestOptions.none()) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ fun retrieveEvidence( evidenceToken: String, params: DisputeRetrieveEvidenceParams, @@ -290,12 +290,12 @@ interface DisputeServiceAsync { ): CompletableFuture = retrieveEvidence(params.toBuilder().evidenceToken(evidenceToken).build(), requestOptions) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ fun retrieveEvidence( params: DisputeRetrieveEvidenceParams ): CompletableFuture = retrieveEvidence(params, RequestOptions.none()) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ fun retrieveEvidence( params: DisputeRetrieveEvidenceParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -324,7 +324,7 @@ interface DisputeServiceAsync { fun create(params: DisputeCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: DisputeCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -337,7 +337,7 @@ interface DisputeServiceAsync { fun retrieve(disputeToken: String): CompletableFuture> = retrieve(disputeToken, DisputeRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( disputeToken: String, params: DisputeRetrieveParams = DisputeRetrieveParams.none(), @@ -345,24 +345,24 @@ interface DisputeServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( disputeToken: String, params: DisputeRetrieveParams = DisputeRetrieveParams.none(), ): CompletableFuture> = retrieve(disputeToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DisputeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: DisputeRetrieveParams): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( disputeToken: String, requestOptions: RequestOptions, @@ -376,7 +376,7 @@ interface DisputeServiceAsync { fun update(disputeToken: String): CompletableFuture> = update(disputeToken, DisputeUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( disputeToken: String, params: DisputeUpdateParams = DisputeUpdateParams.none(), @@ -384,24 +384,24 @@ interface DisputeServiceAsync { ): CompletableFuture> = update(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( disputeToken: String, params: DisputeUpdateParams = DisputeUpdateParams.none(), ): CompletableFuture> = update(disputeToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: DisputeUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update(params: DisputeUpdateParams): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( disputeToken: String, requestOptions: RequestOptions, @@ -415,19 +415,19 @@ interface DisputeServiceAsync { fun list(): CompletableFuture> = list(DisputeListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: DisputeListParams = DisputeListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: DisputeListParams = DisputeListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -440,7 +440,7 @@ interface DisputeServiceAsync { fun delete(disputeToken: String): CompletableFuture> = delete(disputeToken, DisputeDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( disputeToken: String, params: DisputeDeleteParams = DisputeDeleteParams.none(), @@ -448,24 +448,24 @@ interface DisputeServiceAsync { ): CompletableFuture> = delete(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete( disputeToken: String, params: DisputeDeleteParams = DisputeDeleteParams.none(), ): CompletableFuture> = delete(disputeToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: DisputeDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [delete] */ + /** @see delete */ fun delete(params: DisputeDeleteParams): CompletableFuture> = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( disputeToken: String, requestOptions: RequestOptions, @@ -483,7 +483,7 @@ interface DisputeServiceAsync { ): CompletableFuture> = deleteEvidence(evidenceToken, params, RequestOptions.none()) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ fun deleteEvidence( evidenceToken: String, params: DisputeDeleteEvidenceParams, @@ -491,13 +491,13 @@ interface DisputeServiceAsync { ): CompletableFuture> = deleteEvidence(params.toBuilder().evidenceToken(evidenceToken).build(), requestOptions) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ fun deleteEvidence( params: DisputeDeleteEvidenceParams ): CompletableFuture> = deleteEvidence(params, RequestOptions.none()) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ fun deleteEvidence( params: DisputeDeleteEvidenceParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -512,7 +512,7 @@ interface DisputeServiceAsync { ): CompletableFuture> = initiateEvidenceUpload(disputeToken, DisputeInitiateEvidenceUploadParams.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( disputeToken: String, params: DisputeInitiateEvidenceUploadParams = @@ -524,26 +524,26 @@ interface DisputeServiceAsync { requestOptions, ) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( disputeToken: String, params: DisputeInitiateEvidenceUploadParams = DisputeInitiateEvidenceUploadParams.none(), ): CompletableFuture> = initiateEvidenceUpload(disputeToken, params, RequestOptions.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( params: DisputeInitiateEvidenceUploadParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( params: DisputeInitiateEvidenceUploadParams ): CompletableFuture> = initiateEvidenceUpload(params, RequestOptions.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( disputeToken: String, requestOptions: RequestOptions, @@ -563,7 +563,7 @@ interface DisputeServiceAsync { ): CompletableFuture> = listEvidences(disputeToken, DisputeListEvidencesParams.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( disputeToken: String, params: DisputeListEvidencesParams = DisputeListEvidencesParams.none(), @@ -571,26 +571,26 @@ interface DisputeServiceAsync { ): CompletableFuture> = listEvidences(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( disputeToken: String, params: DisputeListEvidencesParams = DisputeListEvidencesParams.none(), ): CompletableFuture> = listEvidences(disputeToken, params, RequestOptions.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( params: DisputeListEvidencesParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( params: DisputeListEvidencesParams ): CompletableFuture> = listEvidences(params, RequestOptions.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( disputeToken: String, requestOptions: RequestOptions, @@ -608,7 +608,7 @@ interface DisputeServiceAsync { ): CompletableFuture> = retrieveEvidence(evidenceToken, params, RequestOptions.none()) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ fun retrieveEvidence( evidenceToken: String, params: DisputeRetrieveEvidenceParams, @@ -619,13 +619,13 @@ interface DisputeServiceAsync { requestOptions, ) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ fun retrieveEvidence( params: DisputeRetrieveEvidenceParams ): CompletableFuture> = retrieveEvidence(params, RequestOptions.none()) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ fun retrieveEvidence( params: DisputeRetrieveEvidenceParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/EventServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/EventServiceAsync.kt index f5fdacccf..25d75a89b 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/EventServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/EventServiceAsync.kt @@ -39,7 +39,7 @@ interface EventServiceAsync { fun retrieve(eventToken: String): CompletableFuture = retrieve(eventToken, EventRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: EventRetrieveParams = EventRetrieveParams.none(), @@ -47,41 +47,41 @@ interface EventServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: EventRetrieveParams = EventRetrieveParams.none(), ): CompletableFuture = retrieve(eventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: EventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: EventRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(eventToken: String, requestOptions: RequestOptions): CompletableFuture = retrieve(eventToken, EventRetrieveParams.none(), requestOptions) /** List all events. */ fun list(): CompletableFuture = list(EventListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventListParams = EventListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: EventListParams = EventListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(EventListParams.none(), requestOptions) @@ -89,7 +89,7 @@ interface EventServiceAsync { fun listAttempts(eventToken: String): CompletableFuture = listAttempts(eventToken, EventListAttemptsParams.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventToken: String, params: EventListAttemptsParams = EventListAttemptsParams.none(), @@ -97,25 +97,25 @@ interface EventServiceAsync { ): CompletableFuture = listAttempts(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventToken: String, params: EventListAttemptsParams = EventListAttemptsParams.none(), ): CompletableFuture = listAttempts(eventToken, params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventListAttemptsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventListAttemptsParams ): CompletableFuture = listAttempts(params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventToken: String, requestOptions: RequestOptions, @@ -151,7 +151,7 @@ interface EventServiceAsync { fun retrieve(eventToken: String): CompletableFuture> = retrieve(eventToken, EventRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: EventRetrieveParams = EventRetrieveParams.none(), @@ -159,24 +159,24 @@ interface EventServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: EventRetrieveParams = EventRetrieveParams.none(), ): CompletableFuture> = retrieve(eventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: EventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: EventRetrieveParams): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, requestOptions: RequestOptions, @@ -190,19 +190,19 @@ interface EventServiceAsync { fun list(): CompletableFuture> = list(EventListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventListParams = EventListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: EventListParams = EventListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -217,7 +217,7 @@ interface EventServiceAsync { ): CompletableFuture> = listAttempts(eventToken, EventListAttemptsParams.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventToken: String, params: EventListAttemptsParams = EventListAttemptsParams.none(), @@ -225,26 +225,26 @@ interface EventServiceAsync { ): CompletableFuture> = listAttempts(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventToken: String, params: EventListAttemptsParams = EventListAttemptsParams.none(), ): CompletableFuture> = listAttempts(eventToken, params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventListAttemptsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventListAttemptsParams ): CompletableFuture> = listAttempts(params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ExternalBankAccountServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ExternalBankAccountServiceAsync.kt index 7e56c4d84..bd470953b 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ExternalBankAccountServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ExternalBankAccountServiceAsync.kt @@ -41,18 +41,18 @@ interface ExternalBankAccountServiceAsync { fun create(): CompletableFuture = create(ExternalBankAccountCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountCreateParams = ExternalBankAccountCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountCreateParams = ExternalBankAccountCreateParams.none() ): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( requestOptions: RequestOptions ): CompletableFuture = @@ -64,7 +64,7 @@ interface ExternalBankAccountServiceAsync { ): CompletableFuture = retrieve(externalBankAccountToken, ExternalBankAccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalBankAccountToken: String, params: ExternalBankAccountRetrieveParams = ExternalBankAccountRetrieveParams.none(), @@ -75,26 +75,26 @@ interface ExternalBankAccountServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalBankAccountToken: String, params: ExternalBankAccountRetrieveParams = ExternalBankAccountRetrieveParams.none(), ): CompletableFuture = retrieve(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ExternalBankAccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ExternalBankAccountRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -107,7 +107,7 @@ interface ExternalBankAccountServiceAsync { ): CompletableFuture = update(externalBankAccountToken, ExternalBankAccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( externalBankAccountToken: String, params: ExternalBankAccountUpdateParams = ExternalBankAccountUpdateParams.none(), @@ -118,25 +118,25 @@ interface ExternalBankAccountServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( externalBankAccountToken: String, params: ExternalBankAccountUpdateParams = ExternalBankAccountUpdateParams.none(), ): CompletableFuture = update(externalBankAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: ExternalBankAccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update( params: ExternalBankAccountUpdateParams ): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -147,18 +147,18 @@ interface ExternalBankAccountServiceAsync { fun list(): CompletableFuture = list(ExternalBankAccountListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ExternalBankAccountListParams = ExternalBankAccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: ExternalBankAccountListParams = ExternalBankAccountListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(ExternalBankAccountListParams.none(), requestOptions) @@ -171,7 +171,7 @@ interface ExternalBankAccountServiceAsync { ExternalBankAccountRetryMicroDepositsParams.none(), ) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( externalBankAccountToken: String, params: ExternalBankAccountRetryMicroDepositsParams = @@ -183,7 +183,7 @@ interface ExternalBankAccountServiceAsync { requestOptions, ) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( externalBankAccountToken: String, params: ExternalBankAccountRetryMicroDepositsParams = @@ -191,19 +191,19 @@ interface ExternalBankAccountServiceAsync { ): CompletableFuture = retryMicroDeposits(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( params: ExternalBankAccountRetryMicroDepositsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( params: ExternalBankAccountRetryMicroDepositsParams ): CompletableFuture = retryMicroDeposits(params, RequestOptions.none()) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -220,7 +220,7 @@ interface ExternalBankAccountServiceAsync { ): CompletableFuture = retryPrenote(externalBankAccountToken, ExternalBankAccountRetryPrenoteParams.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( externalBankAccountToken: String, params: ExternalBankAccountRetryPrenoteParams = @@ -232,26 +232,26 @@ interface ExternalBankAccountServiceAsync { requestOptions, ) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( externalBankAccountToken: String, params: ExternalBankAccountRetryPrenoteParams = ExternalBankAccountRetryPrenoteParams.none(), ): CompletableFuture = retryPrenote(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( params: ExternalBankAccountRetryPrenoteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( params: ExternalBankAccountRetryPrenoteParams ): CompletableFuture = retryPrenote(params, RequestOptions.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -286,19 +286,19 @@ interface ExternalBankAccountServiceAsync { fun create(): CompletableFuture> = create(ExternalBankAccountCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountCreateParams = ExternalBankAccountCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountCreateParams = ExternalBankAccountCreateParams.none() ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( requestOptions: RequestOptions ): CompletableFuture> = @@ -314,7 +314,7 @@ interface ExternalBankAccountServiceAsync { ): CompletableFuture> = retrieve(externalBankAccountToken, ExternalBankAccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalBankAccountToken: String, params: ExternalBankAccountRetrieveParams = ExternalBankAccountRetrieveParams.none(), @@ -325,26 +325,26 @@ interface ExternalBankAccountServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalBankAccountToken: String, params: ExternalBankAccountRetrieveParams = ExternalBankAccountRetrieveParams.none(), ): CompletableFuture> = retrieve(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ExternalBankAccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ExternalBankAccountRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -365,7 +365,7 @@ interface ExternalBankAccountServiceAsync { ): CompletableFuture> = update(externalBankAccountToken, ExternalBankAccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( externalBankAccountToken: String, params: ExternalBankAccountUpdateParams = ExternalBankAccountUpdateParams.none(), @@ -376,26 +376,26 @@ interface ExternalBankAccountServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( externalBankAccountToken: String, params: ExternalBankAccountUpdateParams = ExternalBankAccountUpdateParams.none(), ): CompletableFuture> = update(externalBankAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: ExternalBankAccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update( params: ExternalBankAccountUpdateParams ): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -409,19 +409,19 @@ interface ExternalBankAccountServiceAsync { fun list(): CompletableFuture> = list(ExternalBankAccountListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ExternalBankAccountListParams = ExternalBankAccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: ExternalBankAccountListParams = ExternalBankAccountListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -440,7 +440,7 @@ interface ExternalBankAccountServiceAsync { ExternalBankAccountRetryMicroDepositsParams.none(), ) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( externalBankAccountToken: String, params: ExternalBankAccountRetryMicroDepositsParams = @@ -452,7 +452,7 @@ interface ExternalBankAccountServiceAsync { requestOptions, ) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( externalBankAccountToken: String, params: ExternalBankAccountRetryMicroDepositsParams = @@ -460,19 +460,19 @@ interface ExternalBankAccountServiceAsync { ): CompletableFuture> = retryMicroDeposits(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( params: ExternalBankAccountRetryMicroDepositsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( params: ExternalBankAccountRetryMicroDepositsParams ): CompletableFuture> = retryMicroDeposits(params, RequestOptions.none()) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -493,7 +493,7 @@ interface ExternalBankAccountServiceAsync { ): CompletableFuture> = retryPrenote(externalBankAccountToken, ExternalBankAccountRetryPrenoteParams.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( externalBankAccountToken: String, params: ExternalBankAccountRetryPrenoteParams = @@ -505,7 +505,7 @@ interface ExternalBankAccountServiceAsync { requestOptions, ) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( externalBankAccountToken: String, params: ExternalBankAccountRetryPrenoteParams = @@ -513,19 +513,19 @@ interface ExternalBankAccountServiceAsync { ): CompletableFuture> = retryPrenote(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( params: ExternalBankAccountRetryPrenoteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( params: ExternalBankAccountRetryPrenoteParams ): CompletableFuture> = retryPrenote(params, RequestOptions.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( externalBankAccountToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ExternalPaymentServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ExternalPaymentServiceAsync.kt index e2c2bd5b4..644892f8e 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ExternalPaymentServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ExternalPaymentServiceAsync.kt @@ -35,7 +35,7 @@ interface ExternalPaymentServiceAsync { fun create(params: ExternalPaymentCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ExternalPaymentCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -45,7 +45,7 @@ interface ExternalPaymentServiceAsync { fun retrieve(externalPaymentToken: String): CompletableFuture = retrieve(externalPaymentToken, ExternalPaymentRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalPaymentToken: String, params: ExternalPaymentRetrieveParams = ExternalPaymentRetrieveParams.none(), @@ -56,24 +56,24 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalPaymentToken: String, params: ExternalPaymentRetrieveParams = ExternalPaymentRetrieveParams.none(), ): CompletableFuture = retrieve(externalPaymentToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ExternalPaymentRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: ExternalPaymentRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalPaymentToken: String, requestOptions: RequestOptions, @@ -84,18 +84,18 @@ interface ExternalPaymentServiceAsync { fun list(): CompletableFuture = list(ExternalPaymentListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ExternalPaymentListParams = ExternalPaymentListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: ExternalPaymentListParams = ExternalPaymentListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(ExternalPaymentListParams.none(), requestOptions) @@ -106,7 +106,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture = cancel(externalPaymentToken, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( externalPaymentToken: String, params: ExternalPaymentCancelParams, @@ -117,11 +117,11 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [cancel] */ + /** @see cancel */ fun cancel(params: ExternalPaymentCancelParams): CompletableFuture = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: ExternalPaymentCancelParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -134,7 +134,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture = release(externalPaymentToken, params, RequestOptions.none()) - /** @see [release] */ + /** @see release */ fun release( externalPaymentToken: String, params: ExternalPaymentReleaseParams, @@ -145,11 +145,11 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [release] */ + /** @see release */ fun release(params: ExternalPaymentReleaseParams): CompletableFuture = release(params, RequestOptions.none()) - /** @see [release] */ + /** @see release */ fun release( params: ExternalPaymentReleaseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -162,7 +162,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture = reverse(externalPaymentToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( externalPaymentToken: String, params: ExternalPaymentReverseParams, @@ -173,11 +173,11 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [reverse] */ + /** @see reverse */ fun reverse(params: ExternalPaymentReverseParams): CompletableFuture = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: ExternalPaymentReverseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -190,7 +190,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture = settle(externalPaymentToken, params, RequestOptions.none()) - /** @see [settle] */ + /** @see settle */ fun settle( externalPaymentToken: String, params: ExternalPaymentSettleParams, @@ -201,11 +201,11 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [settle] */ + /** @see settle */ fun settle(params: ExternalPaymentSettleParams): CompletableFuture = settle(params, RequestOptions.none()) - /** @see [settle] */ + /** @see settle */ fun settle( params: ExternalPaymentSettleParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -235,7 +235,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ExternalPaymentCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -250,7 +250,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture> = retrieve(externalPaymentToken, ExternalPaymentRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalPaymentToken: String, params: ExternalPaymentRetrieveParams = ExternalPaymentRetrieveParams.none(), @@ -261,26 +261,26 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalPaymentToken: String, params: ExternalPaymentRetrieveParams = ExternalPaymentRetrieveParams.none(), ): CompletableFuture> = retrieve(externalPaymentToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ExternalPaymentRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ExternalPaymentRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalPaymentToken: String, requestOptions: RequestOptions, @@ -294,19 +294,19 @@ interface ExternalPaymentServiceAsync { fun list(): CompletableFuture> = list(ExternalPaymentListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ExternalPaymentListParams = ExternalPaymentListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: ExternalPaymentListParams = ExternalPaymentListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -323,7 +323,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture> = cancel(externalPaymentToken, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( externalPaymentToken: String, params: ExternalPaymentCancelParams, @@ -334,13 +334,13 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: ExternalPaymentCancelParams ): CompletableFuture> = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: ExternalPaymentCancelParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -357,7 +357,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture> = release(externalPaymentToken, params, RequestOptions.none()) - /** @see [release] */ + /** @see release */ fun release( externalPaymentToken: String, params: ExternalPaymentReleaseParams, @@ -368,13 +368,13 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [release] */ + /** @see release */ fun release( params: ExternalPaymentReleaseParams ): CompletableFuture> = release(params, RequestOptions.none()) - /** @see [release] */ + /** @see release */ fun release( params: ExternalPaymentReleaseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -391,7 +391,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture> = reverse(externalPaymentToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( externalPaymentToken: String, params: ExternalPaymentReverseParams, @@ -402,13 +402,13 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: ExternalPaymentReverseParams ): CompletableFuture> = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: ExternalPaymentReverseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -425,7 +425,7 @@ interface ExternalPaymentServiceAsync { ): CompletableFuture> = settle(externalPaymentToken, params, RequestOptions.none()) - /** @see [settle] */ + /** @see settle */ fun settle( externalPaymentToken: String, params: ExternalPaymentSettleParams, @@ -436,13 +436,13 @@ interface ExternalPaymentServiceAsync { requestOptions, ) - /** @see [settle] */ + /** @see settle */ fun settle( params: ExternalPaymentSettleParams ): CompletableFuture> = settle(params, RequestOptions.none()) - /** @see [settle] */ + /** @see settle */ fun settle( params: ExternalPaymentSettleParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/FinancialAccountServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/FinancialAccountServiceAsync.kt index 819c729be..8e70b49f7 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/FinancialAccountServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/FinancialAccountServiceAsync.kt @@ -50,7 +50,7 @@ interface FinancialAccountServiceAsync { fun create(params: FinancialAccountCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: FinancialAccountCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -60,7 +60,7 @@ interface FinancialAccountServiceAsync { fun retrieve(financialAccountToken: String): CompletableFuture = retrieve(financialAccountToken, FinancialAccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountRetrieveParams = FinancialAccountRetrieveParams.none(), @@ -71,24 +71,24 @@ interface FinancialAccountServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountRetrieveParams = FinancialAccountRetrieveParams.none(), ): CompletableFuture = retrieve(financialAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: FinancialAccountRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, requestOptions: RequestOptions, @@ -99,7 +99,7 @@ interface FinancialAccountServiceAsync { fun update(financialAccountToken: String): CompletableFuture = update(financialAccountToken, FinancialAccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountUpdateParams = FinancialAccountUpdateParams.none(), @@ -110,24 +110,24 @@ interface FinancialAccountServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountUpdateParams = FinancialAccountUpdateParams.none(), ): CompletableFuture = update(financialAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: FinancialAccountUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, requestOptions: RequestOptions, @@ -138,18 +138,18 @@ interface FinancialAccountServiceAsync { fun list(): CompletableFuture = list(FinancialAccountListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountListParams = FinancialAccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountListParams = FinancialAccountListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(FinancialAccountListParams.none(), requestOptions) @@ -160,7 +160,7 @@ interface FinancialAccountServiceAsync { ): CompletableFuture = registerAccountNumber(financialAccountToken, params, RequestOptions.none()) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ fun registerAccountNumber( financialAccountToken: String, params: FinancialAccountRegisterAccountNumberParams, @@ -171,12 +171,12 @@ interface FinancialAccountServiceAsync { requestOptions, ) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ fun registerAccountNumber( params: FinancialAccountRegisterAccountNumberParams ): CompletableFuture = registerAccountNumber(params, RequestOptions.none()) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ fun registerAccountNumber( params: FinancialAccountRegisterAccountNumberParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -189,7 +189,7 @@ interface FinancialAccountServiceAsync { ): CompletableFuture = updateStatus(financialAccountToken, params, RequestOptions.none()) - /** @see [updateStatus] */ + /** @see updateStatus */ fun updateStatus( financialAccountToken: String, params: FinancialAccountUpdateStatusParams, @@ -200,12 +200,12 @@ interface FinancialAccountServiceAsync { requestOptions, ) - /** @see [updateStatus] */ + /** @see updateStatus */ fun updateStatus( params: FinancialAccountUpdateStatusParams ): CompletableFuture = updateStatus(params, RequestOptions.none()) - /** @see [updateStatus] */ + /** @see updateStatus */ fun updateStatus( params: FinancialAccountUpdateStatusParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -245,7 +245,7 @@ interface FinancialAccountServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: FinancialAccountCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -260,7 +260,7 @@ interface FinancialAccountServiceAsync { ): CompletableFuture> = retrieve(financialAccountToken, FinancialAccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountRetrieveParams = FinancialAccountRetrieveParams.none(), @@ -271,26 +271,26 @@ interface FinancialAccountServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountRetrieveParams = FinancialAccountRetrieveParams.none(), ): CompletableFuture> = retrieve(financialAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, requestOptions: RequestOptions, @@ -306,7 +306,7 @@ interface FinancialAccountServiceAsync { ): CompletableFuture> = update(financialAccountToken, FinancialAccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountUpdateParams = FinancialAccountUpdateParams.none(), @@ -317,26 +317,26 @@ interface FinancialAccountServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountUpdateParams = FinancialAccountUpdateParams.none(), ): CompletableFuture> = update(financialAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountUpdateParams ): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, requestOptions: RequestOptions, @@ -350,19 +350,19 @@ interface FinancialAccountServiceAsync { fun list(): CompletableFuture> = list(FinancialAccountListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountListParams = FinancialAccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountListParams = FinancialAccountListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -379,7 +379,7 @@ interface FinancialAccountServiceAsync { ): CompletableFuture = registerAccountNumber(financialAccountToken, params, RequestOptions.none()) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ fun registerAccountNumber( financialAccountToken: String, params: FinancialAccountRegisterAccountNumberParams, @@ -390,12 +390,12 @@ interface FinancialAccountServiceAsync { requestOptions, ) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ fun registerAccountNumber( params: FinancialAccountRegisterAccountNumberParams ): CompletableFuture = registerAccountNumber(params, RequestOptions.none()) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ fun registerAccountNumber( params: FinancialAccountRegisterAccountNumberParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -412,7 +412,7 @@ interface FinancialAccountServiceAsync { ): CompletableFuture> = updateStatus(financialAccountToken, params, RequestOptions.none()) - /** @see [updateStatus] */ + /** @see updateStatus */ fun updateStatus( financialAccountToken: String, params: FinancialAccountUpdateStatusParams, @@ -423,13 +423,13 @@ interface FinancialAccountServiceAsync { requestOptions, ) - /** @see [updateStatus] */ + /** @see updateStatus */ fun updateStatus( params: FinancialAccountUpdateStatusParams ): CompletableFuture> = updateStatus(params, RequestOptions.none()) - /** @see [updateStatus] */ + /** @see updateStatus */ fun updateStatus( params: FinancialAccountUpdateStatusParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/FundingEventServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/FundingEventServiceAsync.kt index 3ee3f24cc..2237a88e5 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/FundingEventServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/FundingEventServiceAsync.kt @@ -32,7 +32,7 @@ interface FundingEventServiceAsync { fun retrieve(fundingEventToken: String): CompletableFuture = retrieve(fundingEventToken, FundingEventRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( fundingEventToken: String, params: FundingEventRetrieveParams = FundingEventRetrieveParams.none(), @@ -40,25 +40,25 @@ interface FundingEventServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().fundingEventToken(fundingEventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( fundingEventToken: String, params: FundingEventRetrieveParams = FundingEventRetrieveParams.none(), ): CompletableFuture = retrieve(fundingEventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FundingEventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FundingEventRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( fundingEventToken: String, requestOptions: RequestOptions, @@ -68,18 +68,18 @@ interface FundingEventServiceAsync { /** Get all funding events for program */ fun list(): CompletableFuture = list(FundingEventListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: FundingEventListParams = FundingEventListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: FundingEventListParams = FundingEventListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(FundingEventListParams.none(), requestOptions) @@ -89,7 +89,7 @@ interface FundingEventServiceAsync { ): CompletableFuture = retrieveDetails(fundingEventToken, FundingEventRetrieveDetailsParams.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( fundingEventToken: String, params: FundingEventRetrieveDetailsParams = FundingEventRetrieveDetailsParams.none(), @@ -100,26 +100,26 @@ interface FundingEventServiceAsync { requestOptions, ) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( fundingEventToken: String, params: FundingEventRetrieveDetailsParams = FundingEventRetrieveDetailsParams.none(), ): CompletableFuture = retrieveDetails(fundingEventToken, params, RequestOptions.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( params: FundingEventRetrieveDetailsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( params: FundingEventRetrieveDetailsParams ): CompletableFuture = retrieveDetails(params, RequestOptions.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( fundingEventToken: String, requestOptions: RequestOptions, @@ -150,7 +150,7 @@ interface FundingEventServiceAsync { ): CompletableFuture> = retrieve(fundingEventToken, FundingEventRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( fundingEventToken: String, params: FundingEventRetrieveParams = FundingEventRetrieveParams.none(), @@ -161,26 +161,26 @@ interface FundingEventServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( fundingEventToken: String, params: FundingEventRetrieveParams = FundingEventRetrieveParams.none(), ): CompletableFuture> = retrieve(fundingEventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FundingEventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FundingEventRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( fundingEventToken: String, requestOptions: RequestOptions, @@ -194,19 +194,19 @@ interface FundingEventServiceAsync { fun list(): CompletableFuture> = list(FundingEventListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: FundingEventListParams = FundingEventListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: FundingEventListParams = FundingEventListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -221,7 +221,7 @@ interface FundingEventServiceAsync { ): CompletableFuture> = retrieveDetails(fundingEventToken, FundingEventRetrieveDetailsParams.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( fundingEventToken: String, params: FundingEventRetrieveDetailsParams = FundingEventRetrieveDetailsParams.none(), @@ -232,26 +232,26 @@ interface FundingEventServiceAsync { requestOptions, ) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( fundingEventToken: String, params: FundingEventRetrieveDetailsParams = FundingEventRetrieveDetailsParams.none(), ): CompletableFuture> = retrieveDetails(fundingEventToken, params, RequestOptions.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( params: FundingEventRetrieveDetailsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( params: FundingEventRetrieveDetailsParams ): CompletableFuture> = retrieveDetails(params, RequestOptions.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( fundingEventToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ManagementOperationServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ManagementOperationServiceAsync.kt index ab7fef460..d677c62e2 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ManagementOperationServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ManagementOperationServiceAsync.kt @@ -33,7 +33,7 @@ interface ManagementOperationServiceAsync { params: ManagementOperationCreateParams ): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ManagementOperationCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -45,7 +45,7 @@ interface ManagementOperationServiceAsync { ): CompletableFuture = retrieve(managementOperationToken, ManagementOperationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( managementOperationToken: String, params: ManagementOperationRetrieveParams = ManagementOperationRetrieveParams.none(), @@ -56,25 +56,25 @@ interface ManagementOperationServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( managementOperationToken: String, params: ManagementOperationRetrieveParams = ManagementOperationRetrieveParams.none(), ): CompletableFuture = retrieve(managementOperationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ManagementOperationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ManagementOperationRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( managementOperationToken: String, requestOptions: RequestOptions, @@ -85,18 +85,18 @@ interface ManagementOperationServiceAsync { fun list(): CompletableFuture = list(ManagementOperationListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ManagementOperationListParams = ManagementOperationListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: ManagementOperationListParams = ManagementOperationListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(ManagementOperationListParams.none(), requestOptions) @@ -107,7 +107,7 @@ interface ManagementOperationServiceAsync { ): CompletableFuture = reverse(managementOperationToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( managementOperationToken: String, params: ManagementOperationReverseParams, @@ -118,12 +118,12 @@ interface ManagementOperationServiceAsync { requestOptions, ) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: ManagementOperationReverseParams ): CompletableFuture = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: ManagementOperationReverseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -153,7 +153,7 @@ interface ManagementOperationServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ManagementOperationCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -169,7 +169,7 @@ interface ManagementOperationServiceAsync { ): CompletableFuture> = retrieve(managementOperationToken, ManagementOperationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( managementOperationToken: String, params: ManagementOperationRetrieveParams = ManagementOperationRetrieveParams.none(), @@ -180,26 +180,26 @@ interface ManagementOperationServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( managementOperationToken: String, params: ManagementOperationRetrieveParams = ManagementOperationRetrieveParams.none(), ): CompletableFuture> = retrieve(managementOperationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ManagementOperationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ManagementOperationRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( managementOperationToken: String, requestOptions: RequestOptions, @@ -217,19 +217,19 @@ interface ManagementOperationServiceAsync { fun list(): CompletableFuture> = list(ManagementOperationListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ManagementOperationListParams = ManagementOperationListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: ManagementOperationListParams = ManagementOperationListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -246,7 +246,7 @@ interface ManagementOperationServiceAsync { ): CompletableFuture> = reverse(managementOperationToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( managementOperationToken: String, params: ManagementOperationReverseParams, @@ -257,13 +257,13 @@ interface ManagementOperationServiceAsync { requestOptions, ) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: ManagementOperationReverseParams ): CompletableFuture> = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: ManagementOperationReverseParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/NetworkProgramServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/NetworkProgramServiceAsync.kt index 7c504f404..78c000c73 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/NetworkProgramServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/NetworkProgramServiceAsync.kt @@ -30,7 +30,7 @@ interface NetworkProgramServiceAsync { fun retrieve(networkProgramToken: String): CompletableFuture = retrieve(networkProgramToken, NetworkProgramRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( networkProgramToken: String, params: NetworkProgramRetrieveParams = NetworkProgramRetrieveParams.none(), @@ -41,24 +41,24 @@ interface NetworkProgramServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( networkProgramToken: String, params: NetworkProgramRetrieveParams = NetworkProgramRetrieveParams.none(), ): CompletableFuture = retrieve(networkProgramToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: NetworkProgramRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: NetworkProgramRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( networkProgramToken: String, requestOptions: RequestOptions, @@ -69,18 +69,18 @@ interface NetworkProgramServiceAsync { fun list(): CompletableFuture = list(NetworkProgramListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: NetworkProgramListParams = NetworkProgramListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: NetworkProgramListParams = NetworkProgramListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(NetworkProgramListParams.none(), requestOptions) @@ -108,7 +108,7 @@ interface NetworkProgramServiceAsync { ): CompletableFuture> = retrieve(networkProgramToken, NetworkProgramRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( networkProgramToken: String, params: NetworkProgramRetrieveParams = NetworkProgramRetrieveParams.none(), @@ -119,26 +119,26 @@ interface NetworkProgramServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( networkProgramToken: String, params: NetworkProgramRetrieveParams = NetworkProgramRetrieveParams.none(), ): CompletableFuture> = retrieve(networkProgramToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: NetworkProgramRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: NetworkProgramRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( networkProgramToken: String, requestOptions: RequestOptions, @@ -152,19 +152,19 @@ interface NetworkProgramServiceAsync { fun list(): CompletableFuture> = list(NetworkProgramListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: NetworkProgramListParams = NetworkProgramListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: NetworkProgramListParams = NetworkProgramListParams.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/PaymentServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/PaymentServiceAsync.kt index 3ff2ef9b2..c4f022604 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/PaymentServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/PaymentServiceAsync.kt @@ -42,7 +42,7 @@ interface PaymentServiceAsync { fun create(params: PaymentCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: PaymentCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -52,7 +52,7 @@ interface PaymentServiceAsync { fun retrieve(paymentToken: String): CompletableFuture = retrieve(paymentToken, PaymentRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( paymentToken: String, params: PaymentRetrieveParams = PaymentRetrieveParams.none(), @@ -60,41 +60,41 @@ interface PaymentServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( paymentToken: String, params: PaymentRetrieveParams = PaymentRetrieveParams.none(), ): CompletableFuture = retrieve(paymentToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: PaymentRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: PaymentRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(paymentToken: String, requestOptions: RequestOptions): CompletableFuture = retrieve(paymentToken, PaymentRetrieveParams.none(), requestOptions) /** List all the payments for the provided search criteria. */ fun list(): CompletableFuture = list(PaymentListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: PaymentListParams = PaymentListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: PaymentListParams = PaymentListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(PaymentListParams.none(), requestOptions) @@ -102,7 +102,7 @@ interface PaymentServiceAsync { fun retry(paymentToken: String): CompletableFuture = retry(paymentToken, PaymentRetryParams.none()) - /** @see [retry] */ + /** @see retry */ fun retry( paymentToken: String, params: PaymentRetryParams = PaymentRetryParams.none(), @@ -110,23 +110,23 @@ interface PaymentServiceAsync { ): CompletableFuture = retry(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [retry] */ + /** @see retry */ fun retry( paymentToken: String, params: PaymentRetryParams = PaymentRetryParams.none(), ): CompletableFuture = retry(paymentToken, params, RequestOptions.none()) - /** @see [retry] */ + /** @see retry */ fun retry( params: PaymentRetryParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retry] */ + /** @see retry */ fun retry(params: PaymentRetryParams): CompletableFuture = retry(params, RequestOptions.none()) - /** @see [retry] */ + /** @see retry */ fun retry( paymentToken: String, requestOptions: RequestOptions, @@ -140,7 +140,7 @@ interface PaymentServiceAsync { ): CompletableFuture = simulateAction(paymentToken, params, RequestOptions.none()) - /** @see [simulateAction] */ + /** @see simulateAction */ fun simulateAction( paymentToken: String, params: PaymentSimulateActionParams, @@ -148,13 +148,13 @@ interface PaymentServiceAsync { ): CompletableFuture = simulateAction(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [simulateAction] */ + /** @see simulateAction */ fun simulateAction( params: PaymentSimulateActionParams ): CompletableFuture = simulateAction(params, RequestOptions.none()) - /** @see [simulateAction] */ + /** @see simulateAction */ fun simulateAction( params: PaymentSimulateActionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -166,7 +166,7 @@ interface PaymentServiceAsync { ): CompletableFuture = simulateReceipt(params, RequestOptions.none()) - /** @see [simulateReceipt] */ + /** @see simulateReceipt */ fun simulateReceipt( params: PaymentSimulateReceiptParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -178,7 +178,7 @@ interface PaymentServiceAsync { ): CompletableFuture = simulateRelease(params, RequestOptions.none()) - /** @see [simulateRelease] */ + /** @see simulateRelease */ fun simulateRelease( params: PaymentSimulateReleaseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -190,7 +190,7 @@ interface PaymentServiceAsync { ): CompletableFuture = simulateReturn(params, RequestOptions.none()) - /** @see [simulateReturn] */ + /** @see simulateReturn */ fun simulateReturn( params: PaymentSimulateReturnParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -219,7 +219,7 @@ interface PaymentServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: PaymentCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -232,7 +232,7 @@ interface PaymentServiceAsync { fun retrieve(paymentToken: String): CompletableFuture> = retrieve(paymentToken, PaymentRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( paymentToken: String, params: PaymentRetrieveParams = PaymentRetrieveParams.none(), @@ -240,24 +240,24 @@ interface PaymentServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( paymentToken: String, params: PaymentRetrieveParams = PaymentRetrieveParams.none(), ): CompletableFuture> = retrieve(paymentToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: PaymentRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: PaymentRetrieveParams): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( paymentToken: String, requestOptions: RequestOptions, @@ -271,19 +271,19 @@ interface PaymentServiceAsync { fun list(): CompletableFuture> = list(PaymentListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: PaymentListParams = PaymentListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: PaymentListParams = PaymentListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -296,7 +296,7 @@ interface PaymentServiceAsync { fun retry(paymentToken: String): CompletableFuture> = retry(paymentToken, PaymentRetryParams.none()) - /** @see [retry] */ + /** @see retry */ fun retry( paymentToken: String, params: PaymentRetryParams = PaymentRetryParams.none(), @@ -304,26 +304,26 @@ interface PaymentServiceAsync { ): CompletableFuture> = retry(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [retry] */ + /** @see retry */ fun retry( paymentToken: String, params: PaymentRetryParams = PaymentRetryParams.none(), ): CompletableFuture> = retry(paymentToken, params, RequestOptions.none()) - /** @see [retry] */ + /** @see retry */ fun retry( params: PaymentRetryParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retry] */ + /** @see retry */ fun retry( params: PaymentRetryParams ): CompletableFuture> = retry(params, RequestOptions.none()) - /** @see [retry] */ + /** @see retry */ fun retry( paymentToken: String, requestOptions: RequestOptions, @@ -340,7 +340,7 @@ interface PaymentServiceAsync { ): CompletableFuture> = simulateAction(paymentToken, params, RequestOptions.none()) - /** @see [simulateAction] */ + /** @see simulateAction */ fun simulateAction( paymentToken: String, params: PaymentSimulateActionParams, @@ -348,13 +348,13 @@ interface PaymentServiceAsync { ): CompletableFuture> = simulateAction(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [simulateAction] */ + /** @see simulateAction */ fun simulateAction( params: PaymentSimulateActionParams ): CompletableFuture> = simulateAction(params, RequestOptions.none()) - /** @see [simulateAction] */ + /** @see simulateAction */ fun simulateAction( params: PaymentSimulateActionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -369,7 +369,7 @@ interface PaymentServiceAsync { ): CompletableFuture> = simulateReceipt(params, RequestOptions.none()) - /** @see [simulateReceipt] */ + /** @see simulateReceipt */ fun simulateReceipt( params: PaymentSimulateReceiptParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -384,7 +384,7 @@ interface PaymentServiceAsync { ): CompletableFuture> = simulateRelease(params, RequestOptions.none()) - /** @see [simulateRelease] */ + /** @see simulateRelease */ fun simulateRelease( params: PaymentSimulateReleaseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -399,7 +399,7 @@ interface PaymentServiceAsync { ): CompletableFuture> = simulateReturn(params, RequestOptions.none()) - /** @see [simulateReturn] */ + /** @see simulateReturn */ fun simulateReturn( params: PaymentSimulateReturnParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ResponderEndpointServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ResponderEndpointServiceAsync.kt index da200241c..7ea4a494d 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ResponderEndpointServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/ResponderEndpointServiceAsync.kt @@ -32,18 +32,18 @@ interface ResponderEndpointServiceAsync { fun create(): CompletableFuture = create(ResponderEndpointCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( params: ResponderEndpointCreateParams = ResponderEndpointCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [create] */ + /** @see create */ fun create( params: ResponderEndpointCreateParams = ResponderEndpointCreateParams.none() ): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create(requestOptions: RequestOptions): CompletableFuture = create(ResponderEndpointCreateParams.none(), requestOptions) @@ -51,7 +51,7 @@ interface ResponderEndpointServiceAsync { fun delete(params: ResponderEndpointDeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: ResponderEndpointDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -62,7 +62,7 @@ interface ResponderEndpointServiceAsync { params: ResponderEndpointCheckStatusParams ): CompletableFuture = checkStatus(params, RequestOptions.none()) - /** @see [checkStatus] */ + /** @see checkStatus */ fun checkStatus( params: ResponderEndpointCheckStatusParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -90,19 +90,19 @@ interface ResponderEndpointServiceAsync { fun create(): CompletableFuture> = create(ResponderEndpointCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( params: ResponderEndpointCreateParams = ResponderEndpointCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [create] */ + /** @see create */ fun create( params: ResponderEndpointCreateParams = ResponderEndpointCreateParams.none() ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( requestOptions: RequestOptions ): CompletableFuture> = @@ -115,7 +115,7 @@ interface ResponderEndpointServiceAsync { fun delete(params: ResponderEndpointDeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: ResponderEndpointDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -130,7 +130,7 @@ interface ResponderEndpointServiceAsync { ): CompletableFuture> = checkStatus(params, RequestOptions.none()) - /** @see [checkStatus] */ + /** @see checkStatus */ fun checkStatus( params: ResponderEndpointCheckStatusParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TokenizationDecisioningServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TokenizationDecisioningServiceAsync.kt index aafeb7447..e5a5f5a91 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TokenizationDecisioningServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TokenizationDecisioningServiceAsync.kt @@ -36,20 +36,20 @@ interface TokenizationDecisioningServiceAsync { fun retrieveSecret(): CompletableFuture = retrieveSecret(TokenizationDecisioningRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: TokenizationDecisioningRetrieveSecretParams = TokenizationDecisioningRetrieveSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: TokenizationDecisioningRetrieveSecretParams = TokenizationDecisioningRetrieveSecretParams.none() ): CompletableFuture = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret(requestOptions: RequestOptions): CompletableFuture = retrieveSecret(TokenizationDecisioningRetrieveSecretParams.none(), requestOptions) @@ -60,21 +60,21 @@ interface TokenizationDecisioningServiceAsync { fun rotateSecret(): CompletableFuture = rotateSecret(TokenizationDecisioningRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: TokenizationDecisioningRotateSecretParams = TokenizationDecisioningRotateSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: TokenizationDecisioningRotateSecretParams = TokenizationDecisioningRotateSecretParams.none() ): CompletableFuture = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( requestOptions: RequestOptions ): CompletableFuture = @@ -102,21 +102,21 @@ interface TokenizationDecisioningServiceAsync { fun retrieveSecret(): CompletableFuture> = retrieveSecret(TokenizationDecisioningRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: TokenizationDecisioningRetrieveSecretParams = TokenizationDecisioningRetrieveSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: TokenizationDecisioningRetrieveSecretParams = TokenizationDecisioningRetrieveSecretParams.none() ): CompletableFuture> = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( requestOptions: RequestOptions ): CompletableFuture> = @@ -130,21 +130,21 @@ interface TokenizationDecisioningServiceAsync { CompletableFuture> = rotateSecret(TokenizationDecisioningRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: TokenizationDecisioningRotateSecretParams = TokenizationDecisioningRotateSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: TokenizationDecisioningRotateSecretParams = TokenizationDecisioningRotateSecretParams.none() ): CompletableFuture> = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( requestOptions: RequestOptions ): CompletableFuture> = diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TokenizationServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TokenizationServiceAsync.kt index 17fbb4aee..c21662096 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TokenizationServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TokenizationServiceAsync.kt @@ -40,7 +40,7 @@ interface TokenizationServiceAsync { fun retrieve(tokenizationToken: String): CompletableFuture = retrieve(tokenizationToken, TokenizationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( tokenizationToken: String, params: TokenizationRetrieveParams = TokenizationRetrieveParams.none(), @@ -48,25 +48,25 @@ interface TokenizationServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( tokenizationToken: String, params: TokenizationRetrieveParams = TokenizationRetrieveParams.none(), ): CompletableFuture = retrieve(tokenizationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TokenizationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TokenizationRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( tokenizationToken: String, requestOptions: RequestOptions, @@ -76,18 +76,18 @@ interface TokenizationServiceAsync { /** List card tokenizations */ fun list(): CompletableFuture = list(TokenizationListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: TokenizationListParams = TokenizationListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: TokenizationListParams = TokenizationListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(TokenizationListParams.none(), requestOptions) @@ -103,7 +103,7 @@ interface TokenizationServiceAsync { fun activate(tokenizationToken: String): CompletableFuture = activate(tokenizationToken, TokenizationActivateParams.none()) - /** @see [activate] */ + /** @see activate */ fun activate( tokenizationToken: String, params: TokenizationActivateParams = TokenizationActivateParams.none(), @@ -111,23 +111,23 @@ interface TokenizationServiceAsync { ): CompletableFuture = activate(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [activate] */ + /** @see activate */ fun activate( tokenizationToken: String, params: TokenizationActivateParams = TokenizationActivateParams.none(), ): CompletableFuture = activate(tokenizationToken, params, RequestOptions.none()) - /** @see [activate] */ + /** @see activate */ fun activate( params: TokenizationActivateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [activate] */ + /** @see activate */ fun activate(params: TokenizationActivateParams): CompletableFuture = activate(params, RequestOptions.none()) - /** @see [activate] */ + /** @see activate */ fun activate( tokenizationToken: String, requestOptions: RequestOptions, @@ -147,7 +147,7 @@ interface TokenizationServiceAsync { fun deactivate(tokenizationToken: String): CompletableFuture = deactivate(tokenizationToken, TokenizationDeactivateParams.none()) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( tokenizationToken: String, params: TokenizationDeactivateParams = TokenizationDeactivateParams.none(), @@ -155,23 +155,23 @@ interface TokenizationServiceAsync { ): CompletableFuture = deactivate(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( tokenizationToken: String, params: TokenizationDeactivateParams = TokenizationDeactivateParams.none(), ): CompletableFuture = deactivate(tokenizationToken, params, RequestOptions.none()) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( params: TokenizationDeactivateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate(params: TokenizationDeactivateParams): CompletableFuture = deactivate(params, RequestOptions.none()) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( tokenizationToken: String, requestOptions: RequestOptions, @@ -190,7 +190,7 @@ interface TokenizationServiceAsync { fun pause(tokenizationToken: String): CompletableFuture = pause(tokenizationToken, TokenizationPauseParams.none()) - /** @see [pause] */ + /** @see pause */ fun pause( tokenizationToken: String, params: TokenizationPauseParams = TokenizationPauseParams.none(), @@ -198,23 +198,23 @@ interface TokenizationServiceAsync { ): CompletableFuture = pause(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [pause] */ + /** @see pause */ fun pause( tokenizationToken: String, params: TokenizationPauseParams = TokenizationPauseParams.none(), ): CompletableFuture = pause(tokenizationToken, params, RequestOptions.none()) - /** @see [pause] */ + /** @see pause */ fun pause( params: TokenizationPauseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [pause] */ + /** @see pause */ fun pause(params: TokenizationPauseParams): CompletableFuture = pause(params, RequestOptions.none()) - /** @see [pause] */ + /** @see pause */ fun pause(tokenizationToken: String, requestOptions: RequestOptions): CompletableFuture = pause(tokenizationToken, TokenizationPauseParams.none(), requestOptions) @@ -232,7 +232,7 @@ interface TokenizationServiceAsync { fun resendActivationCode(tokenizationToken: String): CompletableFuture = resendActivationCode(tokenizationToken, TokenizationResendActivationCodeParams.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( tokenizationToken: String, params: TokenizationResendActivationCodeParams = @@ -244,7 +244,7 @@ interface TokenizationServiceAsync { requestOptions, ) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( tokenizationToken: String, params: TokenizationResendActivationCodeParams = @@ -252,18 +252,18 @@ interface TokenizationServiceAsync { ): CompletableFuture = resendActivationCode(tokenizationToken, params, RequestOptions.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( params: TokenizationResendActivationCodeParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( params: TokenizationResendActivationCodeParams ): CompletableFuture = resendActivationCode(params, RequestOptions.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( tokenizationToken: String, requestOptions: RequestOptions, @@ -282,7 +282,7 @@ interface TokenizationServiceAsync { params: TokenizationSimulateParams ): CompletableFuture = simulate(params, RequestOptions.none()) - /** @see [simulate] */ + /** @see simulate */ fun simulate( params: TokenizationSimulateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -299,7 +299,7 @@ interface TokenizationServiceAsync { fun unpause(tokenizationToken: String): CompletableFuture = unpause(tokenizationToken, TokenizationUnpauseParams.none()) - /** @see [unpause] */ + /** @see unpause */ fun unpause( tokenizationToken: String, params: TokenizationUnpauseParams = TokenizationUnpauseParams.none(), @@ -307,23 +307,23 @@ interface TokenizationServiceAsync { ): CompletableFuture = unpause(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [unpause] */ + /** @see unpause */ fun unpause( tokenizationToken: String, params: TokenizationUnpauseParams = TokenizationUnpauseParams.none(), ): CompletableFuture = unpause(tokenizationToken, params, RequestOptions.none()) - /** @see [unpause] */ + /** @see unpause */ fun unpause( params: TokenizationUnpauseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [unpause] */ + /** @see unpause */ fun unpause(params: TokenizationUnpauseParams): CompletableFuture = unpause(params, RequestOptions.none()) - /** @see [unpause] */ + /** @see unpause */ fun unpause( tokenizationToken: String, requestOptions: RequestOptions, @@ -344,7 +344,7 @@ interface TokenizationServiceAsync { ): CompletableFuture = updateDigitalCardArt(tokenizationToken, TokenizationUpdateDigitalCardArtParams.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( tokenizationToken: String, params: TokenizationUpdateDigitalCardArtParams = @@ -356,7 +356,7 @@ interface TokenizationServiceAsync { requestOptions, ) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( tokenizationToken: String, params: TokenizationUpdateDigitalCardArtParams = @@ -364,19 +364,19 @@ interface TokenizationServiceAsync { ): CompletableFuture = updateDigitalCardArt(tokenizationToken, params, RequestOptions.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( params: TokenizationUpdateDigitalCardArtParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( params: TokenizationUpdateDigitalCardArtParams ): CompletableFuture = updateDigitalCardArt(params, RequestOptions.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( tokenizationToken: String, requestOptions: RequestOptions, @@ -411,7 +411,7 @@ interface TokenizationServiceAsync { ): CompletableFuture> = retrieve(tokenizationToken, TokenizationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( tokenizationToken: String, params: TokenizationRetrieveParams = TokenizationRetrieveParams.none(), @@ -422,26 +422,26 @@ interface TokenizationServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( tokenizationToken: String, params: TokenizationRetrieveParams = TokenizationRetrieveParams.none(), ): CompletableFuture> = retrieve(tokenizationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TokenizationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TokenizationRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( tokenizationToken: String, requestOptions: RequestOptions, @@ -455,19 +455,19 @@ interface TokenizationServiceAsync { fun list(): CompletableFuture> = list(TokenizationListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: TokenizationListParams = TokenizationListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: TokenizationListParams = TokenizationListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -480,7 +480,7 @@ interface TokenizationServiceAsync { fun activate(tokenizationToken: String): CompletableFuture = activate(tokenizationToken, TokenizationActivateParams.none()) - /** @see [activate] */ + /** @see activate */ fun activate( tokenizationToken: String, params: TokenizationActivateParams = TokenizationActivateParams.none(), @@ -491,24 +491,24 @@ interface TokenizationServiceAsync { requestOptions, ) - /** @see [activate] */ + /** @see activate */ fun activate( tokenizationToken: String, params: TokenizationActivateParams = TokenizationActivateParams.none(), ): CompletableFuture = activate(tokenizationToken, params, RequestOptions.none()) - /** @see [activate] */ + /** @see activate */ fun activate( params: TokenizationActivateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [activate] */ + /** @see activate */ fun activate(params: TokenizationActivateParams): CompletableFuture = activate(params, RequestOptions.none()) - /** @see [activate] */ + /** @see activate */ fun activate( tokenizationToken: String, requestOptions: RequestOptions, @@ -522,7 +522,7 @@ interface TokenizationServiceAsync { fun deactivate(tokenizationToken: String): CompletableFuture = deactivate(tokenizationToken, TokenizationDeactivateParams.none()) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( tokenizationToken: String, params: TokenizationDeactivateParams = TokenizationDeactivateParams.none(), @@ -533,24 +533,24 @@ interface TokenizationServiceAsync { requestOptions, ) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( tokenizationToken: String, params: TokenizationDeactivateParams = TokenizationDeactivateParams.none(), ): CompletableFuture = deactivate(tokenizationToken, params, RequestOptions.none()) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( params: TokenizationDeactivateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate(params: TokenizationDeactivateParams): CompletableFuture = deactivate(params, RequestOptions.none()) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( tokenizationToken: String, requestOptions: RequestOptions, @@ -564,7 +564,7 @@ interface TokenizationServiceAsync { fun pause(tokenizationToken: String): CompletableFuture = pause(tokenizationToken, TokenizationPauseParams.none()) - /** @see [pause] */ + /** @see pause */ fun pause( tokenizationToken: String, params: TokenizationPauseParams = TokenizationPauseParams.none(), @@ -572,23 +572,23 @@ interface TokenizationServiceAsync { ): CompletableFuture = pause(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [pause] */ + /** @see pause */ fun pause( tokenizationToken: String, params: TokenizationPauseParams = TokenizationPauseParams.none(), ): CompletableFuture = pause(tokenizationToken, params, RequestOptions.none()) - /** @see [pause] */ + /** @see pause */ fun pause( params: TokenizationPauseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [pause] */ + /** @see pause */ fun pause(params: TokenizationPauseParams): CompletableFuture = pause(params, RequestOptions.none()) - /** @see [pause] */ + /** @see pause */ fun pause( tokenizationToken: String, requestOptions: RequestOptions, @@ -603,7 +603,7 @@ interface TokenizationServiceAsync { fun resendActivationCode(tokenizationToken: String): CompletableFuture = resendActivationCode(tokenizationToken, TokenizationResendActivationCodeParams.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( tokenizationToken: String, params: TokenizationResendActivationCodeParams = @@ -615,7 +615,7 @@ interface TokenizationServiceAsync { requestOptions, ) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( tokenizationToken: String, params: TokenizationResendActivationCodeParams = @@ -623,18 +623,18 @@ interface TokenizationServiceAsync { ): CompletableFuture = resendActivationCode(tokenizationToken, params, RequestOptions.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( params: TokenizationResendActivationCodeParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( params: TokenizationResendActivationCodeParams ): CompletableFuture = resendActivationCode(params, RequestOptions.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( tokenizationToken: String, requestOptions: RequestOptions, @@ -654,7 +654,7 @@ interface TokenizationServiceAsync { ): CompletableFuture> = simulate(params, RequestOptions.none()) - /** @see [simulate] */ + /** @see simulate */ fun simulate( params: TokenizationSimulateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -667,7 +667,7 @@ interface TokenizationServiceAsync { fun unpause(tokenizationToken: String): CompletableFuture = unpause(tokenizationToken, TokenizationUnpauseParams.none()) - /** @see [unpause] */ + /** @see unpause */ fun unpause( tokenizationToken: String, params: TokenizationUnpauseParams = TokenizationUnpauseParams.none(), @@ -675,24 +675,24 @@ interface TokenizationServiceAsync { ): CompletableFuture = unpause(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [unpause] */ + /** @see unpause */ fun unpause( tokenizationToken: String, params: TokenizationUnpauseParams = TokenizationUnpauseParams.none(), ): CompletableFuture = unpause(tokenizationToken, params, RequestOptions.none()) - /** @see [unpause] */ + /** @see unpause */ fun unpause( params: TokenizationUnpauseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [unpause] */ + /** @see unpause */ fun unpause(params: TokenizationUnpauseParams): CompletableFuture = unpause(params, RequestOptions.none()) - /** @see [unpause] */ + /** @see unpause */ fun unpause( tokenizationToken: String, requestOptions: RequestOptions, @@ -709,7 +709,7 @@ interface TokenizationServiceAsync { ): CompletableFuture> = updateDigitalCardArt(tokenizationToken, TokenizationUpdateDigitalCardArtParams.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( tokenizationToken: String, params: TokenizationUpdateDigitalCardArtParams = @@ -721,7 +721,7 @@ interface TokenizationServiceAsync { requestOptions, ) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( tokenizationToken: String, params: TokenizationUpdateDigitalCardArtParams = @@ -729,19 +729,19 @@ interface TokenizationServiceAsync { ): CompletableFuture> = updateDigitalCardArt(tokenizationToken, params, RequestOptions.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( params: TokenizationUpdateDigitalCardArtParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( params: TokenizationUpdateDigitalCardArtParams ): CompletableFuture> = updateDigitalCardArt(params, RequestOptions.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( tokenizationToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TransactionServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TransactionServiceAsync.kt index 36cd3343e..965f06018 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TransactionServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TransactionServiceAsync.kt @@ -55,7 +55,7 @@ interface TransactionServiceAsync { fun retrieve(transactionToken: String): CompletableFuture = retrieve(transactionToken, TransactionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionRetrieveParams = TransactionRetrieveParams.none(), @@ -63,23 +63,23 @@ interface TransactionServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionRetrieveParams = TransactionRetrieveParams.none(), ): CompletableFuture = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: TransactionRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, requestOptions: RequestOptions, @@ -92,18 +92,18 @@ interface TransactionServiceAsync { */ fun list(): CompletableFuture = list(TransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: TransactionListParams = TransactionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: TransactionListParams = TransactionListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(TransactionListParams.none(), requestOptions) @@ -111,7 +111,7 @@ interface TransactionServiceAsync { fun expireAuthorization(transactionToken: String): CompletableFuture = expireAuthorization(transactionToken, TransactionExpireAuthorizationParams.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( transactionToken: String, params: TransactionExpireAuthorizationParams = TransactionExpireAuthorizationParams.none(), @@ -122,25 +122,25 @@ interface TransactionServiceAsync { requestOptions, ) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( transactionToken: String, params: TransactionExpireAuthorizationParams = TransactionExpireAuthorizationParams.none(), ): CompletableFuture = expireAuthorization(transactionToken, params, RequestOptions.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( params: TransactionExpireAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( params: TransactionExpireAuthorizationParams ): CompletableFuture = expireAuthorization(params, RequestOptions.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( transactionToken: String, requestOptions: RequestOptions, @@ -164,7 +164,7 @@ interface TransactionServiceAsync { ): CompletableFuture = simulateAuthorization(params, RequestOptions.none()) - /** @see [simulateAuthorization] */ + /** @see simulateAuthorization */ fun simulateAuthorization( params: TransactionSimulateAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -179,7 +179,7 @@ interface TransactionServiceAsync { ): CompletableFuture = simulateAuthorizationAdvice(params, RequestOptions.none()) - /** @see [simulateAuthorizationAdvice] */ + /** @see simulateAuthorizationAdvice */ fun simulateAuthorizationAdvice( params: TransactionSimulateAuthorizationAdviceParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -197,7 +197,7 @@ interface TransactionServiceAsync { ): CompletableFuture = simulateClearing(params, RequestOptions.none()) - /** @see [simulateClearing] */ + /** @see simulateClearing */ fun simulateClearing( params: TransactionSimulateClearingParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -212,7 +212,7 @@ interface TransactionServiceAsync { ): CompletableFuture = simulateCreditAuthorization(params, RequestOptions.none()) - /** @see [simulateCreditAuthorization] */ + /** @see simulateCreditAuthorization */ fun simulateCreditAuthorization( params: TransactionSimulateCreditAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -227,7 +227,7 @@ interface TransactionServiceAsync { ): CompletableFuture = simulateReturn(params, RequestOptions.none()) - /** @see [simulateReturn] */ + /** @see simulateReturn */ fun simulateReturn( params: TransactionSimulateReturnParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -242,7 +242,7 @@ interface TransactionServiceAsync { ): CompletableFuture = simulateReturnReversal(params, RequestOptions.none()) - /** @see [simulateReturnReversal] */ + /** @see simulateReturnReversal */ fun simulateReturnReversal( params: TransactionSimulateReturnReversalParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -259,7 +259,7 @@ interface TransactionServiceAsync { ): CompletableFuture = simulateVoid(params, RequestOptions.none()) - /** @see [simulateVoid] */ + /** @see simulateVoid */ fun simulateVoid( params: TransactionSimulateVoidParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -291,7 +291,7 @@ interface TransactionServiceAsync { fun retrieve(transactionToken: String): CompletableFuture> = retrieve(transactionToken, TransactionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionRetrieveParams = TransactionRetrieveParams.none(), @@ -299,25 +299,25 @@ interface TransactionServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionRetrieveParams = TransactionRetrieveParams.none(), ): CompletableFuture> = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, requestOptions: RequestOptions, @@ -331,19 +331,19 @@ interface TransactionServiceAsync { fun list(): CompletableFuture> = list(TransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: TransactionListParams = TransactionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: TransactionListParams = TransactionListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -357,7 +357,7 @@ interface TransactionServiceAsync { fun expireAuthorization(transactionToken: String): CompletableFuture = expireAuthorization(transactionToken, TransactionExpireAuthorizationParams.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( transactionToken: String, params: TransactionExpireAuthorizationParams = @@ -369,7 +369,7 @@ interface TransactionServiceAsync { requestOptions, ) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( transactionToken: String, params: TransactionExpireAuthorizationParams = @@ -377,18 +377,18 @@ interface TransactionServiceAsync { ): CompletableFuture = expireAuthorization(transactionToken, params, RequestOptions.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( params: TransactionExpireAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( params: TransactionExpireAuthorizationParams ): CompletableFuture = expireAuthorization(params, RequestOptions.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( transactionToken: String, requestOptions: RequestOptions, @@ -408,7 +408,7 @@ interface TransactionServiceAsync { ): CompletableFuture> = simulateAuthorization(params, RequestOptions.none()) - /** @see [simulateAuthorization] */ + /** @see simulateAuthorization */ fun simulateAuthorization( params: TransactionSimulateAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -423,7 +423,7 @@ interface TransactionServiceAsync { ): CompletableFuture> = simulateAuthorizationAdvice(params, RequestOptions.none()) - /** @see [simulateAuthorizationAdvice] */ + /** @see simulateAuthorizationAdvice */ fun simulateAuthorizationAdvice( params: TransactionSimulateAuthorizationAdviceParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -438,7 +438,7 @@ interface TransactionServiceAsync { ): CompletableFuture> = simulateClearing(params, RequestOptions.none()) - /** @see [simulateClearing] */ + /** @see simulateClearing */ fun simulateClearing( params: TransactionSimulateClearingParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -453,7 +453,7 @@ interface TransactionServiceAsync { ): CompletableFuture> = simulateCreditAuthorization(params, RequestOptions.none()) - /** @see [simulateCreditAuthorization] */ + /** @see simulateCreditAuthorization */ fun simulateCreditAuthorization( params: TransactionSimulateCreditAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -468,7 +468,7 @@ interface TransactionServiceAsync { ): CompletableFuture> = simulateReturn(params, RequestOptions.none()) - /** @see [simulateReturn] */ + /** @see simulateReturn */ fun simulateReturn( params: TransactionSimulateReturnParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -483,7 +483,7 @@ interface TransactionServiceAsync { ): CompletableFuture> = simulateReturnReversal(params, RequestOptions.none()) - /** @see [simulateReturnReversal] */ + /** @see simulateReturnReversal */ fun simulateReturnReversal( params: TransactionSimulateReturnReversalParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -498,7 +498,7 @@ interface TransactionServiceAsync { ): CompletableFuture> = simulateVoid(params, RequestOptions.none()) - /** @see [simulateVoid] */ + /** @see simulateVoid */ fun simulateVoid( params: TransactionSimulateVoidParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TransferServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TransferServiceAsync.kt index 6210a28cf..6a096cf50 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TransferServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/TransferServiceAsync.kt @@ -29,7 +29,7 @@ interface TransferServiceAsync { fun create(params: TransferCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @Deprecated("deprecated") fun create( params: TransferCreateParams, @@ -58,7 +58,7 @@ interface TransferServiceAsync { fun create(params: TransferCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @Deprecated("deprecated") fun create( params: TransferCreateParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/authRules/V2ServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/authRules/V2ServiceAsync.kt index d880925ea..24021a15c 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/authRules/V2ServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/authRules/V2ServiceAsync.kt @@ -49,7 +49,7 @@ interface V2ServiceAsync { fun create(params: AuthRuleV2CreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: AuthRuleV2CreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -59,7 +59,7 @@ interface V2ServiceAsync { fun retrieve(authRuleToken: String): CompletableFuture = retrieve(authRuleToken, AuthRuleV2RetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleToken: String, params: AuthRuleV2RetrieveParams = AuthRuleV2RetrieveParams.none(), @@ -67,24 +67,24 @@ interface V2ServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleToken: String, params: AuthRuleV2RetrieveParams = AuthRuleV2RetrieveParams.none(), ): CompletableFuture = retrieve(authRuleToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AuthRuleV2RetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: AuthRuleV2RetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleToken: String, requestOptions: RequestOptions, @@ -102,7 +102,7 @@ interface V2ServiceAsync { params: AuthRuleV2UpdateParams, ): CompletableFuture = update(authRuleToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( authRuleToken: String, params: AuthRuleV2UpdateParams, @@ -110,11 +110,11 @@ interface V2ServiceAsync { ): CompletableFuture = update(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update(params: AuthRuleV2UpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: AuthRuleV2UpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -123,18 +123,18 @@ interface V2ServiceAsync { /** Lists V2 Auth rules */ fun list(): CompletableFuture = list(AuthRuleV2ListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: AuthRuleV2ListParams = AuthRuleV2ListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: AuthRuleV2ListParams = AuthRuleV2ListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(AuthRuleV2ListParams.none(), requestOptions) @@ -142,7 +142,7 @@ interface V2ServiceAsync { fun delete(authRuleToken: String): CompletableFuture = delete(authRuleToken, AuthRuleV2DeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( authRuleToken: String, params: AuthRuleV2DeleteParams = AuthRuleV2DeleteParams.none(), @@ -150,23 +150,23 @@ interface V2ServiceAsync { ): CompletableFuture = delete(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete( authRuleToken: String, params: AuthRuleV2DeleteParams = AuthRuleV2DeleteParams.none(), ): CompletableFuture = delete(authRuleToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: AuthRuleV2DeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [delete] */ + /** @see delete */ fun delete(params: AuthRuleV2DeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete(authRuleToken: String, requestOptions: RequestOptions): CompletableFuture = delete(authRuleToken, AuthRuleV2DeleteParams.none(), requestOptions) @@ -181,7 +181,7 @@ interface V2ServiceAsync { params: AuthRuleV2ApplyParams, ): CompletableFuture = apply(authRuleToken, params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") fun apply( authRuleToken: String, @@ -190,12 +190,12 @@ interface V2ServiceAsync { ): CompletableFuture = apply(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") fun apply(params: AuthRuleV2ApplyParams): CompletableFuture = apply(params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") fun apply( params: AuthRuleV2ApplyParams, @@ -211,7 +211,7 @@ interface V2ServiceAsync { fun draft(authRuleToken: String): CompletableFuture = draft(authRuleToken, AuthRuleV2DraftParams.none()) - /** @see [draft] */ + /** @see draft */ fun draft( authRuleToken: String, params: AuthRuleV2DraftParams = AuthRuleV2DraftParams.none(), @@ -219,23 +219,23 @@ interface V2ServiceAsync { ): CompletableFuture = draft(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [draft] */ + /** @see draft */ fun draft( authRuleToken: String, params: AuthRuleV2DraftParams = AuthRuleV2DraftParams.none(), ): CompletableFuture = draft(authRuleToken, params, RequestOptions.none()) - /** @see [draft] */ + /** @see draft */ fun draft( params: AuthRuleV2DraftParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [draft] */ + /** @see draft */ fun draft(params: AuthRuleV2DraftParams): CompletableFuture = draft(params, RequestOptions.none()) - /** @see [draft] */ + /** @see draft */ fun draft( authRuleToken: String, requestOptions: RequestOptions, @@ -249,7 +249,7 @@ interface V2ServiceAsync { fun promote(authRuleToken: String): CompletableFuture = promote(authRuleToken, AuthRuleV2PromoteParams.none()) - /** @see [promote] */ + /** @see promote */ fun promote( authRuleToken: String, params: AuthRuleV2PromoteParams = AuthRuleV2PromoteParams.none(), @@ -257,23 +257,23 @@ interface V2ServiceAsync { ): CompletableFuture = promote(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [promote] */ + /** @see promote */ fun promote( authRuleToken: String, params: AuthRuleV2PromoteParams = AuthRuleV2PromoteParams.none(), ): CompletableFuture = promote(authRuleToken, params, RequestOptions.none()) - /** @see [promote] */ + /** @see promote */ fun promote( params: AuthRuleV2PromoteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [promote] */ + /** @see promote */ fun promote(params: AuthRuleV2PromoteParams): CompletableFuture = promote(params, RequestOptions.none()) - /** @see [promote] */ + /** @see promote */ fun promote( authRuleToken: String, requestOptions: RequestOptions, @@ -330,7 +330,7 @@ interface V2ServiceAsync { fun report(authRuleToken: String): CompletableFuture = report(authRuleToken, AuthRuleV2ReportParams.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( authRuleToken: String, @@ -339,26 +339,26 @@ interface V2ServiceAsync { ): CompletableFuture = report(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( authRuleToken: String, params: AuthRuleV2ReportParams = AuthRuleV2ReportParams.none(), ): CompletableFuture = report(authRuleToken, params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( params: AuthRuleV2ReportParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report(params: AuthRuleV2ReportParams): CompletableFuture = report(params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( authRuleToken: String, @@ -385,7 +385,7 @@ interface V2ServiceAsync { ): CompletableFuture = retrieveReport(authRuleToken, params, RequestOptions.none()) - /** @see [retrieveReport] */ + /** @see retrieveReport */ fun retrieveReport( authRuleToken: String, params: AuthRuleV2RetrieveReportParams, @@ -393,12 +393,12 @@ interface V2ServiceAsync { ): CompletableFuture = retrieveReport(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [retrieveReport] */ + /** @see retrieveReport */ fun retrieveReport( params: AuthRuleV2RetrieveReportParams ): CompletableFuture = retrieveReport(params, RequestOptions.none()) - /** @see [retrieveReport] */ + /** @see retrieveReport */ fun retrieveReport( params: AuthRuleV2RetrieveReportParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -425,7 +425,7 @@ interface V2ServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: AuthRuleV2CreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -440,7 +440,7 @@ interface V2ServiceAsync { ): CompletableFuture> = retrieve(authRuleToken, AuthRuleV2RetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleToken: String, params: AuthRuleV2RetrieveParams = AuthRuleV2RetrieveParams.none(), @@ -448,26 +448,26 @@ interface V2ServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleToken: String, params: AuthRuleV2RetrieveParams = AuthRuleV2RetrieveParams.none(), ): CompletableFuture> = retrieve(authRuleToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AuthRuleV2RetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AuthRuleV2RetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleToken: String, requestOptions: RequestOptions, @@ -484,7 +484,7 @@ interface V2ServiceAsync { ): CompletableFuture> = update(authRuleToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( authRuleToken: String, params: AuthRuleV2UpdateParams, @@ -492,13 +492,13 @@ interface V2ServiceAsync { ): CompletableFuture> = update(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( params: AuthRuleV2UpdateParams ): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: AuthRuleV2UpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -511,19 +511,19 @@ interface V2ServiceAsync { fun list(): CompletableFuture> = list(AuthRuleV2ListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: AuthRuleV2ListParams = AuthRuleV2ListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: AuthRuleV2ListParams = AuthRuleV2ListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -536,7 +536,7 @@ interface V2ServiceAsync { fun delete(authRuleToken: String): CompletableFuture = delete(authRuleToken, AuthRuleV2DeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( authRuleToken: String, params: AuthRuleV2DeleteParams = AuthRuleV2DeleteParams.none(), @@ -544,23 +544,23 @@ interface V2ServiceAsync { ): CompletableFuture = delete(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete( authRuleToken: String, params: AuthRuleV2DeleteParams = AuthRuleV2DeleteParams.none(), ): CompletableFuture = delete(authRuleToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: AuthRuleV2DeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [delete] */ + /** @see delete */ fun delete(params: AuthRuleV2DeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( authRuleToken: String, requestOptions: RequestOptions, @@ -578,7 +578,7 @@ interface V2ServiceAsync { ): CompletableFuture> = apply(authRuleToken, params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") fun apply( authRuleToken: String, @@ -587,14 +587,14 @@ interface V2ServiceAsync { ): CompletableFuture> = apply(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") fun apply( params: AuthRuleV2ApplyParams ): CompletableFuture> = apply(params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") fun apply( params: AuthRuleV2ApplyParams, @@ -608,7 +608,7 @@ interface V2ServiceAsync { fun draft(authRuleToken: String): CompletableFuture> = draft(authRuleToken, AuthRuleV2DraftParams.none()) - /** @see [draft] */ + /** @see draft */ fun draft( authRuleToken: String, params: AuthRuleV2DraftParams = AuthRuleV2DraftParams.none(), @@ -616,26 +616,26 @@ interface V2ServiceAsync { ): CompletableFuture> = draft(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [draft] */ + /** @see draft */ fun draft( authRuleToken: String, params: AuthRuleV2DraftParams = AuthRuleV2DraftParams.none(), ): CompletableFuture> = draft(authRuleToken, params, RequestOptions.none()) - /** @see [draft] */ + /** @see draft */ fun draft( params: AuthRuleV2DraftParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [draft] */ + /** @see draft */ fun draft( params: AuthRuleV2DraftParams ): CompletableFuture> = draft(params, RequestOptions.none()) - /** @see [draft] */ + /** @see draft */ fun draft( authRuleToken: String, requestOptions: RequestOptions, @@ -649,7 +649,7 @@ interface V2ServiceAsync { fun promote(authRuleToken: String): CompletableFuture> = promote(authRuleToken, AuthRuleV2PromoteParams.none()) - /** @see [promote] */ + /** @see promote */ fun promote( authRuleToken: String, params: AuthRuleV2PromoteParams = AuthRuleV2PromoteParams.none(), @@ -657,26 +657,26 @@ interface V2ServiceAsync { ): CompletableFuture> = promote(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [promote] */ + /** @see promote */ fun promote( authRuleToken: String, params: AuthRuleV2PromoteParams = AuthRuleV2PromoteParams.none(), ): CompletableFuture> = promote(authRuleToken, params, RequestOptions.none()) - /** @see [promote] */ + /** @see promote */ fun promote( params: AuthRuleV2PromoteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [promote] */ + /** @see promote */ fun promote( params: AuthRuleV2PromoteParams ): CompletableFuture> = promote(params, RequestOptions.none()) - /** @see [promote] */ + /** @see promote */ fun promote( authRuleToken: String, requestOptions: RequestOptions, @@ -691,7 +691,7 @@ interface V2ServiceAsync { fun report(authRuleToken: String): CompletableFuture> = report(authRuleToken, AuthRuleV2ReportParams.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( authRuleToken: String, @@ -700,7 +700,7 @@ interface V2ServiceAsync { ): CompletableFuture> = report(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( authRuleToken: String, @@ -708,21 +708,21 @@ interface V2ServiceAsync { ): CompletableFuture> = report(authRuleToken, params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( params: AuthRuleV2ReportParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( params: AuthRuleV2ReportParams ): CompletableFuture> = report(params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( authRuleToken: String, @@ -740,7 +740,7 @@ interface V2ServiceAsync { ): CompletableFuture> = retrieveReport(authRuleToken, params, RequestOptions.none()) - /** @see [retrieveReport] */ + /** @see retrieveReport */ fun retrieveReport( authRuleToken: String, params: AuthRuleV2RetrieveReportParams, @@ -748,13 +748,13 @@ interface V2ServiceAsync { ): CompletableFuture> = retrieveReport(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [retrieveReport] */ + /** @see retrieveReport */ fun retrieveReport( params: AuthRuleV2RetrieveReportParams ): CompletableFuture> = retrieveReport(params, RequestOptions.none()) - /** @see [retrieveReport] */ + /** @see retrieveReport */ fun retrieveReport( params: AuthRuleV2RetrieveReportParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/authRules/v2/BacktestServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/authRules/v2/BacktestServiceAsync.kt index 45d9e9fec..3dad5de19 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/authRules/v2/BacktestServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/authRules/v2/BacktestServiceAsync.kt @@ -53,7 +53,7 @@ interface BacktestServiceAsync { fun create(authRuleToken: String): CompletableFuture = create(authRuleToken, AuthRuleV2BacktestCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( authRuleToken: String, params: AuthRuleV2BacktestCreateParams = AuthRuleV2BacktestCreateParams.none(), @@ -61,24 +61,24 @@ interface BacktestServiceAsync { ): CompletableFuture = create(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create( authRuleToken: String, params: AuthRuleV2BacktestCreateParams = AuthRuleV2BacktestCreateParams.none(), ): CompletableFuture = create(authRuleToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: AuthRuleV2BacktestCreateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [create] */ + /** @see create */ fun create(params: AuthRuleV2BacktestCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( authRuleToken: String, requestOptions: RequestOptions, @@ -109,7 +109,7 @@ interface BacktestServiceAsync { ): CompletableFuture = retrieve(authRuleBacktestToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleBacktestToken: String, params: AuthRuleV2BacktestRetrieveParams, @@ -120,11 +120,11 @@ interface BacktestServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: AuthRuleV2BacktestRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AuthRuleV2BacktestRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -153,7 +153,7 @@ interface BacktestServiceAsync { ): CompletableFuture> = create(authRuleToken, AuthRuleV2BacktestCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( authRuleToken: String, params: AuthRuleV2BacktestCreateParams = AuthRuleV2BacktestCreateParams.none(), @@ -161,26 +161,26 @@ interface BacktestServiceAsync { ): CompletableFuture> = create(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create( authRuleToken: String, params: AuthRuleV2BacktestCreateParams = AuthRuleV2BacktestCreateParams.none(), ): CompletableFuture> = create(authRuleToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: AuthRuleV2BacktestCreateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [create] */ + /** @see create */ fun create( params: AuthRuleV2BacktestCreateParams ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( authRuleToken: String, requestOptions: RequestOptions, @@ -198,7 +198,7 @@ interface BacktestServiceAsync { ): CompletableFuture> = retrieve(authRuleBacktestToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleBacktestToken: String, params: AuthRuleV2BacktestRetrieveParams, @@ -209,13 +209,13 @@ interface BacktestServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AuthRuleV2BacktestRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AuthRuleV2BacktestRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/AggregateBalanceServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/AggregateBalanceServiceAsync.kt index 51a2e7b20..9c581b2e1 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/AggregateBalanceServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/AggregateBalanceServiceAsync.kt @@ -28,18 +28,18 @@ interface AggregateBalanceServiceAsync { fun list(): CompletableFuture = list(CardAggregateBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardAggregateBalanceListParams = CardAggregateBalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CardAggregateBalanceListParams = CardAggregateBalanceListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(CardAggregateBalanceListParams.none(), requestOptions) @@ -65,19 +65,19 @@ interface AggregateBalanceServiceAsync { fun list(): CompletableFuture> = list(CardAggregateBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardAggregateBalanceListParams = CardAggregateBalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CardAggregateBalanceListParams = CardAggregateBalanceListParams.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/cards/BalanceServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/BalanceServiceAsync.kt index 771dfaa5a..42501c3e1 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/BalanceServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/BalanceServiceAsync.kt @@ -28,7 +28,7 @@ interface BalanceServiceAsync { fun list(cardToken: String): CompletableFuture = list(cardToken, CardBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardBalanceListParams = CardBalanceListParams.none(), @@ -36,23 +36,23 @@ interface BalanceServiceAsync { ): CompletableFuture = list(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardBalanceListParams = CardBalanceListParams.none(), ): CompletableFuture = list(cardToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardBalanceListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list(params: CardBalanceListParams): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, requestOptions: RequestOptions, @@ -80,7 +80,7 @@ interface BalanceServiceAsync { fun list(cardToken: String): CompletableFuture> = list(cardToken, CardBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardBalanceListParams = CardBalanceListParams.none(), @@ -88,26 +88,26 @@ interface BalanceServiceAsync { ): CompletableFuture> = list(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardBalanceListParams = CardBalanceListParams.none(), ): CompletableFuture> = list(cardToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardBalanceListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CardBalanceListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/FinancialTransactionServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/FinancialTransactionServiceAsync.kt index de5da4d39..410037652 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/FinancialTransactionServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/cards/FinancialTransactionServiceAsync.kt @@ -33,7 +33,7 @@ interface FinancialTransactionServiceAsync { ): CompletableFuture = retrieve(financialTransactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialTransactionToken: String, params: CardFinancialTransactionRetrieveParams, @@ -44,12 +44,12 @@ interface FinancialTransactionServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardFinancialTransactionRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardFinancialTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -59,7 +59,7 @@ interface FinancialTransactionServiceAsync { fun list(cardToken: String): CompletableFuture = list(cardToken, CardFinancialTransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardFinancialTransactionListParams = CardFinancialTransactionListParams.none(), @@ -67,26 +67,26 @@ interface FinancialTransactionServiceAsync { ): CompletableFuture = list(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardFinancialTransactionListParams = CardFinancialTransactionListParams.none(), ): CompletableFuture = list(cardToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardFinancialTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CardFinancialTransactionListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, requestOptions: RequestOptions, @@ -119,7 +119,7 @@ interface FinancialTransactionServiceAsync { ): CompletableFuture> = retrieve(financialTransactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialTransactionToken: String, params: CardFinancialTransactionRetrieveParams, @@ -130,13 +130,13 @@ interface FinancialTransactionServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardFinancialTransactionRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardFinancialTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -151,7 +151,7 @@ interface FinancialTransactionServiceAsync { ): CompletableFuture> = list(cardToken, CardFinancialTransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardFinancialTransactionListParams = CardFinancialTransactionListParams.none(), @@ -159,26 +159,26 @@ interface FinancialTransactionServiceAsync { ): CompletableFuture> = list(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardFinancialTransactionListParams = CardFinancialTransactionListParams.none(), ): CompletableFuture> = list(cardToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardFinancialTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CardFinancialTransactionListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/creditProducts/ExtendedCreditServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/creditProducts/ExtendedCreditServiceAsync.kt index ab7885ebb..c41fc3046 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/creditProducts/ExtendedCreditServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/creditProducts/ExtendedCreditServiceAsync.kt @@ -28,7 +28,7 @@ interface ExtendedCreditServiceAsync { fun retrieve(creditProductToken: String): CompletableFuture = retrieve(creditProductToken, CreditProductExtendedCreditRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductExtendedCreditRetrieveParams = @@ -37,7 +37,7 @@ interface ExtendedCreditServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().creditProductToken(creditProductToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductExtendedCreditRetrieveParams = @@ -45,18 +45,18 @@ interface ExtendedCreditServiceAsync { ): CompletableFuture = retrieve(creditProductToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductExtendedCreditRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductExtendedCreditRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, requestOptions: RequestOptions, @@ -92,7 +92,7 @@ interface ExtendedCreditServiceAsync { ): CompletableFuture> = retrieve(creditProductToken, CreditProductExtendedCreditRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductExtendedCreditRetrieveParams = @@ -104,7 +104,7 @@ interface ExtendedCreditServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductExtendedCreditRetrieveParams = @@ -112,19 +112,19 @@ interface ExtendedCreditServiceAsync { ): CompletableFuture> = retrieve(creditProductToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductExtendedCreditRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductExtendedCreditRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/creditProducts/PrimeRateServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/creditProducts/PrimeRateServiceAsync.kt index c94755a15..16f7da04a 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/creditProducts/PrimeRateServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/creditProducts/PrimeRateServiceAsync.kt @@ -32,7 +32,7 @@ interface PrimeRateServiceAsync { params: CreditProductPrimeRateCreateParams, ): CompletableFuture = create(creditProductToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( creditProductToken: String, params: CreditProductPrimeRateCreateParams, @@ -40,11 +40,11 @@ interface PrimeRateServiceAsync { ): CompletableFuture = create(params.toBuilder().creditProductToken(creditProductToken).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create(params: CreditProductPrimeRateCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CreditProductPrimeRateCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -54,7 +54,7 @@ interface PrimeRateServiceAsync { fun retrieve(creditProductToken: String): CompletableFuture = retrieve(creditProductToken, CreditProductPrimeRateRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductPrimeRateRetrieveParams = CreditProductPrimeRateRetrieveParams.none(), @@ -62,25 +62,25 @@ interface PrimeRateServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().creditProductToken(creditProductToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductPrimeRateRetrieveParams = CreditProductPrimeRateRetrieveParams.none(), ): CompletableFuture = retrieve(creditProductToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductPrimeRateRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductPrimeRateRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, requestOptions: RequestOptions, @@ -112,7 +112,7 @@ interface PrimeRateServiceAsync { ): CompletableFuture = create(creditProductToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( creditProductToken: String, params: CreditProductPrimeRateCreateParams, @@ -123,11 +123,11 @@ interface PrimeRateServiceAsync { requestOptions, ) - /** @see [create] */ + /** @see create */ fun create(params: CreditProductPrimeRateCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CreditProductPrimeRateCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -143,7 +143,7 @@ interface PrimeRateServiceAsync { ): CompletableFuture> = retrieve(creditProductToken, CreditProductPrimeRateRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductPrimeRateRetrieveParams = @@ -155,7 +155,7 @@ interface PrimeRateServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductPrimeRateRetrieveParams = @@ -163,19 +163,19 @@ interface PrimeRateServiceAsync { ): CompletableFuture> = retrieve(creditProductToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductPrimeRateRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductPrimeRateRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/events/EventSubscriptionServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/events/EventSubscriptionServiceAsync.kt index 4ea6ba57b..3d598ffe6 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/events/EventSubscriptionServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/events/EventSubscriptionServiceAsync.kt @@ -29,7 +29,7 @@ interface EventSubscriptionServiceAsync { params: EventEventSubscriptionResendParams, ): CompletableFuture = resend(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [resend] */ + /** @see resend */ fun resend( eventSubscriptionToken: String, params: EventEventSubscriptionResendParams, @@ -40,11 +40,11 @@ interface EventSubscriptionServiceAsync { requestOptions, ) - /** @see [resend] */ + /** @see resend */ fun resend(params: EventEventSubscriptionResendParams): CompletableFuture = resend(params, RequestOptions.none()) - /** @see [resend] */ + /** @see resend */ fun resend( params: EventEventSubscriptionResendParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -76,7 +76,7 @@ interface EventSubscriptionServiceAsync { ): CompletableFuture = resend(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [resend] */ + /** @see resend */ fun resend( eventSubscriptionToken: String, params: EventEventSubscriptionResendParams, @@ -87,11 +87,11 @@ interface EventSubscriptionServiceAsync { requestOptions, ) - /** @see [resend] */ + /** @see resend */ fun resend(params: EventEventSubscriptionResendParams): CompletableFuture = resend(params, RequestOptions.none()) - /** @see [resend] */ + /** @see resend */ fun resend( params: EventEventSubscriptionResendParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/events/SubscriptionServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/events/SubscriptionServiceAsync.kt index f514841ef..3b0098865 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/events/SubscriptionServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/events/SubscriptionServiceAsync.kt @@ -42,7 +42,7 @@ interface SubscriptionServiceAsync { fun create(params: EventSubscriptionCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: EventSubscriptionCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -52,7 +52,7 @@ interface SubscriptionServiceAsync { fun retrieve(eventSubscriptionToken: String): CompletableFuture = retrieve(eventSubscriptionToken, EventSubscriptionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventSubscriptionToken: String, params: EventSubscriptionRetrieveParams = EventSubscriptionRetrieveParams.none(), @@ -63,24 +63,24 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventSubscriptionToken: String, params: EventSubscriptionRetrieveParams = EventSubscriptionRetrieveParams.none(), ): CompletableFuture = retrieve(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: EventSubscriptionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: EventSubscriptionRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -94,7 +94,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = update(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( eventSubscriptionToken: String, params: EventSubscriptionUpdateParams, @@ -105,11 +105,11 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update(params: EventSubscriptionUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: EventSubscriptionUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -119,18 +119,18 @@ interface SubscriptionServiceAsync { fun list(): CompletableFuture = list(EventSubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventSubscriptionListParams = EventSubscriptionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: EventSubscriptionListParams = EventSubscriptionListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(EventSubscriptionListParams.none(), requestOptions) @@ -138,7 +138,7 @@ interface SubscriptionServiceAsync { fun delete(eventSubscriptionToken: String): CompletableFuture = delete(eventSubscriptionToken, EventSubscriptionDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( eventSubscriptionToken: String, params: EventSubscriptionDeleteParams = EventSubscriptionDeleteParams.none(), @@ -149,23 +149,23 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [delete] */ + /** @see delete */ fun delete( eventSubscriptionToken: String, params: EventSubscriptionDeleteParams = EventSubscriptionDeleteParams.none(), ): CompletableFuture = delete(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: EventSubscriptionDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [delete] */ + /** @see delete */ fun delete(params: EventSubscriptionDeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -178,7 +178,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = listAttempts(eventSubscriptionToken, EventSubscriptionListAttemptsParams.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventSubscriptionToken: String, params: EventSubscriptionListAttemptsParams = EventSubscriptionListAttemptsParams.none(), @@ -189,26 +189,26 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventSubscriptionToken: String, params: EventSubscriptionListAttemptsParams = EventSubscriptionListAttemptsParams.none(), ): CompletableFuture = listAttempts(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventSubscriptionListAttemptsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventSubscriptionListAttemptsParams ): CompletableFuture = listAttempts(params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -223,7 +223,7 @@ interface SubscriptionServiceAsync { fun recover(eventSubscriptionToken: String): CompletableFuture = recover(eventSubscriptionToken, EventSubscriptionRecoverParams.none()) - /** @see [recover] */ + /** @see recover */ fun recover( eventSubscriptionToken: String, params: EventSubscriptionRecoverParams = EventSubscriptionRecoverParams.none(), @@ -234,23 +234,23 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [recover] */ + /** @see recover */ fun recover( eventSubscriptionToken: String, params: EventSubscriptionRecoverParams = EventSubscriptionRecoverParams.none(), ): CompletableFuture = recover(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [recover] */ + /** @see recover */ fun recover( params: EventSubscriptionRecoverParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [recover] */ + /** @see recover */ fun recover(params: EventSubscriptionRecoverParams): CompletableFuture = recover(params, RequestOptions.none()) - /** @see [recover] */ + /** @see recover */ fun recover( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -266,7 +266,7 @@ interface SubscriptionServiceAsync { fun replayMissing(eventSubscriptionToken: String): CompletableFuture = replayMissing(eventSubscriptionToken, EventSubscriptionReplayMissingParams.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( eventSubscriptionToken: String, params: EventSubscriptionReplayMissingParams = EventSubscriptionReplayMissingParams.none(), @@ -277,24 +277,24 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( eventSubscriptionToken: String, params: EventSubscriptionReplayMissingParams = EventSubscriptionReplayMissingParams.none(), ): CompletableFuture = replayMissing(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( params: EventSubscriptionReplayMissingParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing(params: EventSubscriptionReplayMissingParams): CompletableFuture = replayMissing(params, RequestOptions.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -311,7 +311,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = retrieveSecret(eventSubscriptionToken, EventSubscriptionRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( eventSubscriptionToken: String, params: EventSubscriptionRetrieveSecretParams = @@ -323,26 +323,26 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( eventSubscriptionToken: String, params: EventSubscriptionRetrieveSecretParams = EventSubscriptionRetrieveSecretParams.none(), ): CompletableFuture = retrieveSecret(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: EventSubscriptionRetrieveSecretParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: EventSubscriptionRetrieveSecretParams ): CompletableFuture = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -360,7 +360,7 @@ interface SubscriptionServiceAsync { fun rotateSecret(eventSubscriptionToken: String): CompletableFuture = rotateSecret(eventSubscriptionToken, EventSubscriptionRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( eventSubscriptionToken: String, params: EventSubscriptionRotateSecretParams = EventSubscriptionRotateSecretParams.none(), @@ -371,24 +371,24 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( eventSubscriptionToken: String, params: EventSubscriptionRotateSecretParams = EventSubscriptionRotateSecretParams.none(), ): CompletableFuture = rotateSecret(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: EventSubscriptionRotateSecretParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(params: EventSubscriptionRotateSecretParams): CompletableFuture = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -406,7 +406,7 @@ interface SubscriptionServiceAsync { EventSubscriptionSendSimulatedExampleParams.none(), ) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( eventSubscriptionToken: String, params: EventSubscriptionSendSimulatedExampleParams = @@ -418,7 +418,7 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( eventSubscriptionToken: String, params: EventSubscriptionSendSimulatedExampleParams = @@ -426,18 +426,18 @@ interface SubscriptionServiceAsync { ): CompletableFuture = sendSimulatedExample(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( params: EventSubscriptionSendSimulatedExampleParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( params: EventSubscriptionSendSimulatedExampleParams ): CompletableFuture = sendSimulatedExample(params, RequestOptions.none()) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -472,7 +472,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: EventSubscriptionCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -487,7 +487,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = retrieve(eventSubscriptionToken, EventSubscriptionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventSubscriptionToken: String, params: EventSubscriptionRetrieveParams = EventSubscriptionRetrieveParams.none(), @@ -498,26 +498,26 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventSubscriptionToken: String, params: EventSubscriptionRetrieveParams = EventSubscriptionRetrieveParams.none(), ): CompletableFuture> = retrieve(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: EventSubscriptionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: EventSubscriptionRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -535,7 +535,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = update(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( eventSubscriptionToken: String, params: EventSubscriptionUpdateParams, @@ -546,13 +546,13 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( params: EventSubscriptionUpdateParams ): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: EventSubscriptionUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -565,19 +565,19 @@ interface SubscriptionServiceAsync { fun list(): CompletableFuture> = list(EventSubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventSubscriptionListParams = EventSubscriptionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: EventSubscriptionListParams = EventSubscriptionListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -591,7 +591,7 @@ interface SubscriptionServiceAsync { fun delete(eventSubscriptionToken: String): CompletableFuture = delete(eventSubscriptionToken, EventSubscriptionDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( eventSubscriptionToken: String, params: EventSubscriptionDeleteParams = EventSubscriptionDeleteParams.none(), @@ -602,24 +602,24 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [delete] */ + /** @see delete */ fun delete( eventSubscriptionToken: String, params: EventSubscriptionDeleteParams = EventSubscriptionDeleteParams.none(), ): CompletableFuture = delete(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: EventSubscriptionDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [delete] */ + /** @see delete */ fun delete(params: EventSubscriptionDeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -636,7 +636,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = listAttempts(eventSubscriptionToken, EventSubscriptionListAttemptsParams.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventSubscriptionToken: String, params: EventSubscriptionListAttemptsParams = @@ -648,26 +648,26 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventSubscriptionToken: String, params: EventSubscriptionListAttemptsParams = EventSubscriptionListAttemptsParams.none(), ): CompletableFuture> = listAttempts(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventSubscriptionListAttemptsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventSubscriptionListAttemptsParams ): CompletableFuture> = listAttempts(params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -686,7 +686,7 @@ interface SubscriptionServiceAsync { fun recover(eventSubscriptionToken: String): CompletableFuture = recover(eventSubscriptionToken, EventSubscriptionRecoverParams.none()) - /** @see [recover] */ + /** @see recover */ fun recover( eventSubscriptionToken: String, params: EventSubscriptionRecoverParams = EventSubscriptionRecoverParams.none(), @@ -697,24 +697,24 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [recover] */ + /** @see recover */ fun recover( eventSubscriptionToken: String, params: EventSubscriptionRecoverParams = EventSubscriptionRecoverParams.none(), ): CompletableFuture = recover(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [recover] */ + /** @see recover */ fun recover( params: EventSubscriptionRecoverParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [recover] */ + /** @see recover */ fun recover(params: EventSubscriptionRecoverParams): CompletableFuture = recover(params, RequestOptions.none()) - /** @see [recover] */ + /** @see recover */ fun recover( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -729,7 +729,7 @@ interface SubscriptionServiceAsync { fun replayMissing(eventSubscriptionToken: String): CompletableFuture = replayMissing(eventSubscriptionToken, EventSubscriptionReplayMissingParams.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( eventSubscriptionToken: String, params: EventSubscriptionReplayMissingParams = @@ -741,7 +741,7 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( eventSubscriptionToken: String, params: EventSubscriptionReplayMissingParams = @@ -749,18 +749,18 @@ interface SubscriptionServiceAsync { ): CompletableFuture = replayMissing(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( params: EventSubscriptionReplayMissingParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( params: EventSubscriptionReplayMissingParams ): CompletableFuture = replayMissing(params, RequestOptions.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -781,7 +781,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = retrieveSecret(eventSubscriptionToken, EventSubscriptionRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( eventSubscriptionToken: String, params: EventSubscriptionRetrieveSecretParams = @@ -793,7 +793,7 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( eventSubscriptionToken: String, params: EventSubscriptionRetrieveSecretParams = @@ -801,19 +801,19 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = retrieveSecret(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: EventSubscriptionRetrieveSecretParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: EventSubscriptionRetrieveSecretParams ): CompletableFuture> = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -832,7 +832,7 @@ interface SubscriptionServiceAsync { fun rotateSecret(eventSubscriptionToken: String): CompletableFuture = rotateSecret(eventSubscriptionToken, EventSubscriptionRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( eventSubscriptionToken: String, params: EventSubscriptionRotateSecretParams = @@ -844,25 +844,25 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( eventSubscriptionToken: String, params: EventSubscriptionRotateSecretParams = EventSubscriptionRotateSecretParams.none(), ): CompletableFuture = rotateSecret(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: EventSubscriptionRotateSecretParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: EventSubscriptionRotateSecretParams ): CompletableFuture = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -884,7 +884,7 @@ interface SubscriptionServiceAsync { EventSubscriptionSendSimulatedExampleParams.none(), ) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( eventSubscriptionToken: String, params: EventSubscriptionSendSimulatedExampleParams = @@ -896,7 +896,7 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( eventSubscriptionToken: String, params: EventSubscriptionSendSimulatedExampleParams = @@ -904,18 +904,18 @@ interface SubscriptionServiceAsync { ): CompletableFuture = sendSimulatedExample(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( params: EventSubscriptionSendSimulatedExampleParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( params: EventSubscriptionSendSimulatedExampleParams ): CompletableFuture = sendSimulatedExample(params, RequestOptions.none()) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( eventSubscriptionToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/externalBankAccounts/MicroDepositServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/externalBankAccounts/MicroDepositServiceAsync.kt index e50695249..f7c700592 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/externalBankAccounts/MicroDepositServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/externalBankAccounts/MicroDepositServiceAsync.kt @@ -31,7 +31,7 @@ interface MicroDepositServiceAsync { ): CompletableFuture = create(externalBankAccountToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( externalBankAccountToken: String, params: ExternalBankAccountMicroDepositCreateParams, @@ -42,12 +42,12 @@ interface MicroDepositServiceAsync { requestOptions, ) - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountMicroDepositCreateParams ): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountMicroDepositCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -79,7 +79,7 @@ interface MicroDepositServiceAsync { ): CompletableFuture> = create(externalBankAccountToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( externalBankAccountToken: String, params: ExternalBankAccountMicroDepositCreateParams, @@ -90,13 +90,13 @@ interface MicroDepositServiceAsync { requestOptions, ) - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountMicroDepositCreateParams ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountMicroDepositCreateParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/BalanceServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/BalanceServiceAsync.kt index 6412997d9..a4790845a 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/BalanceServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/BalanceServiceAsync.kt @@ -30,7 +30,7 @@ interface BalanceServiceAsync { ): CompletableFuture = list(financialAccountToken, FinancialAccountBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountBalanceListParams = FinancialAccountBalanceListParams.none(), @@ -41,25 +41,25 @@ interface BalanceServiceAsync { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountBalanceListParams = FinancialAccountBalanceListParams.none(), ): CompletableFuture = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountBalanceListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountBalanceListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, @@ -90,7 +90,7 @@ interface BalanceServiceAsync { ): CompletableFuture> = list(financialAccountToken, FinancialAccountBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountBalanceListParams = FinancialAccountBalanceListParams.none(), @@ -101,26 +101,26 @@ interface BalanceServiceAsync { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountBalanceListParams = FinancialAccountBalanceListParams.none(), ): CompletableFuture> = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountBalanceListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountBalanceListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/CreditConfigurationServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/CreditConfigurationServiceAsync.kt index 1324ad01f..054d745f3 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/CreditConfigurationServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/CreditConfigurationServiceAsync.kt @@ -29,7 +29,7 @@ interface CreditConfigurationServiceAsync { fun retrieve(financialAccountToken: String): CompletableFuture = retrieve(financialAccountToken, FinancialAccountCreditConfigurationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountCreditConfigurationRetrieveParams = @@ -41,7 +41,7 @@ interface CreditConfigurationServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountCreditConfigurationRetrieveParams = @@ -49,18 +49,18 @@ interface CreditConfigurationServiceAsync { ): CompletableFuture = retrieve(financialAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountCreditConfigurationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountCreditConfigurationRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, requestOptions: RequestOptions, @@ -75,7 +75,7 @@ interface CreditConfigurationServiceAsync { fun update(financialAccountToken: String): CompletableFuture = update(financialAccountToken, FinancialAccountCreditConfigurationUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountCreditConfigurationUpdateParams = @@ -87,7 +87,7 @@ interface CreditConfigurationServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountCreditConfigurationUpdateParams = @@ -95,18 +95,18 @@ interface CreditConfigurationServiceAsync { ): CompletableFuture = update(financialAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountCreditConfigurationUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountCreditConfigurationUpdateParams ): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, requestOptions: RequestOptions, @@ -145,7 +145,7 @@ interface CreditConfigurationServiceAsync { FinancialAccountCreditConfigurationRetrieveParams.none(), ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountCreditConfigurationRetrieveParams = @@ -157,7 +157,7 @@ interface CreditConfigurationServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountCreditConfigurationRetrieveParams = @@ -165,19 +165,19 @@ interface CreditConfigurationServiceAsync { ): CompletableFuture> = retrieve(financialAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountCreditConfigurationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountCreditConfigurationRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, requestOptions: RequestOptions, @@ -198,7 +198,7 @@ interface CreditConfigurationServiceAsync { ): CompletableFuture> = update(financialAccountToken, FinancialAccountCreditConfigurationUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountCreditConfigurationUpdateParams = @@ -210,7 +210,7 @@ interface CreditConfigurationServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountCreditConfigurationUpdateParams = @@ -218,19 +218,19 @@ interface CreditConfigurationServiceAsync { ): CompletableFuture> = update(financialAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountCreditConfigurationUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountCreditConfigurationUpdateParams ): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/FinancialTransactionServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/FinancialTransactionServiceAsync.kt index 26636c2a0..462b79aea 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/FinancialTransactionServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/FinancialTransactionServiceAsync.kt @@ -33,7 +33,7 @@ interface FinancialTransactionServiceAsync { ): CompletableFuture = retrieve(financialTransactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialTransactionToken: String, params: FinancialTransactionRetrieveParams, @@ -44,12 +44,12 @@ interface FinancialTransactionServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialTransactionRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -59,7 +59,7 @@ interface FinancialTransactionServiceAsync { fun list(financialAccountToken: String): CompletableFuture = list(financialAccountToken, FinancialTransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialTransactionListParams = FinancialTransactionListParams.none(), @@ -70,25 +70,25 @@ interface FinancialTransactionServiceAsync { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialTransactionListParams = FinancialTransactionListParams.none(), ): CompletableFuture = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: FinancialTransactionListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, @@ -121,7 +121,7 @@ interface FinancialTransactionServiceAsync { ): CompletableFuture> = retrieve(financialTransactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialTransactionToken: String, params: FinancialTransactionRetrieveParams, @@ -132,13 +132,13 @@ interface FinancialTransactionServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialTransactionRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -154,7 +154,7 @@ interface FinancialTransactionServiceAsync { ): CompletableFuture> = list(financialAccountToken, FinancialTransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialTransactionListParams = FinancialTransactionListParams.none(), @@ -165,26 +165,26 @@ interface FinancialTransactionServiceAsync { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialTransactionListParams = FinancialTransactionListParams.none(), ): CompletableFuture> = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: FinancialTransactionListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/LoanTapeServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/LoanTapeServiceAsync.kt index 1cee096a5..32dfeac46 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/LoanTapeServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/LoanTapeServiceAsync.kt @@ -32,7 +32,7 @@ interface LoanTapeServiceAsync { params: FinancialAccountLoanTapeRetrieveParams, ): CompletableFuture = retrieve(loanTapeToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( loanTapeToken: String, params: FinancialAccountLoanTapeRetrieveParams, @@ -40,11 +40,11 @@ interface LoanTapeServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().loanTapeToken(loanTapeToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: FinancialAccountLoanTapeRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountLoanTapeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -56,7 +56,7 @@ interface LoanTapeServiceAsync { ): CompletableFuture = list(financialAccountToken, FinancialAccountLoanTapeListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountLoanTapeListParams = FinancialAccountLoanTapeListParams.none(), @@ -67,26 +67,26 @@ interface LoanTapeServiceAsync { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountLoanTapeListParams = FinancialAccountLoanTapeListParams.none(), ): CompletableFuture = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountLoanTapeListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountLoanTapeListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, @@ -118,7 +118,7 @@ interface LoanTapeServiceAsync { ): CompletableFuture> = retrieve(loanTapeToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( loanTapeToken: String, params: FinancialAccountLoanTapeRetrieveParams, @@ -126,12 +126,12 @@ interface LoanTapeServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().loanTapeToken(loanTapeToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountLoanTapeRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountLoanTapeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -147,7 +147,7 @@ interface LoanTapeServiceAsync { ): CompletableFuture> = list(financialAccountToken, FinancialAccountLoanTapeListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountLoanTapeListParams = FinancialAccountLoanTapeListParams.none(), @@ -158,26 +158,26 @@ interface LoanTapeServiceAsync { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountLoanTapeListParams = FinancialAccountLoanTapeListParams.none(), ): CompletableFuture> = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountLoanTapeListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountLoanTapeListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/StatementServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/StatementServiceAsync.kt index f5837eb87..c47e01fb9 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/StatementServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/StatementServiceAsync.kt @@ -35,7 +35,7 @@ interface StatementServiceAsync { params: FinancialAccountStatementRetrieveParams, ): CompletableFuture = retrieve(statementToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( statementToken: String, params: FinancialAccountStatementRetrieveParams, @@ -43,11 +43,11 @@ interface StatementServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().statementToken(statementToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: FinancialAccountStatementRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountStatementRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -59,7 +59,7 @@ interface StatementServiceAsync { ): CompletableFuture = list(financialAccountToken, FinancialAccountStatementListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountStatementListParams = FinancialAccountStatementListParams.none(), @@ -70,26 +70,26 @@ interface StatementServiceAsync { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountStatementListParams = FinancialAccountStatementListParams.none(), ): CompletableFuture = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, @@ -123,7 +123,7 @@ interface StatementServiceAsync { ): CompletableFuture> = retrieve(statementToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( statementToken: String, params: FinancialAccountStatementRetrieveParams, @@ -131,12 +131,12 @@ interface StatementServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().statementToken(statementToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountStatementRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountStatementRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -152,7 +152,7 @@ interface StatementServiceAsync { ): CompletableFuture> = list(financialAccountToken, FinancialAccountStatementListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountStatementListParams = @@ -164,26 +164,26 @@ interface StatementServiceAsync { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountStatementListParams = FinancialAccountStatementListParams.none(), ): CompletableFuture> = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/statements/LineItemServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/statements/LineItemServiceAsync.kt index e610f749e..1a7598ef3 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/statements/LineItemServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/financialAccounts/statements/LineItemServiceAsync.kt @@ -31,7 +31,7 @@ interface LineItemServiceAsync { ): CompletableFuture = list(statementToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( statementToken: String, params: FinancialAccountStatementLineItemListParams, @@ -39,13 +39,13 @@ interface LineItemServiceAsync { ): CompletableFuture = list(params.toBuilder().statementToken(statementToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementLineItemListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementLineItemListParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -76,7 +76,7 @@ interface LineItemServiceAsync { ): CompletableFuture> = list(statementToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( statementToken: String, params: FinancialAccountStatementLineItemListParams, @@ -84,13 +84,13 @@ interface LineItemServiceAsync { ): CompletableFuture> = list(params.toBuilder().statementToken(statementToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementLineItemListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementLineItemListParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/fraud/TransactionServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/fraud/TransactionServiceAsync.kt index 21ad57992..651652bc1 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/fraud/TransactionServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/fraud/TransactionServiceAsync.kt @@ -33,7 +33,7 @@ interface TransactionServiceAsync { fun retrieve(transactionToken: String): CompletableFuture = retrieve(transactionToken, FraudTransactionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: FraudTransactionRetrieveParams = FraudTransactionRetrieveParams.none(), @@ -41,25 +41,25 @@ interface TransactionServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: FraudTransactionRetrieveParams = FraudTransactionRetrieveParams.none(), ): CompletableFuture = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FraudTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FraudTransactionRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, requestOptions: RequestOptions, @@ -76,7 +76,7 @@ interface TransactionServiceAsync { ): CompletableFuture = report(transactionToken, params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ fun report( transactionToken: String, params: FraudTransactionReportParams, @@ -84,11 +84,11 @@ interface TransactionServiceAsync { ): CompletableFuture = report(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [report] */ + /** @see report */ fun report(params: FraudTransactionReportParams): CompletableFuture = report(params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ fun report( params: FraudTransactionReportParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -118,7 +118,7 @@ interface TransactionServiceAsync { ): CompletableFuture> = retrieve(transactionToken, FraudTransactionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: FraudTransactionRetrieveParams = FraudTransactionRetrieveParams.none(), @@ -126,26 +126,26 @@ interface TransactionServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: FraudTransactionRetrieveParams = FraudTransactionRetrieveParams.none(), ): CompletableFuture> = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FraudTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FraudTransactionRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, requestOptions: RequestOptions, @@ -162,7 +162,7 @@ interface TransactionServiceAsync { ): CompletableFuture> = report(transactionToken, params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ fun report( transactionToken: String, params: FraudTransactionReportParams, @@ -170,13 +170,13 @@ interface TransactionServiceAsync { ): CompletableFuture> = report(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [report] */ + /** @see report */ fun report( params: FraudTransactionReportParams ): CompletableFuture> = report(params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ fun report( params: FraudTransactionReportParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/reports/SettlementServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/reports/SettlementServiceAsync.kt index e2576ddb7..b07e5cefe 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/reports/SettlementServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/reports/SettlementServiceAsync.kt @@ -36,7 +36,7 @@ interface SettlementServiceAsync { ): CompletableFuture = listDetails(reportDate, ReportSettlementListDetailsParams.none()) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( reportDate: LocalDate, params: ReportSettlementListDetailsParams = ReportSettlementListDetailsParams.none(), @@ -44,26 +44,26 @@ interface SettlementServiceAsync { ): CompletableFuture = listDetails(params.toBuilder().reportDate(reportDate).build(), requestOptions) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( reportDate: LocalDate, params: ReportSettlementListDetailsParams = ReportSettlementListDetailsParams.none(), ): CompletableFuture = listDetails(reportDate, params, RequestOptions.none()) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( params: ReportSettlementListDetailsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( params: ReportSettlementListDetailsParams ): CompletableFuture = listDetails(params, RequestOptions.none()) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( reportDate: LocalDate, requestOptions: RequestOptions, @@ -74,7 +74,7 @@ interface SettlementServiceAsync { fun summary(reportDate: LocalDate): CompletableFuture = summary(reportDate, ReportSettlementSummaryParams.none()) - /** @see [summary] */ + /** @see summary */ fun summary( reportDate: LocalDate, params: ReportSettlementSummaryParams = ReportSettlementSummaryParams.none(), @@ -82,23 +82,23 @@ interface SettlementServiceAsync { ): CompletableFuture = summary(params.toBuilder().reportDate(reportDate).build(), requestOptions) - /** @see [summary] */ + /** @see summary */ fun summary( reportDate: LocalDate, params: ReportSettlementSummaryParams = ReportSettlementSummaryParams.none(), ): CompletableFuture = summary(reportDate, params, RequestOptions.none()) - /** @see [summary] */ + /** @see summary */ fun summary( params: ReportSettlementSummaryParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [summary] */ + /** @see summary */ fun summary(params: ReportSettlementSummaryParams): CompletableFuture = summary(params, RequestOptions.none()) - /** @see [summary] */ + /** @see summary */ fun summary( reportDate: LocalDate, requestOptions: RequestOptions, @@ -131,7 +131,7 @@ interface SettlementServiceAsync { ): CompletableFuture> = listDetails(reportDate, ReportSettlementListDetailsParams.none()) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( reportDate: LocalDate, params: ReportSettlementListDetailsParams = ReportSettlementListDetailsParams.none(), @@ -139,26 +139,26 @@ interface SettlementServiceAsync { ): CompletableFuture> = listDetails(params.toBuilder().reportDate(reportDate).build(), requestOptions) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( reportDate: LocalDate, params: ReportSettlementListDetailsParams = ReportSettlementListDetailsParams.none(), ): CompletableFuture> = listDetails(reportDate, params, RequestOptions.none()) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( params: ReportSettlementListDetailsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( params: ReportSettlementListDetailsParams ): CompletableFuture> = listDetails(params, RequestOptions.none()) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( reportDate: LocalDate, requestOptions: RequestOptions, @@ -172,7 +172,7 @@ interface SettlementServiceAsync { fun summary(reportDate: LocalDate): CompletableFuture> = summary(reportDate, ReportSettlementSummaryParams.none()) - /** @see [summary] */ + /** @see summary */ fun summary( reportDate: LocalDate, params: ReportSettlementSummaryParams = ReportSettlementSummaryParams.none(), @@ -180,26 +180,26 @@ interface SettlementServiceAsync { ): CompletableFuture> = summary(params.toBuilder().reportDate(reportDate).build(), requestOptions) - /** @see [summary] */ + /** @see summary */ fun summary( reportDate: LocalDate, params: ReportSettlementSummaryParams = ReportSettlementSummaryParams.none(), ): CompletableFuture> = summary(reportDate, params, RequestOptions.none()) - /** @see [summary] */ + /** @see summary */ fun summary( params: ReportSettlementSummaryParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [summary] */ + /** @see summary */ fun summary( params: ReportSettlementSummaryParams ): CompletableFuture> = summary(params, RequestOptions.none()) - /** @see [summary] */ + /** @see summary */ fun summary( reportDate: LocalDate, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/reports/settlement/NetworkTotalServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/reports/settlement/NetworkTotalServiceAsync.kt index b7d03d9cd..5376ffade 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/reports/settlement/NetworkTotalServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/reports/settlement/NetworkTotalServiceAsync.kt @@ -30,7 +30,7 @@ interface NetworkTotalServiceAsync { fun retrieve(token: String): CompletableFuture = retrieve(token, ReportSettlementNetworkTotalRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( token: String, params: ReportSettlementNetworkTotalRetrieveParams = @@ -39,7 +39,7 @@ interface NetworkTotalServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().token(token).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( token: String, params: ReportSettlementNetworkTotalRetrieveParams = @@ -47,18 +47,18 @@ interface NetworkTotalServiceAsync { ): CompletableFuture = retrieve(token, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ReportSettlementNetworkTotalRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ReportSettlementNetworkTotalRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( token: String, requestOptions: RequestOptions, @@ -69,21 +69,21 @@ interface NetworkTotalServiceAsync { fun list(): CompletableFuture = list(ReportSettlementNetworkTotalListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ReportSettlementNetworkTotalListParams = ReportSettlementNetworkTotalListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: ReportSettlementNetworkTotalListParams = ReportSettlementNetworkTotalListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture = @@ -113,7 +113,7 @@ interface NetworkTotalServiceAsync { ): CompletableFuture> = retrieve(token, ReportSettlementNetworkTotalRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( token: String, params: ReportSettlementNetworkTotalRetrieveParams = @@ -122,7 +122,7 @@ interface NetworkTotalServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().token(token).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( token: String, params: ReportSettlementNetworkTotalRetrieveParams = @@ -130,19 +130,19 @@ interface NetworkTotalServiceAsync { ): CompletableFuture> = retrieve(token, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ReportSettlementNetworkTotalRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ReportSettlementNetworkTotalRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( token: String, requestOptions: RequestOptions, @@ -156,21 +156,21 @@ interface NetworkTotalServiceAsync { fun list(): CompletableFuture> = list(ReportSettlementNetworkTotalListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ReportSettlementNetworkTotalListParams = ReportSettlementNetworkTotalListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: ReportSettlementNetworkTotalListParams = ReportSettlementNetworkTotalListParams.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/threeDS/AuthenticationServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/threeDS/AuthenticationServiceAsync.kt index 02e5ef785..a455cf8cc 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/threeDS/AuthenticationServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/threeDS/AuthenticationServiceAsync.kt @@ -34,7 +34,7 @@ interface AuthenticationServiceAsync { ): CompletableFuture = retrieve(threeDSAuthenticationToken, ThreeDSAuthenticationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( threeDSAuthenticationToken: String, params: ThreeDSAuthenticationRetrieveParams = ThreeDSAuthenticationRetrieveParams.none(), @@ -45,25 +45,25 @@ interface AuthenticationServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( threeDSAuthenticationToken: String, params: ThreeDSAuthenticationRetrieveParams = ThreeDSAuthenticationRetrieveParams.none(), ): CompletableFuture = retrieve(threeDSAuthenticationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ThreeDSAuthenticationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ThreeDSAuthenticationRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( threeDSAuthenticationToken: String, requestOptions: RequestOptions, @@ -85,7 +85,7 @@ interface AuthenticationServiceAsync { params: ThreeDSAuthenticationSimulateParams ): CompletableFuture = simulate(params, RequestOptions.none()) - /** @see [simulate] */ + /** @see simulate */ fun simulate( params: ThreeDSAuthenticationSimulateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -101,7 +101,7 @@ interface AuthenticationServiceAsync { params: ThreeDSAuthenticationSimulateOtpEntryParams ): CompletableFuture = simulateOtpEntry(params, RequestOptions.none()) - /** @see [simulateOtpEntry] */ + /** @see simulateOtpEntry */ fun simulateOtpEntry( params: ThreeDSAuthenticationSimulateOtpEntryParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -132,7 +132,7 @@ interface AuthenticationServiceAsync { ): CompletableFuture> = retrieve(threeDSAuthenticationToken, ThreeDSAuthenticationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( threeDSAuthenticationToken: String, params: ThreeDSAuthenticationRetrieveParams = @@ -144,26 +144,26 @@ interface AuthenticationServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( threeDSAuthenticationToken: String, params: ThreeDSAuthenticationRetrieveParams = ThreeDSAuthenticationRetrieveParams.none(), ): CompletableFuture> = retrieve(threeDSAuthenticationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ThreeDSAuthenticationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ThreeDSAuthenticationRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( threeDSAuthenticationToken: String, requestOptions: RequestOptions, @@ -183,7 +183,7 @@ interface AuthenticationServiceAsync { ): CompletableFuture> = simulate(params, RequestOptions.none()) - /** @see [simulate] */ + /** @see simulate */ fun simulate( params: ThreeDSAuthenticationSimulateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -197,7 +197,7 @@ interface AuthenticationServiceAsync { params: ThreeDSAuthenticationSimulateOtpEntryParams ): CompletableFuture = simulateOtpEntry(params, RequestOptions.none()) - /** @see [simulateOtpEntry] */ + /** @see simulateOtpEntry */ fun simulateOtpEntry( params: ThreeDSAuthenticationSimulateOtpEntryParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/threeDS/DecisioningServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/threeDS/DecisioningServiceAsync.kt index 50975f25c..984a4b18a 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/threeDS/DecisioningServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/threeDS/DecisioningServiceAsync.kt @@ -37,7 +37,7 @@ interface DecisioningServiceAsync { params: ThreeDSDecisioningChallengeResponseParams ): CompletableFuture = challengeResponse(params, RequestOptions.none()) - /** @see [challengeResponse] */ + /** @see challengeResponse */ fun challengeResponse( params: ThreeDSDecisioningChallengeResponseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -54,21 +54,21 @@ interface DecisioningServiceAsync { fun retrieveSecret(): CompletableFuture = retrieveSecret(ThreeDSDecisioningRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: ThreeDSDecisioningRetrieveSecretParams = ThreeDSDecisioningRetrieveSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: ThreeDSDecisioningRetrieveSecretParams = ThreeDSDecisioningRetrieveSecretParams.none() ): CompletableFuture = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( requestOptions: RequestOptions ): CompletableFuture = @@ -83,18 +83,18 @@ interface DecisioningServiceAsync { fun rotateSecret(): CompletableFuture = rotateSecret(ThreeDSDecisioningRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: ThreeDSDecisioningRotateSecretParams = ThreeDSDecisioningRotateSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: ThreeDSDecisioningRotateSecretParams = ThreeDSDecisioningRotateSecretParams.none() ): CompletableFuture = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(requestOptions: RequestOptions): CompletableFuture = rotateSecret(ThreeDSDecisioningRotateSecretParams.none(), requestOptions) @@ -121,7 +121,7 @@ interface DecisioningServiceAsync { params: ThreeDSDecisioningChallengeResponseParams ): CompletableFuture = challengeResponse(params, RequestOptions.none()) - /** @see [challengeResponse] */ + /** @see challengeResponse */ fun challengeResponse( params: ThreeDSDecisioningChallengeResponseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -135,21 +135,21 @@ interface DecisioningServiceAsync { CompletableFuture> = retrieveSecret(ThreeDSDecisioningRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: ThreeDSDecisioningRetrieveSecretParams = ThreeDSDecisioningRetrieveSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: ThreeDSDecisioningRetrieveSecretParams = ThreeDSDecisioningRetrieveSecretParams.none() ): CompletableFuture> = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( requestOptions: RequestOptions ): CompletableFuture> = @@ -162,20 +162,20 @@ interface DecisioningServiceAsync { fun rotateSecret(): CompletableFuture = rotateSecret(ThreeDSDecisioningRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: ThreeDSDecisioningRotateSecretParams = ThreeDSDecisioningRotateSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: ThreeDSDecisioningRotateSecretParams = ThreeDSDecisioningRotateSecretParams.none() ): CompletableFuture = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(requestOptions: RequestOptions): CompletableFuture = rotateSecret(ThreeDSDecisioningRotateSecretParams.none(), requestOptions) } diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/transactions/EnhancedCommercialDataServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/transactions/EnhancedCommercialDataServiceAsync.kt index 5a9d4a8a1..8a3e7d98f 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/transactions/EnhancedCommercialDataServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/transactions/EnhancedCommercialDataServiceAsync.kt @@ -33,7 +33,7 @@ interface EnhancedCommercialDataServiceAsync { ): CompletableFuture = retrieve(transactionToken, TransactionEnhancedCommercialDataRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionEnhancedCommercialDataRetrieveParams = @@ -42,7 +42,7 @@ interface EnhancedCommercialDataServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionEnhancedCommercialDataRetrieveParams = @@ -50,19 +50,19 @@ interface EnhancedCommercialDataServiceAsync { ): CompletableFuture = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEnhancedCommercialDataRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEnhancedCommercialDataRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, requestOptions: RequestOptions, @@ -98,7 +98,7 @@ interface EnhancedCommercialDataServiceAsync { ): CompletableFuture> = retrieve(transactionToken, TransactionEnhancedCommercialDataRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionEnhancedCommercialDataRetrieveParams = @@ -107,7 +107,7 @@ interface EnhancedCommercialDataServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionEnhancedCommercialDataRetrieveParams = @@ -115,19 +115,19 @@ interface EnhancedCommercialDataServiceAsync { ): CompletableFuture> = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEnhancedCommercialDataRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEnhancedCommercialDataRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/transactions/events/EnhancedCommercialDataServiceAsync.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/transactions/events/EnhancedCommercialDataServiceAsync.kt index e6e7c28cd..2fcbbeba0 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/transactions/events/EnhancedCommercialDataServiceAsync.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/async/transactions/events/EnhancedCommercialDataServiceAsync.kt @@ -31,7 +31,7 @@ interface EnhancedCommercialDataServiceAsync { fun retrieve(eventToken: String): CompletableFuture = retrieve(eventToken, TransactionEventEnhancedCommercialDataRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: TransactionEventEnhancedCommercialDataRetrieveParams = @@ -40,25 +40,25 @@ interface EnhancedCommercialDataServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: TransactionEventEnhancedCommercialDataRetrieveParams = TransactionEventEnhancedCommercialDataRetrieveParams.none(), ): CompletableFuture = retrieve(eventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEventEnhancedCommercialDataRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEventEnhancedCommercialDataRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, requestOptions: RequestOptions, @@ -92,7 +92,7 @@ interface EnhancedCommercialDataServiceAsync { fun retrieve(eventToken: String): CompletableFuture> = retrieve(eventToken, TransactionEventEnhancedCommercialDataRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: TransactionEventEnhancedCommercialDataRetrieveParams = @@ -101,7 +101,7 @@ interface EnhancedCommercialDataServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: TransactionEventEnhancedCommercialDataRetrieveParams = @@ -109,19 +109,19 @@ interface EnhancedCommercialDataServiceAsync { ): CompletableFuture> = retrieve(eventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEventEnhancedCommercialDataRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEventEnhancedCommercialDataRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, requestOptions: RequestOptions, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AccountHolderService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AccountHolderService.kt index a654cafbe..2b7500aa3 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AccountHolderService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AccountHolderService.kt @@ -50,7 +50,7 @@ interface AccountHolderService { fun create(params: AccountHolderCreateParams): AccountHolderCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: AccountHolderCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -60,7 +60,7 @@ interface AccountHolderService { fun retrieve(accountHolderToken: String): AccountHolder = retrieve(accountHolderToken, AccountHolderRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( accountHolderToken: String, params: AccountHolderRetrieveParams = AccountHolderRetrieveParams.none(), @@ -68,23 +68,23 @@ interface AccountHolderService { ): AccountHolder = retrieve(params.toBuilder().accountHolderToken(accountHolderToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( accountHolderToken: String, params: AccountHolderRetrieveParams = AccountHolderRetrieveParams.none(), ): AccountHolder = retrieve(accountHolderToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AccountHolderRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): AccountHolder - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: AccountHolderRetrieveParams): AccountHolder = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(accountHolderToken: String, requestOptions: RequestOptions): AccountHolder = retrieve(accountHolderToken, AccountHolderRetrieveParams.none(), requestOptions) @@ -104,7 +104,7 @@ interface AccountHolderService { params: AccountHolderUpdateParams, ): AccountHolderUpdateResponse = update(accountHolderToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( accountHolderToken: String, params: AccountHolderUpdateParams, @@ -112,11 +112,11 @@ interface AccountHolderService { ): AccountHolderUpdateResponse = update(params.toBuilder().accountHolderToken(accountHolderToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update(params: AccountHolderUpdateParams): AccountHolderUpdateResponse = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: AccountHolderUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -127,18 +127,18 @@ interface AccountHolderService { */ fun list(): AccountHolderListPage = list(AccountHolderListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: AccountHolderListParams = AccountHolderListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): AccountHolderListPage - /** @see [list] */ + /** @see list */ fun list( params: AccountHolderListParams = AccountHolderListParams.none() ): AccountHolderListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): AccountHolderListPage = list(AccountHolderListParams.none(), requestOptions) @@ -160,7 +160,7 @@ interface AccountHolderService { fun listDocuments(accountHolderToken: String): AccountHolderListDocumentsResponse = listDocuments(accountHolderToken, AccountHolderListDocumentsParams.none()) - /** @see [listDocuments] */ + /** @see listDocuments */ fun listDocuments( accountHolderToken: String, params: AccountHolderListDocumentsParams = AccountHolderListDocumentsParams.none(), @@ -171,25 +171,25 @@ interface AccountHolderService { requestOptions, ) - /** @see [listDocuments] */ + /** @see listDocuments */ fun listDocuments( accountHolderToken: String, params: AccountHolderListDocumentsParams = AccountHolderListDocumentsParams.none(), ): AccountHolderListDocumentsResponse = listDocuments(accountHolderToken, params, RequestOptions.none()) - /** @see [listDocuments] */ + /** @see listDocuments */ fun listDocuments( params: AccountHolderListDocumentsParams, requestOptions: RequestOptions = RequestOptions.none(), ): AccountHolderListDocumentsResponse - /** @see [listDocuments] */ + /** @see listDocuments */ fun listDocuments( params: AccountHolderListDocumentsParams ): AccountHolderListDocumentsResponse = listDocuments(params, RequestOptions.none()) - /** @see [listDocuments] */ + /** @see listDocuments */ fun listDocuments( accountHolderToken: String, requestOptions: RequestOptions, @@ -216,7 +216,7 @@ interface AccountHolderService { params: AccountHolderRetrieveDocumentParams, ): Document = retrieveDocument(documentToken, params, RequestOptions.none()) - /** @see [retrieveDocument] */ + /** @see retrieveDocument */ fun retrieveDocument( documentToken: String, params: AccountHolderRetrieveDocumentParams, @@ -224,11 +224,11 @@ interface AccountHolderService { ): Document = retrieveDocument(params.toBuilder().documentToken(documentToken).build(), requestOptions) - /** @see [retrieveDocument] */ + /** @see retrieveDocument */ fun retrieveDocument(params: AccountHolderRetrieveDocumentParams): Document = retrieveDocument(params, RequestOptions.none()) - /** @see [retrieveDocument] */ + /** @see retrieveDocument */ fun retrieveDocument( params: AccountHolderRetrieveDocumentParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -239,7 +239,7 @@ interface AccountHolderService { params: AccountHolderSimulateEnrollmentDocumentReviewParams ): Document = simulateEnrollmentDocumentReview(params, RequestOptions.none()) - /** @see [simulateEnrollmentDocumentReview] */ + /** @see simulateEnrollmentDocumentReview */ fun simulateEnrollmentDocumentReview( params: AccountHolderSimulateEnrollmentDocumentReviewParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -252,21 +252,21 @@ interface AccountHolderService { fun simulateEnrollmentReview(): AccountHolderSimulateEnrollmentReviewResponse = simulateEnrollmentReview(AccountHolderSimulateEnrollmentReviewParams.none()) - /** @see [simulateEnrollmentReview] */ + /** @see simulateEnrollmentReview */ fun simulateEnrollmentReview( params: AccountHolderSimulateEnrollmentReviewParams = AccountHolderSimulateEnrollmentReviewParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): AccountHolderSimulateEnrollmentReviewResponse - /** @see [simulateEnrollmentReview] */ + /** @see simulateEnrollmentReview */ fun simulateEnrollmentReview( params: AccountHolderSimulateEnrollmentReviewParams = AccountHolderSimulateEnrollmentReviewParams.none() ): AccountHolderSimulateEnrollmentReviewResponse = simulateEnrollmentReview(params, RequestOptions.none()) - /** @see [simulateEnrollmentReview] */ + /** @see simulateEnrollmentReview */ fun simulateEnrollmentReview( requestOptions: RequestOptions ): AccountHolderSimulateEnrollmentReviewResponse = @@ -295,7 +295,7 @@ interface AccountHolderService { params: AccountHolderUploadDocumentParams, ): Document = uploadDocument(accountHolderToken, params, RequestOptions.none()) - /** @see [uploadDocument] */ + /** @see uploadDocument */ fun uploadDocument( accountHolderToken: String, params: AccountHolderUploadDocumentParams, @@ -306,11 +306,11 @@ interface AccountHolderService { requestOptions, ) - /** @see [uploadDocument] */ + /** @see uploadDocument */ fun uploadDocument(params: AccountHolderUploadDocumentParams): Document = uploadDocument(params, RequestOptions.none()) - /** @see [uploadDocument] */ + /** @see uploadDocument */ fun uploadDocument( params: AccountHolderUploadDocumentParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -339,7 +339,7 @@ interface AccountHolderService { params: AccountHolderCreateParams ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: AccountHolderCreateParams, @@ -354,7 +354,7 @@ interface AccountHolderService { fun retrieve(accountHolderToken: String): HttpResponseFor = retrieve(accountHolderToken, AccountHolderRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( accountHolderToken: String, @@ -366,7 +366,7 @@ interface AccountHolderService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( accountHolderToken: String, @@ -374,19 +374,19 @@ interface AccountHolderService { ): HttpResponseFor = retrieve(accountHolderToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: AccountHolderRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: AccountHolderRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( accountHolderToken: String, @@ -405,7 +405,7 @@ interface AccountHolderService { ): HttpResponseFor = update(accountHolderToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( accountHolderToken: String, @@ -417,13 +417,13 @@ interface AccountHolderService { requestOptions, ) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: AccountHolderUpdateParams ): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: AccountHolderUpdateParams, @@ -437,20 +437,20 @@ interface AccountHolderService { @MustBeClosed fun list(): HttpResponseFor = list(AccountHolderListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: AccountHolderListParams = AccountHolderListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: AccountHolderListParams = AccountHolderListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(AccountHolderListParams.none(), requestOptions) @@ -466,7 +466,7 @@ interface AccountHolderService { ): HttpResponseFor = listDocuments(accountHolderToken, AccountHolderListDocumentsParams.none()) - /** @see [listDocuments] */ + /** @see listDocuments */ @MustBeClosed fun listDocuments( accountHolderToken: String, @@ -478,7 +478,7 @@ interface AccountHolderService { requestOptions, ) - /** @see [listDocuments] */ + /** @see listDocuments */ @MustBeClosed fun listDocuments( accountHolderToken: String, @@ -486,21 +486,21 @@ interface AccountHolderService { ): HttpResponseFor = listDocuments(accountHolderToken, params, RequestOptions.none()) - /** @see [listDocuments] */ + /** @see listDocuments */ @MustBeClosed fun listDocuments( params: AccountHolderListDocumentsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [listDocuments] */ + /** @see listDocuments */ @MustBeClosed fun listDocuments( params: AccountHolderListDocumentsParams ): HttpResponseFor = listDocuments(params, RequestOptions.none()) - /** @see [listDocuments] */ + /** @see listDocuments */ @MustBeClosed fun listDocuments( accountHolderToken: String, @@ -524,7 +524,7 @@ interface AccountHolderService { ): HttpResponseFor = retrieveDocument(documentToken, params, RequestOptions.none()) - /** @see [retrieveDocument] */ + /** @see retrieveDocument */ @MustBeClosed fun retrieveDocument( documentToken: String, @@ -536,13 +536,13 @@ interface AccountHolderService { requestOptions, ) - /** @see [retrieveDocument] */ + /** @see retrieveDocument */ @MustBeClosed fun retrieveDocument( params: AccountHolderRetrieveDocumentParams ): HttpResponseFor = retrieveDocument(params, RequestOptions.none()) - /** @see [retrieveDocument] */ + /** @see retrieveDocument */ @MustBeClosed fun retrieveDocument( params: AccountHolderRetrieveDocumentParams, @@ -560,7 +560,7 @@ interface AccountHolderService { ): HttpResponseFor = simulateEnrollmentDocumentReview(params, RequestOptions.none()) - /** @see [simulateEnrollmentDocumentReview] */ + /** @see simulateEnrollmentDocumentReview */ @MustBeClosed fun simulateEnrollmentDocumentReview( params: AccountHolderSimulateEnrollmentDocumentReviewParams, @@ -576,7 +576,7 @@ interface AccountHolderService { HttpResponseFor = simulateEnrollmentReview(AccountHolderSimulateEnrollmentReviewParams.none()) - /** @see [simulateEnrollmentReview] */ + /** @see simulateEnrollmentReview */ @MustBeClosed fun simulateEnrollmentReview( params: AccountHolderSimulateEnrollmentReviewParams = @@ -584,7 +584,7 @@ interface AccountHolderService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [simulateEnrollmentReview] */ + /** @see simulateEnrollmentReview */ @MustBeClosed fun simulateEnrollmentReview( params: AccountHolderSimulateEnrollmentReviewParams = @@ -592,7 +592,7 @@ interface AccountHolderService { ): HttpResponseFor = simulateEnrollmentReview(params, RequestOptions.none()) - /** @see [simulateEnrollmentReview] */ + /** @see simulateEnrollmentReview */ @MustBeClosed fun simulateEnrollmentReview( requestOptions: RequestOptions @@ -614,7 +614,7 @@ interface AccountHolderService { ): HttpResponseFor = uploadDocument(accountHolderToken, params, RequestOptions.none()) - /** @see [uploadDocument] */ + /** @see uploadDocument */ @MustBeClosed fun uploadDocument( accountHolderToken: String, @@ -626,12 +626,12 @@ interface AccountHolderService { requestOptions, ) - /** @see [uploadDocument] */ + /** @see uploadDocument */ @MustBeClosed fun uploadDocument(params: AccountHolderUploadDocumentParams): HttpResponseFor = uploadDocument(params, RequestOptions.none()) - /** @see [uploadDocument] */ + /** @see uploadDocument */ @MustBeClosed fun uploadDocument( params: AccountHolderUploadDocumentParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AccountService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AccountService.kt index d50654f1b..90f07aaa3 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AccountService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AccountService.kt @@ -33,29 +33,29 @@ interface AccountService { fun retrieve(accountToken: String): Account = retrieve(accountToken, AccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( accountToken: String, params: AccountRetrieveParams = AccountRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Account = retrieve(params.toBuilder().accountToken(accountToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( accountToken: String, params: AccountRetrieveParams = AccountRetrieveParams.none(), ): Account = retrieve(accountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): Account - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: AccountRetrieveParams): Account = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(accountToken: String, requestOptions: RequestOptions): Account = retrieve(accountToken, AccountRetrieveParams.none(), requestOptions) @@ -66,46 +66,46 @@ interface AccountService { */ fun update(accountToken: String): Account = update(accountToken, AccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( accountToken: String, params: AccountUpdateParams = AccountUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Account = update(params.toBuilder().accountToken(accountToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( accountToken: String, params: AccountUpdateParams = AccountUpdateParams.none(), ): Account = update(accountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: AccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Account - /** @see [update] */ + /** @see update */ fun update(params: AccountUpdateParams): Account = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(accountToken: String, requestOptions: RequestOptions): Account = update(accountToken, AccountUpdateParams.none(), requestOptions) /** List account configurations. */ fun list(): AccountListPage = list(AccountListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: AccountListParams = AccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): AccountListPage - /** @see [list] */ + /** @see list */ fun list(params: AccountListParams = AccountListParams.none()): AccountListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): AccountListPage = list(AccountListParams.none(), requestOptions) @@ -118,7 +118,7 @@ interface AccountService { fun retrieveSpendLimits(accountToken: String): AccountSpendLimits = retrieveSpendLimits(accountToken, AccountRetrieveSpendLimitsParams.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( accountToken: String, params: AccountRetrieveSpendLimitsParams = AccountRetrieveSpendLimitsParams.none(), @@ -126,23 +126,23 @@ interface AccountService { ): AccountSpendLimits = retrieveSpendLimits(params.toBuilder().accountToken(accountToken).build(), requestOptions) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( accountToken: String, params: AccountRetrieveSpendLimitsParams = AccountRetrieveSpendLimitsParams.none(), ): AccountSpendLimits = retrieveSpendLimits(accountToken, params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( params: AccountRetrieveSpendLimitsParams, requestOptions: RequestOptions = RequestOptions.none(), ): AccountSpendLimits - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits(params: AccountRetrieveSpendLimitsParams): AccountSpendLimits = retrieveSpendLimits(params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( accountToken: String, requestOptions: RequestOptions, @@ -167,7 +167,7 @@ interface AccountService { fun retrieve(accountToken: String): HttpResponseFor = retrieve(accountToken, AccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( accountToken: String, @@ -176,26 +176,26 @@ interface AccountService { ): HttpResponseFor = retrieve(params.toBuilder().accountToken(accountToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( accountToken: String, params: AccountRetrieveParams = AccountRetrieveParams.none(), ): HttpResponseFor = retrieve(accountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: AccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: AccountRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( accountToken: String, @@ -211,7 +211,7 @@ interface AccountService { fun update(accountToken: String): HttpResponseFor = update(accountToken, AccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( accountToken: String, @@ -220,26 +220,26 @@ interface AccountService { ): HttpResponseFor = update(params.toBuilder().accountToken(accountToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( accountToken: String, params: AccountUpdateParams = AccountUpdateParams.none(), ): HttpResponseFor = update(accountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: AccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: AccountUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(accountToken: String, requestOptions: RequestOptions): HttpResponseFor = update(accountToken, AccountUpdateParams.none(), requestOptions) @@ -250,20 +250,20 @@ interface AccountService { */ @MustBeClosed fun list(): HttpResponseFor = list(AccountListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: AccountListParams = AccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: AccountListParams = AccountListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(AccountListParams.none(), requestOptions) @@ -276,7 +276,7 @@ interface AccountService { fun retrieveSpendLimits(accountToken: String): HttpResponseFor = retrieveSpendLimits(accountToken, AccountRetrieveSpendLimitsParams.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( accountToken: String, @@ -288,7 +288,7 @@ interface AccountService { requestOptions, ) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( accountToken: String, @@ -296,20 +296,20 @@ interface AccountService { ): HttpResponseFor = retrieveSpendLimits(accountToken, params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( params: AccountRetrieveSpendLimitsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( params: AccountRetrieveSpendLimitsParams ): HttpResponseFor = retrieveSpendLimits(params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( accountToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AggregateBalanceService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AggregateBalanceService.kt index 09850d034..7e82ac01c 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AggregateBalanceService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AggregateBalanceService.kt @@ -27,18 +27,18 @@ interface AggregateBalanceService { /** Get the aggregated balance across all end-user accounts by financial account type */ fun list(): AggregateBalanceListPage = list(AggregateBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: AggregateBalanceListParams = AggregateBalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): AggregateBalanceListPage - /** @see [list] */ + /** @see list */ fun list( params: AggregateBalanceListParams = AggregateBalanceListParams.none() ): AggregateBalanceListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): AggregateBalanceListPage = list(AggregateBalanceListParams.none(), requestOptions) @@ -65,20 +65,20 @@ interface AggregateBalanceService { fun list(): HttpResponseFor = list(AggregateBalanceListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: AggregateBalanceListParams = AggregateBalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: AggregateBalanceListParams = AggregateBalanceListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(AggregateBalanceListParams.none(), requestOptions) diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AuthStreamEnrollmentService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AuthStreamEnrollmentService.kt index c5fda50d4..1e7bc141e 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AuthStreamEnrollmentService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/AuthStreamEnrollmentService.kt @@ -36,20 +36,20 @@ interface AuthStreamEnrollmentService { fun retrieveSecret(): AuthStreamSecret = retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: AuthStreamEnrollmentRetrieveSecretParams = AuthStreamEnrollmentRetrieveSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): AuthStreamSecret - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: AuthStreamEnrollmentRetrieveSecretParams = AuthStreamEnrollmentRetrieveSecretParams.none() ): AuthStreamSecret = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret(requestOptions: RequestOptions): AuthStreamSecret = retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams.none(), requestOptions) @@ -61,20 +61,20 @@ interface AuthStreamEnrollmentService { */ fun rotateSecret() = rotateSecret(AuthStreamEnrollmentRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: AuthStreamEnrollmentRotateSecretParams = AuthStreamEnrollmentRotateSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: AuthStreamEnrollmentRotateSecretParams = AuthStreamEnrollmentRotateSecretParams.none() ) = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(requestOptions: RequestOptions) = rotateSecret(AuthStreamEnrollmentRotateSecretParams.none(), requestOptions) @@ -101,7 +101,7 @@ interface AuthStreamEnrollmentService { fun retrieveSecret(): HttpResponseFor = retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( params: AuthStreamEnrollmentRetrieveSecretParams = @@ -109,14 +109,14 @@ interface AuthStreamEnrollmentService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( params: AuthStreamEnrollmentRetrieveSecretParams = AuthStreamEnrollmentRetrieveSecretParams.none() ): HttpResponseFor = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret(requestOptions: RequestOptions): HttpResponseFor = retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams.none(), requestOptions) @@ -129,7 +129,7 @@ interface AuthStreamEnrollmentService { fun rotateSecret(): HttpResponse = rotateSecret(AuthStreamEnrollmentRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( params: AuthStreamEnrollmentRotateSecretParams = @@ -137,14 +137,14 @@ interface AuthStreamEnrollmentService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( params: AuthStreamEnrollmentRotateSecretParams = AuthStreamEnrollmentRotateSecretParams.none() ): HttpResponse = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret(requestOptions: RequestOptions): HttpResponse = rotateSecret(AuthStreamEnrollmentRotateSecretParams.none(), requestOptions) diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/BalanceService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/BalanceService.kt index 9714ace14..fc2dad179 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/BalanceService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/BalanceService.kt @@ -27,17 +27,17 @@ interface BalanceService { /** Get the balances for a program, business, or a given end-user account */ fun list(): BalanceListPage = list(BalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: BalanceListParams = BalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): BalanceListPage - /** @see [list] */ + /** @see list */ fun list(params: BalanceListParams = BalanceListParams.none()): BalanceListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): BalanceListPage = list(BalanceListParams.none(), requestOptions) @@ -57,20 +57,20 @@ interface BalanceService { */ @MustBeClosed fun list(): HttpResponseFor = list(BalanceListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: BalanceListParams = BalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: BalanceListParams = BalanceListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(BalanceListParams.none(), requestOptions) diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/BookTransferService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/BookTransferService.kt index dc0b85724..9e2d54d66 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/BookTransferService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/BookTransferService.kt @@ -34,7 +34,7 @@ interface BookTransferService { fun create(params: BookTransferCreateParams): BookTransferResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: BookTransferCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -44,7 +44,7 @@ interface BookTransferService { fun retrieve(bookTransferToken: String): BookTransferResponse = retrieve(bookTransferToken, BookTransferRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( bookTransferToken: String, params: BookTransferRetrieveParams = BookTransferRetrieveParams.none(), @@ -52,40 +52,40 @@ interface BookTransferService { ): BookTransferResponse = retrieve(params.toBuilder().bookTransferToken(bookTransferToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( bookTransferToken: String, params: BookTransferRetrieveParams = BookTransferRetrieveParams.none(), ): BookTransferResponse = retrieve(bookTransferToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: BookTransferRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): BookTransferResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: BookTransferRetrieveParams): BookTransferResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(bookTransferToken: String, requestOptions: RequestOptions): BookTransferResponse = retrieve(bookTransferToken, BookTransferRetrieveParams.none(), requestOptions) /** List book transfers */ fun list(): BookTransferListPage = list(BookTransferListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: BookTransferListParams = BookTransferListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): BookTransferListPage - /** @see [list] */ + /** @see list */ fun list(params: BookTransferListParams = BookTransferListParams.none()): BookTransferListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): BookTransferListPage = list(BookTransferListParams.none(), requestOptions) @@ -93,7 +93,7 @@ interface BookTransferService { fun reverse(bookTransferToken: String): BookTransferResponse = reverse(bookTransferToken, BookTransferReverseParams.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( bookTransferToken: String, params: BookTransferReverseParams = BookTransferReverseParams.none(), @@ -101,23 +101,23 @@ interface BookTransferService { ): BookTransferResponse = reverse(params.toBuilder().bookTransferToken(bookTransferToken).build(), requestOptions) - /** @see [reverse] */ + /** @see reverse */ fun reverse( bookTransferToken: String, params: BookTransferReverseParams = BookTransferReverseParams.none(), ): BookTransferResponse = reverse(bookTransferToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: BookTransferReverseParams, requestOptions: RequestOptions = RequestOptions.none(), ): BookTransferResponse - /** @see [reverse] */ + /** @see reverse */ fun reverse(params: BookTransferReverseParams): BookTransferResponse = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse(bookTransferToken: String, requestOptions: RequestOptions): BookTransferResponse = reverse(bookTransferToken, BookTransferReverseParams.none(), requestOptions) @@ -143,7 +143,7 @@ interface BookTransferService { fun create(params: BookTransferCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: BookTransferCreateParams, @@ -158,7 +158,7 @@ interface BookTransferService { fun retrieve(bookTransferToken: String): HttpResponseFor = retrieve(bookTransferToken, BookTransferRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( bookTransferToken: String, @@ -170,7 +170,7 @@ interface BookTransferService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( bookTransferToken: String, @@ -178,19 +178,19 @@ interface BookTransferService { ): HttpResponseFor = retrieve(bookTransferToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: BookTransferRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: BookTransferRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( bookTransferToken: String, @@ -205,20 +205,20 @@ interface BookTransferService { @MustBeClosed fun list(): HttpResponseFor = list(BookTransferListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: BookTransferListParams = BookTransferListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: BookTransferListParams = BookTransferListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(BookTransferListParams.none(), requestOptions) @@ -231,7 +231,7 @@ interface BookTransferService { fun reverse(bookTransferToken: String): HttpResponseFor = reverse(bookTransferToken, BookTransferReverseParams.none()) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse( bookTransferToken: String, @@ -240,7 +240,7 @@ interface BookTransferService { ): HttpResponseFor = reverse(params.toBuilder().bookTransferToken(bookTransferToken).build(), requestOptions) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse( bookTransferToken: String, @@ -248,19 +248,19 @@ interface BookTransferService { ): HttpResponseFor = reverse(bookTransferToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse( params: BookTransferReverseParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse(params: BookTransferReverseParams): HttpResponseFor = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse( bookTransferToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/CardProgramService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/CardProgramService.kt index dd0efd2df..f4f32b265 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/CardProgramService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/CardProgramService.kt @@ -30,7 +30,7 @@ interface CardProgramService { fun retrieve(cardProgramToken: String): CardProgram = retrieve(cardProgramToken, CardProgramRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardProgramToken: String, params: CardProgramRetrieveParams = CardProgramRetrieveParams.none(), @@ -38,40 +38,40 @@ interface CardProgramService { ): CardProgram = retrieve(params.toBuilder().cardProgramToken(cardProgramToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardProgramToken: String, params: CardProgramRetrieveParams = CardProgramRetrieveParams.none(), ): CardProgram = retrieve(cardProgramToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardProgramRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CardProgram - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: CardProgramRetrieveParams): CardProgram = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(cardProgramToken: String, requestOptions: RequestOptions): CardProgram = retrieve(cardProgramToken, CardProgramRetrieveParams.none(), requestOptions) /** List card programs. */ fun list(): CardProgramListPage = list(CardProgramListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardProgramListParams = CardProgramListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CardProgramListPage - /** @see [list] */ + /** @see list */ fun list(params: CardProgramListParams = CardProgramListParams.none()): CardProgramListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CardProgramListPage = list(CardProgramListParams.none(), requestOptions) @@ -97,7 +97,7 @@ interface CardProgramService { fun retrieve(cardProgramToken: String): HttpResponseFor = retrieve(cardProgramToken, CardProgramRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( cardProgramToken: String, @@ -106,26 +106,26 @@ interface CardProgramService { ): HttpResponseFor = retrieve(params.toBuilder().cardProgramToken(cardProgramToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( cardProgramToken: String, params: CardProgramRetrieveParams = CardProgramRetrieveParams.none(), ): HttpResponseFor = retrieve(cardProgramToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: CardProgramRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: CardProgramRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( cardProgramToken: String, @@ -140,20 +140,20 @@ interface CardProgramService { @MustBeClosed fun list(): HttpResponseFor = list(CardProgramListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CardProgramListParams = CardProgramListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CardProgramListParams = CardProgramListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(CardProgramListParams.none(), requestOptions) diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/CardService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/CardService.kt index 1db690109..a3834c5ab 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/CardService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/CardService.kt @@ -56,7 +56,7 @@ interface CardService { */ fun create(params: CardCreateParams): Card = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CardCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -65,27 +65,27 @@ interface CardService { /** Get card configuration such as spend limit and state. */ fun retrieve(cardToken: String): Card = retrieve(cardToken, CardRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( cardToken: String, params: CardRetrieveParams = CardRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Card = retrieve(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(cardToken: String, params: CardRetrieveParams = CardRetrieveParams.none()): Card = retrieve(cardToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): Card - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: CardRetrieveParams): Card = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(cardToken: String, requestOptions: RequestOptions): Card = retrieve(cardToken, CardRetrieveParams.none(), requestOptions) @@ -96,44 +96,44 @@ interface CardService { */ fun update(cardToken: String): Card = update(cardToken, CardUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( cardToken: String, params: CardUpdateParams = CardUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Card = update(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update(cardToken: String, params: CardUpdateParams = CardUpdateParams.none()): Card = update(cardToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: CardUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Card - /** @see [update] */ + /** @see update */ fun update(params: CardUpdateParams): Card = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(cardToken: String, requestOptions: RequestOptions): Card = update(cardToken, CardUpdateParams.none(), requestOptions) /** List cards. */ fun list(): CardListPage = list(CardListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardListParams = CardListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CardListPage - /** @see [list] */ + /** @see list */ fun list(params: CardListParams = CardListParams.none()): CardListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CardListPage = list(CardListParams.none(), requestOptions) @@ -150,18 +150,18 @@ interface CardService { fun convertPhysical(cardToken: String, params: CardConvertPhysicalParams): Card = convertPhysical(cardToken, params, RequestOptions.none()) - /** @see [convertPhysical] */ + /** @see convertPhysical */ fun convertPhysical( cardToken: String, params: CardConvertPhysicalParams, requestOptions: RequestOptions = RequestOptions.none(), ): Card = convertPhysical(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [convertPhysical] */ + /** @see convertPhysical */ fun convertPhysical(params: CardConvertPhysicalParams): Card = convertPhysical(params, RequestOptions.none()) - /** @see [convertPhysical] */ + /** @see convertPhysical */ fun convertPhysical( params: CardConvertPhysicalParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -195,7 +195,7 @@ interface CardService { */ fun embed(params: CardEmbedParams): String = embed(params, RequestOptions.none()) - /** @see [embed] */ + /** @see embed */ fun embed( params: CardEmbedParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -212,7 +212,7 @@ interface CardService { fun provision(cardToken: String): CardProvisionResponse = provision(cardToken, CardProvisionParams.none()) - /** @see [provision] */ + /** @see provision */ fun provision( cardToken: String, params: CardProvisionParams = CardProvisionParams.none(), @@ -220,23 +220,23 @@ interface CardService { ): CardProvisionResponse = provision(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [provision] */ + /** @see provision */ fun provision( cardToken: String, params: CardProvisionParams = CardProvisionParams.none(), ): CardProvisionResponse = provision(cardToken, params, RequestOptions.none()) - /** @see [provision] */ + /** @see provision */ fun provision( params: CardProvisionParams, requestOptions: RequestOptions = RequestOptions.none(), ): CardProvisionResponse - /** @see [provision] */ + /** @see provision */ fun provision(params: CardProvisionParams): CardProvisionResponse = provision(params, RequestOptions.none()) - /** @see [provision] */ + /** @see provision */ fun provision(cardToken: String, requestOptions: RequestOptions): CardProvisionResponse = provision(cardToken, CardProvisionParams.none(), requestOptions) @@ -248,27 +248,27 @@ interface CardService { */ fun reissue(cardToken: String): Card = reissue(cardToken, CardReissueParams.none()) - /** @see [reissue] */ + /** @see reissue */ fun reissue( cardToken: String, params: CardReissueParams = CardReissueParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Card = reissue(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [reissue] */ + /** @see reissue */ fun reissue(cardToken: String, params: CardReissueParams = CardReissueParams.none()): Card = reissue(cardToken, params, RequestOptions.none()) - /** @see [reissue] */ + /** @see reissue */ fun reissue( params: CardReissueParams, requestOptions: RequestOptions = RequestOptions.none(), ): Card - /** @see [reissue] */ + /** @see reissue */ fun reissue(params: CardReissueParams): Card = reissue(params, RequestOptions.none()) - /** @see [reissue] */ + /** @see reissue */ fun reissue(cardToken: String, requestOptions: RequestOptions): Card = reissue(cardToken, CardReissueParams.none(), requestOptions) @@ -285,17 +285,17 @@ interface CardService { fun renew(cardToken: String, params: CardRenewParams): Card = renew(cardToken, params, RequestOptions.none()) - /** @see [renew] */ + /** @see renew */ fun renew( cardToken: String, params: CardRenewParams, requestOptions: RequestOptions = RequestOptions.none(), ): Card = renew(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [renew] */ + /** @see renew */ fun renew(params: CardRenewParams): Card = renew(params, RequestOptions.none()) - /** @see [renew] */ + /** @see renew */ fun renew(params: CardRenewParams, requestOptions: RequestOptions = RequestOptions.none()): Card /** @@ -307,7 +307,7 @@ interface CardService { fun retrieveSpendLimits(cardToken: String): CardSpendLimits = retrieveSpendLimits(cardToken, CardRetrieveSpendLimitsParams.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( cardToken: String, params: CardRetrieveSpendLimitsParams = CardRetrieveSpendLimitsParams.none(), @@ -315,23 +315,23 @@ interface CardService { ): CardSpendLimits = retrieveSpendLimits(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( cardToken: String, params: CardRetrieveSpendLimitsParams = CardRetrieveSpendLimitsParams.none(), ): CardSpendLimits = retrieveSpendLimits(cardToken, params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits( params: CardRetrieveSpendLimitsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CardSpendLimits - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits(params: CardRetrieveSpendLimitsParams): CardSpendLimits = retrieveSpendLimits(params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ fun retrieveSpendLimits(cardToken: String, requestOptions: RequestOptions): CardSpendLimits = retrieveSpendLimits(cardToken, CardRetrieveSpendLimitsParams.none(), requestOptions) @@ -344,7 +344,7 @@ interface CardService { fun searchByPan(params: CardSearchByPanParams): Card = searchByPan(params, RequestOptions.none()) - /** @see [searchByPan] */ + /** @see searchByPan */ fun searchByPan( params: CardSearchByPanParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -361,7 +361,7 @@ interface CardService { fun webProvision(cardToken: String): CardWebProvisionResponse = webProvision(cardToken, CardWebProvisionParams.none()) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( cardToken: String, params: CardWebProvisionParams = CardWebProvisionParams.none(), @@ -369,23 +369,23 @@ interface CardService { ): CardWebProvisionResponse = webProvision(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( cardToken: String, params: CardWebProvisionParams = CardWebProvisionParams.none(), ): CardWebProvisionResponse = webProvision(cardToken, params, RequestOptions.none()) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision( params: CardWebProvisionParams, requestOptions: RequestOptions = RequestOptions.none(), ): CardWebProvisionResponse - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision(params: CardWebProvisionParams): CardWebProvisionResponse = webProvision(params, RequestOptions.none()) - /** @see [webProvision] */ + /** @see webProvision */ fun webProvision(cardToken: String, requestOptions: RequestOptions): CardWebProvisionResponse = webProvision(cardToken, CardWebProvisionParams.none(), requestOptions) @@ -423,7 +423,7 @@ interface CardService { fun create(params: CardCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: CardCreateParams, @@ -438,7 +438,7 @@ interface CardService { fun retrieve(cardToken: String): HttpResponseFor = retrieve(cardToken, CardRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( cardToken: String, @@ -447,26 +447,26 @@ interface CardService { ): HttpResponseFor = retrieve(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( cardToken: String, params: CardRetrieveParams = CardRetrieveParams.none(), ): HttpResponseFor = retrieve(cardToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: CardRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: CardRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(cardToken: String, requestOptions: RequestOptions): HttpResponseFor = retrieve(cardToken, CardRetrieveParams.none(), requestOptions) @@ -479,7 +479,7 @@ interface CardService { fun update(cardToken: String): HttpResponseFor = update(cardToken, CardUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( cardToken: String, @@ -488,26 +488,26 @@ interface CardService { ): HttpResponseFor = update(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( cardToken: String, params: CardUpdateParams = CardUpdateParams.none(), ): HttpResponseFor = update(cardToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: CardUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: CardUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(cardToken: String, requestOptions: RequestOptions): HttpResponseFor = update(cardToken, CardUpdateParams.none(), requestOptions) @@ -518,19 +518,19 @@ interface CardService { */ @MustBeClosed fun list(): HttpResponseFor = list(CardListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CardListParams = CardListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(params: CardListParams = CardListParams.none()): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(CardListParams.none(), requestOptions) @@ -545,7 +545,7 @@ interface CardService { params: CardConvertPhysicalParams, ): HttpResponseFor = convertPhysical(cardToken, params, RequestOptions.none()) - /** @see [convertPhysical] */ + /** @see convertPhysical */ @MustBeClosed fun convertPhysical( cardToken: String, @@ -554,12 +554,12 @@ interface CardService { ): HttpResponseFor = convertPhysical(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [convertPhysical] */ + /** @see convertPhysical */ @MustBeClosed fun convertPhysical(params: CardConvertPhysicalParams): HttpResponseFor = convertPhysical(params, RequestOptions.none()) - /** @see [convertPhysical] */ + /** @see convertPhysical */ @MustBeClosed fun convertPhysical( params: CardConvertPhysicalParams, @@ -574,7 +574,7 @@ interface CardService { fun embed(params: CardEmbedParams): HttpResponseFor = embed(params, RequestOptions.none()) - /** @see [embed] */ + /** @see embed */ @MustBeClosed fun embed( params: CardEmbedParams, @@ -589,7 +589,7 @@ interface CardService { fun provision(cardToken: String): HttpResponseFor = provision(cardToken, CardProvisionParams.none()) - /** @see [provision] */ + /** @see provision */ @MustBeClosed fun provision( cardToken: String, @@ -598,7 +598,7 @@ interface CardService { ): HttpResponseFor = provision(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [provision] */ + /** @see provision */ @MustBeClosed fun provision( cardToken: String, @@ -606,19 +606,19 @@ interface CardService { ): HttpResponseFor = provision(cardToken, params, RequestOptions.none()) - /** @see [provision] */ + /** @see provision */ @MustBeClosed fun provision( params: CardProvisionParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [provision] */ + /** @see provision */ @MustBeClosed fun provision(params: CardProvisionParams): HttpResponseFor = provision(params, RequestOptions.none()) - /** @see [provision] */ + /** @see provision */ @MustBeClosed fun provision( cardToken: String, @@ -634,7 +634,7 @@ interface CardService { fun reissue(cardToken: String): HttpResponseFor = reissue(cardToken, CardReissueParams.none()) - /** @see [reissue] */ + /** @see reissue */ @MustBeClosed fun reissue( cardToken: String, @@ -643,26 +643,26 @@ interface CardService { ): HttpResponseFor = reissue(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [reissue] */ + /** @see reissue */ @MustBeClosed fun reissue( cardToken: String, params: CardReissueParams = CardReissueParams.none(), ): HttpResponseFor = reissue(cardToken, params, RequestOptions.none()) - /** @see [reissue] */ + /** @see reissue */ @MustBeClosed fun reissue( params: CardReissueParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [reissue] */ + /** @see reissue */ @MustBeClosed fun reissue(params: CardReissueParams): HttpResponseFor = reissue(params, RequestOptions.none()) - /** @see [reissue] */ + /** @see reissue */ @MustBeClosed fun reissue(cardToken: String, requestOptions: RequestOptions): HttpResponseFor = reissue(cardToken, CardReissueParams.none(), requestOptions) @@ -675,7 +675,7 @@ interface CardService { fun renew(cardToken: String, params: CardRenewParams): HttpResponseFor = renew(cardToken, params, RequestOptions.none()) - /** @see [renew] */ + /** @see renew */ @MustBeClosed fun renew( cardToken: String, @@ -684,12 +684,12 @@ interface CardService { ): HttpResponseFor = renew(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [renew] */ + /** @see renew */ @MustBeClosed fun renew(params: CardRenewParams): HttpResponseFor = renew(params, RequestOptions.none()) - /** @see [renew] */ + /** @see renew */ @MustBeClosed fun renew( params: CardRenewParams, @@ -704,7 +704,7 @@ interface CardService { fun retrieveSpendLimits(cardToken: String): HttpResponseFor = retrieveSpendLimits(cardToken, CardRetrieveSpendLimitsParams.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( cardToken: String, @@ -713,7 +713,7 @@ interface CardService { ): HttpResponseFor = retrieveSpendLimits(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( cardToken: String, @@ -721,20 +721,20 @@ interface CardService { ): HttpResponseFor = retrieveSpendLimits(cardToken, params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( params: CardRetrieveSpendLimitsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( params: CardRetrieveSpendLimitsParams ): HttpResponseFor = retrieveSpendLimits(params, RequestOptions.none()) - /** @see [retrieveSpendLimits] */ + /** @see retrieveSpendLimits */ @MustBeClosed fun retrieveSpendLimits( cardToken: String, @@ -750,7 +750,7 @@ interface CardService { fun searchByPan(params: CardSearchByPanParams): HttpResponseFor = searchByPan(params, RequestOptions.none()) - /** @see [searchByPan] */ + /** @see searchByPan */ @MustBeClosed fun searchByPan( params: CardSearchByPanParams, @@ -765,7 +765,7 @@ interface CardService { fun webProvision(cardToken: String): HttpResponseFor = webProvision(cardToken, CardWebProvisionParams.none()) - /** @see [webProvision] */ + /** @see webProvision */ @MustBeClosed fun webProvision( cardToken: String, @@ -774,7 +774,7 @@ interface CardService { ): HttpResponseFor = webProvision(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [webProvision] */ + /** @see webProvision */ @MustBeClosed fun webProvision( cardToken: String, @@ -782,20 +782,20 @@ interface CardService { ): HttpResponseFor = webProvision(cardToken, params, RequestOptions.none()) - /** @see [webProvision] */ + /** @see webProvision */ @MustBeClosed fun webProvision( params: CardWebProvisionParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [webProvision] */ + /** @see webProvision */ @MustBeClosed fun webProvision( params: CardWebProvisionParams ): HttpResponseFor = webProvision(params, RequestOptions.none()) - /** @see [webProvision] */ + /** @see webProvision */ @MustBeClosed fun webProvision( cardToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/DigitalCardArtService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/DigitalCardArtService.kt index f67027531..46af2299c 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/DigitalCardArtService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/DigitalCardArtService.kt @@ -30,7 +30,7 @@ interface DigitalCardArtService { fun retrieve(digitalCardArtToken: String): DigitalCardArt = retrieve(digitalCardArtToken, DigitalCardArtRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( digitalCardArtToken: String, params: DigitalCardArtRetrieveParams = DigitalCardArtRetrieveParams.none(), @@ -41,41 +41,41 @@ interface DigitalCardArtService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( digitalCardArtToken: String, params: DigitalCardArtRetrieveParams = DigitalCardArtRetrieveParams.none(), ): DigitalCardArt = retrieve(digitalCardArtToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DigitalCardArtRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): DigitalCardArt - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: DigitalCardArtRetrieveParams): DigitalCardArt = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(digitalCardArtToken: String, requestOptions: RequestOptions): DigitalCardArt = retrieve(digitalCardArtToken, DigitalCardArtRetrieveParams.none(), requestOptions) /** List digital card art. */ fun list(): DigitalCardArtListPage = list(DigitalCardArtListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: DigitalCardArtListParams = DigitalCardArtListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): DigitalCardArtListPage - /** @see [list] */ + /** @see list */ fun list( params: DigitalCardArtListParams = DigitalCardArtListParams.none() ): DigitalCardArtListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): DigitalCardArtListPage = list(DigitalCardArtListParams.none(), requestOptions) @@ -101,7 +101,7 @@ interface DigitalCardArtService { fun retrieve(digitalCardArtToken: String): HttpResponseFor = retrieve(digitalCardArtToken, DigitalCardArtRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( digitalCardArtToken: String, @@ -113,7 +113,7 @@ interface DigitalCardArtService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( digitalCardArtToken: String, @@ -121,19 +121,19 @@ interface DigitalCardArtService { ): HttpResponseFor = retrieve(digitalCardArtToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: DigitalCardArtRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: DigitalCardArtRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( digitalCardArtToken: String, @@ -148,20 +148,20 @@ interface DigitalCardArtService { @MustBeClosed fun list(): HttpResponseFor = list(DigitalCardArtListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: DigitalCardArtListParams = DigitalCardArtListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: DigitalCardArtListParams = DigitalCardArtListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(DigitalCardArtListParams.none(), requestOptions) diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/DisputeService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/DisputeService.kt index 4c519e870..6a3513de8 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/DisputeService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/DisputeService.kt @@ -38,7 +38,7 @@ interface DisputeService { /** Initiate a dispute. */ fun create(params: DisputeCreateParams): Dispute = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: DisputeCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -48,104 +48,104 @@ interface DisputeService { fun retrieve(disputeToken: String): Dispute = retrieve(disputeToken, DisputeRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( disputeToken: String, params: DisputeRetrieveParams = DisputeRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Dispute = retrieve(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( disputeToken: String, params: DisputeRetrieveParams = DisputeRetrieveParams.none(), ): Dispute = retrieve(disputeToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DisputeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): Dispute - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: DisputeRetrieveParams): Dispute = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(disputeToken: String, requestOptions: RequestOptions): Dispute = retrieve(disputeToken, DisputeRetrieveParams.none(), requestOptions) /** Update dispute. Can only be modified if status is `NEW`. */ fun update(disputeToken: String): Dispute = update(disputeToken, DisputeUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( disputeToken: String, params: DisputeUpdateParams = DisputeUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Dispute = update(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( disputeToken: String, params: DisputeUpdateParams = DisputeUpdateParams.none(), ): Dispute = update(disputeToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: DisputeUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Dispute - /** @see [update] */ + /** @see update */ fun update(params: DisputeUpdateParams): Dispute = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(disputeToken: String, requestOptions: RequestOptions): Dispute = update(disputeToken, DisputeUpdateParams.none(), requestOptions) /** List disputes. */ fun list(): DisputeListPage = list(DisputeListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: DisputeListParams = DisputeListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): DisputeListPage - /** @see [list] */ + /** @see list */ fun list(params: DisputeListParams = DisputeListParams.none()): DisputeListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): DisputeListPage = list(DisputeListParams.none(), requestOptions) /** Withdraw dispute. */ fun delete(disputeToken: String): Dispute = delete(disputeToken, DisputeDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( disputeToken: String, params: DisputeDeleteParams = DisputeDeleteParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Dispute = delete(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete( disputeToken: String, params: DisputeDeleteParams = DisputeDeleteParams.none(), ): Dispute = delete(disputeToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: DisputeDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): Dispute - /** @see [delete] */ + /** @see delete */ fun delete(params: DisputeDeleteParams): Dispute = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete(disputeToken: String, requestOptions: RequestOptions): Dispute = delete(disputeToken, DisputeDeleteParams.none(), requestOptions) @@ -158,7 +158,7 @@ interface DisputeService { params: DisputeDeleteEvidenceParams, ): DisputeEvidence = deleteEvidence(evidenceToken, params, RequestOptions.none()) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ fun deleteEvidence( evidenceToken: String, params: DisputeDeleteEvidenceParams, @@ -166,11 +166,11 @@ interface DisputeService { ): DisputeEvidence = deleteEvidence(params.toBuilder().evidenceToken(evidenceToken).build(), requestOptions) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ fun deleteEvidence(params: DisputeDeleteEvidenceParams): DisputeEvidence = deleteEvidence(params, RequestOptions.none()) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ fun deleteEvidence( params: DisputeDeleteEvidenceParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -186,7 +186,7 @@ interface DisputeService { fun initiateEvidenceUpload(disputeToken: String): DisputeEvidence = initiateEvidenceUpload(disputeToken, DisputeInitiateEvidenceUploadParams.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( disputeToken: String, params: DisputeInitiateEvidenceUploadParams = DisputeInitiateEvidenceUploadParams.none(), @@ -197,23 +197,23 @@ interface DisputeService { requestOptions, ) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( disputeToken: String, params: DisputeInitiateEvidenceUploadParams = DisputeInitiateEvidenceUploadParams.none(), ): DisputeEvidence = initiateEvidenceUpload(disputeToken, params, RequestOptions.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( params: DisputeInitiateEvidenceUploadParams, requestOptions: RequestOptions = RequestOptions.none(), ): DisputeEvidence - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload(params: DisputeInitiateEvidenceUploadParams): DisputeEvidence = initiateEvidenceUpload(params, RequestOptions.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ fun initiateEvidenceUpload( disputeToken: String, requestOptions: RequestOptions, @@ -228,7 +228,7 @@ interface DisputeService { fun listEvidences(disputeToken: String): DisputeListEvidencesPage = listEvidences(disputeToken, DisputeListEvidencesParams.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( disputeToken: String, params: DisputeListEvidencesParams = DisputeListEvidencesParams.none(), @@ -236,23 +236,23 @@ interface DisputeService { ): DisputeListEvidencesPage = listEvidences(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( disputeToken: String, params: DisputeListEvidencesParams = DisputeListEvidencesParams.none(), ): DisputeListEvidencesPage = listEvidences(disputeToken, params, RequestOptions.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( params: DisputeListEvidencesParams, requestOptions: RequestOptions = RequestOptions.none(), ): DisputeListEvidencesPage - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences(params: DisputeListEvidencesParams): DisputeListEvidencesPage = listEvidences(params, RequestOptions.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ fun listEvidences( disputeToken: String, requestOptions: RequestOptions, @@ -265,7 +265,7 @@ interface DisputeService { params: DisputeRetrieveEvidenceParams, ): DisputeEvidence = retrieveEvidence(evidenceToken, params, RequestOptions.none()) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ fun retrieveEvidence( evidenceToken: String, params: DisputeRetrieveEvidenceParams, @@ -273,11 +273,11 @@ interface DisputeService { ): DisputeEvidence = retrieveEvidence(params.toBuilder().evidenceToken(evidenceToken).build(), requestOptions) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ fun retrieveEvidence(params: DisputeRetrieveEvidenceParams): DisputeEvidence = retrieveEvidence(params, RequestOptions.none()) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ fun retrieveEvidence( params: DisputeRetrieveEvidenceParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -303,7 +303,7 @@ interface DisputeService { fun create(params: DisputeCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: DisputeCreateParams, @@ -318,7 +318,7 @@ interface DisputeService { fun retrieve(disputeToken: String): HttpResponseFor = retrieve(disputeToken, DisputeRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( disputeToken: String, @@ -327,26 +327,26 @@ interface DisputeService { ): HttpResponseFor = retrieve(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( disputeToken: String, params: DisputeRetrieveParams = DisputeRetrieveParams.none(), ): HttpResponseFor = retrieve(disputeToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: DisputeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: DisputeRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( disputeToken: String, @@ -362,7 +362,7 @@ interface DisputeService { fun update(disputeToken: String): HttpResponseFor = update(disputeToken, DisputeUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( disputeToken: String, @@ -371,26 +371,26 @@ interface DisputeService { ): HttpResponseFor = update(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( disputeToken: String, params: DisputeUpdateParams = DisputeUpdateParams.none(), ): HttpResponseFor = update(disputeToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: DisputeUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: DisputeUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(disputeToken: String, requestOptions: RequestOptions): HttpResponseFor = update(disputeToken, DisputeUpdateParams.none(), requestOptions) @@ -401,20 +401,20 @@ interface DisputeService { */ @MustBeClosed fun list(): HttpResponseFor = list(DisputeListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: DisputeListParams = DisputeListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: DisputeListParams = DisputeListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(DisputeListParams.none(), requestOptions) @@ -427,7 +427,7 @@ interface DisputeService { fun delete(disputeToken: String): HttpResponseFor = delete(disputeToken, DisputeDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( disputeToken: String, @@ -436,26 +436,26 @@ interface DisputeService { ): HttpResponseFor = delete(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( disputeToken: String, params: DisputeDeleteParams = DisputeDeleteParams.none(), ): HttpResponseFor = delete(disputeToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( params: DisputeDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete(params: DisputeDeleteParams): HttpResponseFor = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete(disputeToken: String, requestOptions: RequestOptions): HttpResponseFor = delete(disputeToken, DisputeDeleteParams.none(), requestOptions) @@ -472,7 +472,7 @@ interface DisputeService { ): HttpResponseFor = deleteEvidence(evidenceToken, params, RequestOptions.none()) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ @MustBeClosed fun deleteEvidence( evidenceToken: String, @@ -481,12 +481,12 @@ interface DisputeService { ): HttpResponseFor = deleteEvidence(params.toBuilder().evidenceToken(evidenceToken).build(), requestOptions) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ @MustBeClosed fun deleteEvidence(params: DisputeDeleteEvidenceParams): HttpResponseFor = deleteEvidence(params, RequestOptions.none()) - /** @see [deleteEvidence] */ + /** @see deleteEvidence */ @MustBeClosed fun deleteEvidence( params: DisputeDeleteEvidenceParams, @@ -501,7 +501,7 @@ interface DisputeService { fun initiateEvidenceUpload(disputeToken: String): HttpResponseFor = initiateEvidenceUpload(disputeToken, DisputeInitiateEvidenceUploadParams.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ @MustBeClosed fun initiateEvidenceUpload( disputeToken: String, @@ -514,7 +514,7 @@ interface DisputeService { requestOptions, ) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ @MustBeClosed fun initiateEvidenceUpload( disputeToken: String, @@ -522,20 +522,20 @@ interface DisputeService { ): HttpResponseFor = initiateEvidenceUpload(disputeToken, params, RequestOptions.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ @MustBeClosed fun initiateEvidenceUpload( params: DisputeInitiateEvidenceUploadParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ @MustBeClosed fun initiateEvidenceUpload( params: DisputeInitiateEvidenceUploadParams ): HttpResponseFor = initiateEvidenceUpload(params, RequestOptions.none()) - /** @see [initiateEvidenceUpload] */ + /** @see initiateEvidenceUpload */ @MustBeClosed fun initiateEvidenceUpload( disputeToken: String, @@ -555,7 +555,7 @@ interface DisputeService { fun listEvidences(disputeToken: String): HttpResponseFor = listEvidences(disputeToken, DisputeListEvidencesParams.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ @MustBeClosed fun listEvidences( disputeToken: String, @@ -564,7 +564,7 @@ interface DisputeService { ): HttpResponseFor = listEvidences(params.toBuilder().disputeToken(disputeToken).build(), requestOptions) - /** @see [listEvidences] */ + /** @see listEvidences */ @MustBeClosed fun listEvidences( disputeToken: String, @@ -572,20 +572,20 @@ interface DisputeService { ): HttpResponseFor = listEvidences(disputeToken, params, RequestOptions.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ @MustBeClosed fun listEvidences( params: DisputeListEvidencesParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [listEvidences] */ + /** @see listEvidences */ @MustBeClosed fun listEvidences( params: DisputeListEvidencesParams ): HttpResponseFor = listEvidences(params, RequestOptions.none()) - /** @see [listEvidences] */ + /** @see listEvidences */ @MustBeClosed fun listEvidences( disputeToken: String, @@ -605,7 +605,7 @@ interface DisputeService { ): HttpResponseFor = retrieveEvidence(evidenceToken, params, RequestOptions.none()) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ @MustBeClosed fun retrieveEvidence( evidenceToken: String, @@ -617,13 +617,13 @@ interface DisputeService { requestOptions, ) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ @MustBeClosed fun retrieveEvidence( params: DisputeRetrieveEvidenceParams ): HttpResponseFor = retrieveEvidence(params, RequestOptions.none()) - /** @see [retrieveEvidence] */ + /** @see retrieveEvidence */ @MustBeClosed fun retrieveEvidence( params: DisputeRetrieveEvidenceParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/EventService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/EventService.kt index 7e3abe8a7..9ed75c18e 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/EventService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/EventService.kt @@ -38,46 +38,46 @@ interface EventService { /** Get an event. */ fun retrieve(eventToken: String): Event = retrieve(eventToken, EventRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: EventRetrieveParams = EventRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Event = retrieve(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: EventRetrieveParams = EventRetrieveParams.none(), ): Event = retrieve(eventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: EventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): Event - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: EventRetrieveParams): Event = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(eventToken: String, requestOptions: RequestOptions): Event = retrieve(eventToken, EventRetrieveParams.none(), requestOptions) /** List all events. */ fun list(): EventListPage = list(EventListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventListParams = EventListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): EventListPage - /** @see [list] */ + /** @see list */ fun list(params: EventListParams = EventListParams.none()): EventListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): EventListPage = list(EventListParams.none(), requestOptions) @@ -85,7 +85,7 @@ interface EventService { fun listAttempts(eventToken: String): EventListAttemptsPage = listAttempts(eventToken, EventListAttemptsParams.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventToken: String, params: EventListAttemptsParams = EventListAttemptsParams.none(), @@ -93,23 +93,23 @@ interface EventService { ): EventListAttemptsPage = listAttempts(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventToken: String, params: EventListAttemptsParams = EventListAttemptsParams.none(), ): EventListAttemptsPage = listAttempts(eventToken, params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventListAttemptsParams, requestOptions: RequestOptions = RequestOptions.none(), ): EventListAttemptsPage - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts(params: EventListAttemptsParams): EventListAttemptsPage = listAttempts(params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts(eventToken: String, requestOptions: RequestOptions): EventListAttemptsPage = listAttempts(eventToken, EventListAttemptsParams.none(), requestOptions) @@ -137,7 +137,7 @@ interface EventService { fun retrieve(eventToken: String): HttpResponseFor = retrieve(eventToken, EventRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( eventToken: String, @@ -146,26 +146,26 @@ interface EventService { ): HttpResponseFor = retrieve(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( eventToken: String, params: EventRetrieveParams = EventRetrieveParams.none(), ): HttpResponseFor = retrieve(eventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: EventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: EventRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(eventToken: String, requestOptions: RequestOptions): HttpResponseFor = retrieve(eventToken, EventRetrieveParams.none(), requestOptions) @@ -176,19 +176,19 @@ interface EventService { */ @MustBeClosed fun list(): HttpResponseFor = list(EventListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: EventListParams = EventListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(params: EventListParams = EventListParams.none()): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(EventListParams.none(), requestOptions) @@ -201,7 +201,7 @@ interface EventService { fun listAttempts(eventToken: String): HttpResponseFor = listAttempts(eventToken, EventListAttemptsParams.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts( eventToken: String, @@ -210,7 +210,7 @@ interface EventService { ): HttpResponseFor = listAttempts(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts( eventToken: String, @@ -218,19 +218,19 @@ interface EventService { ): HttpResponseFor = listAttempts(eventToken, params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts( params: EventListAttemptsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts(params: EventListAttemptsParams): HttpResponseFor = listAttempts(params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts( eventToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ExternalBankAccountService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ExternalBankAccountService.kt index c68760e26..9d2176645 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ExternalBankAccountService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ExternalBankAccountService.kt @@ -40,18 +40,18 @@ interface ExternalBankAccountService { /** Creates an external bank account within a program or Lithic account. */ fun create(): ExternalBankAccountCreateResponse = create(ExternalBankAccountCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountCreateParams = ExternalBankAccountCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): ExternalBankAccountCreateResponse - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountCreateParams = ExternalBankAccountCreateParams.none() ): ExternalBankAccountCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create(requestOptions: RequestOptions): ExternalBankAccountCreateResponse = create(ExternalBankAccountCreateParams.none(), requestOptions) @@ -59,7 +59,7 @@ interface ExternalBankAccountService { fun retrieve(externalBankAccountToken: String): ExternalBankAccountRetrieveResponse = retrieve(externalBankAccountToken, ExternalBankAccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalBankAccountToken: String, params: ExternalBankAccountRetrieveParams = ExternalBankAccountRetrieveParams.none(), @@ -70,24 +70,24 @@ interface ExternalBankAccountService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalBankAccountToken: String, params: ExternalBankAccountRetrieveParams = ExternalBankAccountRetrieveParams.none(), ): ExternalBankAccountRetrieveResponse = retrieve(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ExternalBankAccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): ExternalBankAccountRetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: ExternalBankAccountRetrieveParams): ExternalBankAccountRetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -98,7 +98,7 @@ interface ExternalBankAccountService { fun update(externalBankAccountToken: String): ExternalBankAccountUpdateResponse = update(externalBankAccountToken, ExternalBankAccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( externalBankAccountToken: String, params: ExternalBankAccountUpdateParams = ExternalBankAccountUpdateParams.none(), @@ -109,24 +109,24 @@ interface ExternalBankAccountService { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( externalBankAccountToken: String, params: ExternalBankAccountUpdateParams = ExternalBankAccountUpdateParams.none(), ): ExternalBankAccountUpdateResponse = update(externalBankAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: ExternalBankAccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): ExternalBankAccountUpdateResponse - /** @see [update] */ + /** @see update */ fun update(params: ExternalBankAccountUpdateParams): ExternalBankAccountUpdateResponse = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -136,18 +136,18 @@ interface ExternalBankAccountService { /** List all the external bank accounts for the provided search criteria. */ fun list(): ExternalBankAccountListPage = list(ExternalBankAccountListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ExternalBankAccountListParams = ExternalBankAccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): ExternalBankAccountListPage - /** @see [list] */ + /** @see list */ fun list( params: ExternalBankAccountListParams = ExternalBankAccountListParams.none() ): ExternalBankAccountListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): ExternalBankAccountListPage = list(ExternalBankAccountListParams.none(), requestOptions) @@ -160,7 +160,7 @@ interface ExternalBankAccountService { ExternalBankAccountRetryMicroDepositsParams.none(), ) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( externalBankAccountToken: String, params: ExternalBankAccountRetryMicroDepositsParams = @@ -172,7 +172,7 @@ interface ExternalBankAccountService { requestOptions, ) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( externalBankAccountToken: String, params: ExternalBankAccountRetryMicroDepositsParams = @@ -180,19 +180,19 @@ interface ExternalBankAccountService { ): ExternalBankAccountRetryMicroDepositsResponse = retryMicroDeposits(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( params: ExternalBankAccountRetryMicroDepositsParams, requestOptions: RequestOptions = RequestOptions.none(), ): ExternalBankAccountRetryMicroDepositsResponse - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( params: ExternalBankAccountRetryMicroDepositsParams ): ExternalBankAccountRetryMicroDepositsResponse = retryMicroDeposits(params, RequestOptions.none()) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ fun retryMicroDeposits( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -207,7 +207,7 @@ interface ExternalBankAccountService { fun retryPrenote(externalBankAccountToken: String): ExternalBankAccountRetryPrenoteResponse = retryPrenote(externalBankAccountToken, ExternalBankAccountRetryPrenoteParams.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( externalBankAccountToken: String, params: ExternalBankAccountRetryPrenoteParams = @@ -219,25 +219,25 @@ interface ExternalBankAccountService { requestOptions, ) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( externalBankAccountToken: String, params: ExternalBankAccountRetryPrenoteParams = ExternalBankAccountRetryPrenoteParams.none(), ): ExternalBankAccountRetryPrenoteResponse = retryPrenote(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( params: ExternalBankAccountRetryPrenoteParams, requestOptions: RequestOptions = RequestOptions.none(), ): ExternalBankAccountRetryPrenoteResponse - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( params: ExternalBankAccountRetryPrenoteParams ): ExternalBankAccountRetryPrenoteResponse = retryPrenote(params, RequestOptions.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ fun retryPrenote( externalBankAccountToken: String, requestOptions: RequestOptions, @@ -273,21 +273,21 @@ interface ExternalBankAccountService { fun create(): HttpResponseFor = create(ExternalBankAccountCreateParams.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: ExternalBankAccountCreateParams = ExternalBankAccountCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: ExternalBankAccountCreateParams = ExternalBankAccountCreateParams.none() ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( requestOptions: RequestOptions @@ -305,7 +305,7 @@ interface ExternalBankAccountService { ): HttpResponseFor = retrieve(externalBankAccountToken, ExternalBankAccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( externalBankAccountToken: String, @@ -317,7 +317,7 @@ interface ExternalBankAccountService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( externalBankAccountToken: String, @@ -325,21 +325,21 @@ interface ExternalBankAccountService { ): HttpResponseFor = retrieve(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: ExternalBankAccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: ExternalBankAccountRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( externalBankAccountToken: String, @@ -362,7 +362,7 @@ interface ExternalBankAccountService { ): HttpResponseFor = update(externalBankAccountToken, ExternalBankAccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( externalBankAccountToken: String, @@ -374,7 +374,7 @@ interface ExternalBankAccountService { requestOptions, ) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( externalBankAccountToken: String, @@ -382,21 +382,21 @@ interface ExternalBankAccountService { ): HttpResponseFor = update(externalBankAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: ExternalBankAccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: ExternalBankAccountUpdateParams ): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( externalBankAccountToken: String, @@ -412,20 +412,20 @@ interface ExternalBankAccountService { fun list(): HttpResponseFor = list(ExternalBankAccountListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: ExternalBankAccountListParams = ExternalBankAccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: ExternalBankAccountListParams = ExternalBankAccountListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(ExternalBankAccountListParams.none(), requestOptions) @@ -444,7 +444,7 @@ interface ExternalBankAccountService { ExternalBankAccountRetryMicroDepositsParams.none(), ) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ @MustBeClosed fun retryMicroDeposits( externalBankAccountToken: String, @@ -457,7 +457,7 @@ interface ExternalBankAccountService { requestOptions, ) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ @MustBeClosed fun retryMicroDeposits( externalBankAccountToken: String, @@ -466,21 +466,21 @@ interface ExternalBankAccountService { ): HttpResponseFor = retryMicroDeposits(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ @MustBeClosed fun retryMicroDeposits( params: ExternalBankAccountRetryMicroDepositsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ @MustBeClosed fun retryMicroDeposits( params: ExternalBankAccountRetryMicroDepositsParams ): HttpResponseFor = retryMicroDeposits(params, RequestOptions.none()) - /** @see [retryMicroDeposits] */ + /** @see retryMicroDeposits */ @MustBeClosed fun retryMicroDeposits( externalBankAccountToken: String, @@ -503,7 +503,7 @@ interface ExternalBankAccountService { ): HttpResponseFor = retryPrenote(externalBankAccountToken, ExternalBankAccountRetryPrenoteParams.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ @MustBeClosed fun retryPrenote( externalBankAccountToken: String, @@ -516,7 +516,7 @@ interface ExternalBankAccountService { requestOptions, ) - /** @see [retryPrenote] */ + /** @see retryPrenote */ @MustBeClosed fun retryPrenote( externalBankAccountToken: String, @@ -525,21 +525,21 @@ interface ExternalBankAccountService { ): HttpResponseFor = retryPrenote(externalBankAccountToken, params, RequestOptions.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ @MustBeClosed fun retryPrenote( params: ExternalBankAccountRetryPrenoteParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retryPrenote] */ + /** @see retryPrenote */ @MustBeClosed fun retryPrenote( params: ExternalBankAccountRetryPrenoteParams ): HttpResponseFor = retryPrenote(params, RequestOptions.none()) - /** @see [retryPrenote] */ + /** @see retryPrenote */ @MustBeClosed fun retryPrenote( externalBankAccountToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ExternalPaymentService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ExternalPaymentService.kt index 4c9d93d84..a618b391d 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ExternalPaymentService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ExternalPaymentService.kt @@ -35,7 +35,7 @@ interface ExternalPaymentService { fun create(params: ExternalPaymentCreateParams): ExternalPayment = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ExternalPaymentCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -45,7 +45,7 @@ interface ExternalPaymentService { fun retrieve(externalPaymentToken: String): ExternalPayment = retrieve(externalPaymentToken, ExternalPaymentRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalPaymentToken: String, params: ExternalPaymentRetrieveParams = ExternalPaymentRetrieveParams.none(), @@ -56,41 +56,41 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalPaymentToken: String, params: ExternalPaymentRetrieveParams = ExternalPaymentRetrieveParams.none(), ): ExternalPayment = retrieve(externalPaymentToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ExternalPaymentRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): ExternalPayment - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: ExternalPaymentRetrieveParams): ExternalPayment = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(externalPaymentToken: String, requestOptions: RequestOptions): ExternalPayment = retrieve(externalPaymentToken, ExternalPaymentRetrieveParams.none(), requestOptions) /** List external payments */ fun list(): ExternalPaymentListPage = list(ExternalPaymentListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ExternalPaymentListParams = ExternalPaymentListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): ExternalPaymentListPage - /** @see [list] */ + /** @see list */ fun list( params: ExternalPaymentListParams = ExternalPaymentListParams.none() ): ExternalPaymentListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): ExternalPaymentListPage = list(ExternalPaymentListParams.none(), requestOptions) @@ -98,7 +98,7 @@ interface ExternalPaymentService { fun cancel(externalPaymentToken: String, params: ExternalPaymentCancelParams): ExternalPayment = cancel(externalPaymentToken, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( externalPaymentToken: String, params: ExternalPaymentCancelParams, @@ -109,11 +109,11 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [cancel] */ + /** @see cancel */ fun cancel(params: ExternalPaymentCancelParams): ExternalPayment = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: ExternalPaymentCancelParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -125,7 +125,7 @@ interface ExternalPaymentService { params: ExternalPaymentReleaseParams, ): ExternalPayment = release(externalPaymentToken, params, RequestOptions.none()) - /** @see [release] */ + /** @see release */ fun release( externalPaymentToken: String, params: ExternalPaymentReleaseParams, @@ -136,11 +136,11 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [release] */ + /** @see release */ fun release(params: ExternalPaymentReleaseParams): ExternalPayment = release(params, RequestOptions.none()) - /** @see [release] */ + /** @see release */ fun release( params: ExternalPaymentReleaseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -152,7 +152,7 @@ interface ExternalPaymentService { params: ExternalPaymentReverseParams, ): ExternalPayment = reverse(externalPaymentToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( externalPaymentToken: String, params: ExternalPaymentReverseParams, @@ -163,11 +163,11 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [reverse] */ + /** @see reverse */ fun reverse(params: ExternalPaymentReverseParams): ExternalPayment = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: ExternalPaymentReverseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -177,7 +177,7 @@ interface ExternalPaymentService { fun settle(externalPaymentToken: String, params: ExternalPaymentSettleParams): ExternalPayment = settle(externalPaymentToken, params, RequestOptions.none()) - /** @see [settle] */ + /** @see settle */ fun settle( externalPaymentToken: String, params: ExternalPaymentSettleParams, @@ -188,11 +188,11 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [settle] */ + /** @see settle */ fun settle(params: ExternalPaymentSettleParams): ExternalPayment = settle(params, RequestOptions.none()) - /** @see [settle] */ + /** @see settle */ fun settle( params: ExternalPaymentSettleParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -221,7 +221,7 @@ interface ExternalPaymentService { fun create(params: ExternalPaymentCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: ExternalPaymentCreateParams, @@ -236,7 +236,7 @@ interface ExternalPaymentService { fun retrieve(externalPaymentToken: String): HttpResponseFor = retrieve(externalPaymentToken, ExternalPaymentRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( externalPaymentToken: String, @@ -248,7 +248,7 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( externalPaymentToken: String, @@ -256,19 +256,19 @@ interface ExternalPaymentService { ): HttpResponseFor = retrieve(externalPaymentToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: ExternalPaymentRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: ExternalPaymentRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( externalPaymentToken: String, @@ -284,20 +284,20 @@ interface ExternalPaymentService { fun list(): HttpResponseFor = list(ExternalPaymentListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: ExternalPaymentListParams = ExternalPaymentListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: ExternalPaymentListParams = ExternalPaymentListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(ExternalPaymentListParams.none(), requestOptions) @@ -314,7 +314,7 @@ interface ExternalPaymentService { ): HttpResponseFor = cancel(externalPaymentToken, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel( externalPaymentToken: String, @@ -326,12 +326,12 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel(params: ExternalPaymentCancelParams): HttpResponseFor = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel( params: ExternalPaymentCancelParams, @@ -350,7 +350,7 @@ interface ExternalPaymentService { ): HttpResponseFor = release(externalPaymentToken, params, RequestOptions.none()) - /** @see [release] */ + /** @see release */ @MustBeClosed fun release( externalPaymentToken: String, @@ -362,12 +362,12 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [release] */ + /** @see release */ @MustBeClosed fun release(params: ExternalPaymentReleaseParams): HttpResponseFor = release(params, RequestOptions.none()) - /** @see [release] */ + /** @see release */ @MustBeClosed fun release( params: ExternalPaymentReleaseParams, @@ -386,7 +386,7 @@ interface ExternalPaymentService { ): HttpResponseFor = reverse(externalPaymentToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse( externalPaymentToken: String, @@ -398,12 +398,12 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse(params: ExternalPaymentReverseParams): HttpResponseFor = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse( params: ExternalPaymentReverseParams, @@ -422,7 +422,7 @@ interface ExternalPaymentService { ): HttpResponseFor = settle(externalPaymentToken, params, RequestOptions.none()) - /** @see [settle] */ + /** @see settle */ @MustBeClosed fun settle( externalPaymentToken: String, @@ -434,12 +434,12 @@ interface ExternalPaymentService { requestOptions, ) - /** @see [settle] */ + /** @see settle */ @MustBeClosed fun settle(params: ExternalPaymentSettleParams): HttpResponseFor = settle(params, RequestOptions.none()) - /** @see [settle] */ + /** @see settle */ @MustBeClosed fun settle( params: ExternalPaymentSettleParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/FinancialAccountService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/FinancialAccountService.kt index d497f8bad..a89d18a0c 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/FinancialAccountService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/FinancialAccountService.kt @@ -50,7 +50,7 @@ interface FinancialAccountService { fun create(params: FinancialAccountCreateParams): FinancialAccount = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: FinancialAccountCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -60,7 +60,7 @@ interface FinancialAccountService { fun retrieve(financialAccountToken: String): FinancialAccount = retrieve(financialAccountToken, FinancialAccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountRetrieveParams = FinancialAccountRetrieveParams.none(), @@ -71,23 +71,23 @@ interface FinancialAccountService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountRetrieveParams = FinancialAccountRetrieveParams.none(), ): FinancialAccount = retrieve(financialAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): FinancialAccount - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: FinancialAccountRetrieveParams): FinancialAccount = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(financialAccountToken: String, requestOptions: RequestOptions): FinancialAccount = retrieve(financialAccountToken, FinancialAccountRetrieveParams.none(), requestOptions) @@ -95,7 +95,7 @@ interface FinancialAccountService { fun update(financialAccountToken: String): FinancialAccount = update(financialAccountToken, FinancialAccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountUpdateParams = FinancialAccountUpdateParams.none(), @@ -106,41 +106,41 @@ interface FinancialAccountService { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountUpdateParams = FinancialAccountUpdateParams.none(), ): FinancialAccount = update(financialAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): FinancialAccount - /** @see [update] */ + /** @see update */ fun update(params: FinancialAccountUpdateParams): FinancialAccount = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(financialAccountToken: String, requestOptions: RequestOptions): FinancialAccount = update(financialAccountToken, FinancialAccountUpdateParams.none(), requestOptions) /** Retrieve information on your financial accounts including routing and account number. */ fun list(): FinancialAccountListPage = list(FinancialAccountListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountListParams = FinancialAccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): FinancialAccountListPage - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountListParams = FinancialAccountListParams.none() ): FinancialAccountListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): FinancialAccountListPage = list(FinancialAccountListParams.none(), requestOptions) @@ -150,7 +150,7 @@ interface FinancialAccountService { params: FinancialAccountRegisterAccountNumberParams, ) = registerAccountNumber(financialAccountToken, params, RequestOptions.none()) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ fun registerAccountNumber( financialAccountToken: String, params: FinancialAccountRegisterAccountNumberParams, @@ -161,11 +161,11 @@ interface FinancialAccountService { requestOptions, ) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ fun registerAccountNumber(params: FinancialAccountRegisterAccountNumberParams) = registerAccountNumber(params, RequestOptions.none()) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ fun registerAccountNumber( params: FinancialAccountRegisterAccountNumberParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -177,7 +177,7 @@ interface FinancialAccountService { params: FinancialAccountUpdateStatusParams, ): FinancialAccount = updateStatus(financialAccountToken, params, RequestOptions.none()) - /** @see [updateStatus] */ + /** @see updateStatus */ fun updateStatus( financialAccountToken: String, params: FinancialAccountUpdateStatusParams, @@ -188,11 +188,11 @@ interface FinancialAccountService { requestOptions, ) - /** @see [updateStatus] */ + /** @see updateStatus */ fun updateStatus(params: FinancialAccountUpdateStatusParams): FinancialAccount = updateStatus(params, RequestOptions.none()) - /** @see [updateStatus] */ + /** @see updateStatus */ fun updateStatus( params: FinancialAccountUpdateStatusParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -231,7 +231,7 @@ interface FinancialAccountService { fun create(params: FinancialAccountCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: FinancialAccountCreateParams, @@ -246,7 +246,7 @@ interface FinancialAccountService { fun retrieve(financialAccountToken: String): HttpResponseFor = retrieve(financialAccountToken, FinancialAccountRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( financialAccountToken: String, @@ -258,7 +258,7 @@ interface FinancialAccountService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( financialAccountToken: String, @@ -266,19 +266,19 @@ interface FinancialAccountService { ): HttpResponseFor = retrieve(financialAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FinancialAccountRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: FinancialAccountRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( financialAccountToken: String, @@ -294,7 +294,7 @@ interface FinancialAccountService { fun update(financialAccountToken: String): HttpResponseFor = update(financialAccountToken, FinancialAccountUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( financialAccountToken: String, @@ -306,7 +306,7 @@ interface FinancialAccountService { requestOptions, ) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( financialAccountToken: String, @@ -314,19 +314,19 @@ interface FinancialAccountService { ): HttpResponseFor = update(financialAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: FinancialAccountUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: FinancialAccountUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( financialAccountToken: String, @@ -342,20 +342,20 @@ interface FinancialAccountService { fun list(): HttpResponseFor = list(FinancialAccountListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountListParams = FinancialAccountListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountListParams = FinancialAccountListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(FinancialAccountListParams.none(), requestOptions) @@ -372,7 +372,7 @@ interface FinancialAccountService { ): HttpResponse = registerAccountNumber(financialAccountToken, params, RequestOptions.none()) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ @MustBeClosed fun registerAccountNumber( financialAccountToken: String, @@ -384,13 +384,13 @@ interface FinancialAccountService { requestOptions, ) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ @MustBeClosed fun registerAccountNumber( params: FinancialAccountRegisterAccountNumberParams ): HttpResponse = registerAccountNumber(params, RequestOptions.none()) - /** @see [registerAccountNumber] */ + /** @see registerAccountNumber */ @MustBeClosed fun registerAccountNumber( params: FinancialAccountRegisterAccountNumberParams, @@ -409,7 +409,7 @@ interface FinancialAccountService { ): HttpResponseFor = updateStatus(financialAccountToken, params, RequestOptions.none()) - /** @see [updateStatus] */ + /** @see updateStatus */ @MustBeClosed fun updateStatus( financialAccountToken: String, @@ -421,13 +421,13 @@ interface FinancialAccountService { requestOptions, ) - /** @see [updateStatus] */ + /** @see updateStatus */ @MustBeClosed fun updateStatus( params: FinancialAccountUpdateStatusParams ): HttpResponseFor = updateStatus(params, RequestOptions.none()) - /** @see [updateStatus] */ + /** @see updateStatus */ @MustBeClosed fun updateStatus( params: FinancialAccountUpdateStatusParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/FundingEventService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/FundingEventService.kt index 818b5a703..c9f04dbe7 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/FundingEventService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/FundingEventService.kt @@ -32,7 +32,7 @@ interface FundingEventService { fun retrieve(fundingEventToken: String): FundingEventRetrieveResponse = retrieve(fundingEventToken, FundingEventRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( fundingEventToken: String, params: FundingEventRetrieveParams = FundingEventRetrieveParams.none(), @@ -40,23 +40,23 @@ interface FundingEventService { ): FundingEventRetrieveResponse = retrieve(params.toBuilder().fundingEventToken(fundingEventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( fundingEventToken: String, params: FundingEventRetrieveParams = FundingEventRetrieveParams.none(), ): FundingEventRetrieveResponse = retrieve(fundingEventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FundingEventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): FundingEventRetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: FundingEventRetrieveParams): FundingEventRetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( fundingEventToken: String, requestOptions: RequestOptions, @@ -66,17 +66,17 @@ interface FundingEventService { /** Get all funding events for program */ fun list(): FundingEventListPage = list(FundingEventListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: FundingEventListParams = FundingEventListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): FundingEventListPage - /** @see [list] */ + /** @see list */ fun list(params: FundingEventListParams = FundingEventListParams.none()): FundingEventListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): FundingEventListPage = list(FundingEventListParams.none(), requestOptions) @@ -84,7 +84,7 @@ interface FundingEventService { fun retrieveDetails(fundingEventToken: String): FundingEventRetrieveDetailsResponse = retrieveDetails(fundingEventToken, FundingEventRetrieveDetailsParams.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( fundingEventToken: String, params: FundingEventRetrieveDetailsParams = FundingEventRetrieveDetailsParams.none(), @@ -95,25 +95,25 @@ interface FundingEventService { requestOptions, ) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( fundingEventToken: String, params: FundingEventRetrieveDetailsParams = FundingEventRetrieveDetailsParams.none(), ): FundingEventRetrieveDetailsResponse = retrieveDetails(fundingEventToken, params, RequestOptions.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( params: FundingEventRetrieveDetailsParams, requestOptions: RequestOptions = RequestOptions.none(), ): FundingEventRetrieveDetailsResponse - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( params: FundingEventRetrieveDetailsParams ): FundingEventRetrieveDetailsResponse = retrieveDetails(params, RequestOptions.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ fun retrieveDetails( fundingEventToken: String, requestOptions: RequestOptions, @@ -142,7 +142,7 @@ interface FundingEventService { fun retrieve(fundingEventToken: String): HttpResponseFor = retrieve(fundingEventToken, FundingEventRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( fundingEventToken: String, @@ -154,7 +154,7 @@ interface FundingEventService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( fundingEventToken: String, @@ -162,20 +162,20 @@ interface FundingEventService { ): HttpResponseFor = retrieve(fundingEventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FundingEventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FundingEventRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( fundingEventToken: String, @@ -190,20 +190,20 @@ interface FundingEventService { @MustBeClosed fun list(): HttpResponseFor = list(FundingEventListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FundingEventListParams = FundingEventListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FundingEventListParams = FundingEventListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(FundingEventListParams.none(), requestOptions) @@ -218,7 +218,7 @@ interface FundingEventService { ): HttpResponseFor = retrieveDetails(fundingEventToken, FundingEventRetrieveDetailsParams.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ @MustBeClosed fun retrieveDetails( fundingEventToken: String, @@ -230,7 +230,7 @@ interface FundingEventService { requestOptions, ) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ @MustBeClosed fun retrieveDetails( fundingEventToken: String, @@ -238,21 +238,21 @@ interface FundingEventService { ): HttpResponseFor = retrieveDetails(fundingEventToken, params, RequestOptions.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ @MustBeClosed fun retrieveDetails( params: FundingEventRetrieveDetailsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ @MustBeClosed fun retrieveDetails( params: FundingEventRetrieveDetailsParams ): HttpResponseFor = retrieveDetails(params, RequestOptions.none()) - /** @see [retrieveDetails] */ + /** @see retrieveDetails */ @MustBeClosed fun retrieveDetails( fundingEventToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ManagementOperationService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ManagementOperationService.kt index 56b275b50..975a4678d 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ManagementOperationService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ManagementOperationService.kt @@ -32,7 +32,7 @@ interface ManagementOperationService { fun create(params: ManagementOperationCreateParams): ManagementOperationTransaction = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ManagementOperationCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -42,7 +42,7 @@ interface ManagementOperationService { fun retrieve(managementOperationToken: String): ManagementOperationTransaction = retrieve(managementOperationToken, ManagementOperationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( managementOperationToken: String, params: ManagementOperationRetrieveParams = ManagementOperationRetrieveParams.none(), @@ -53,24 +53,24 @@ interface ManagementOperationService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( managementOperationToken: String, params: ManagementOperationRetrieveParams = ManagementOperationRetrieveParams.none(), ): ManagementOperationTransaction = retrieve(managementOperationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ManagementOperationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): ManagementOperationTransaction - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: ManagementOperationRetrieveParams): ManagementOperationTransaction = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( managementOperationToken: String, requestOptions: RequestOptions, @@ -80,18 +80,18 @@ interface ManagementOperationService { /** List management operations */ fun list(): ManagementOperationListPage = list(ManagementOperationListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ManagementOperationListParams = ManagementOperationListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): ManagementOperationListPage - /** @see [list] */ + /** @see list */ fun list( params: ManagementOperationListParams = ManagementOperationListParams.none() ): ManagementOperationListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): ManagementOperationListPage = list(ManagementOperationListParams.none(), requestOptions) @@ -102,7 +102,7 @@ interface ManagementOperationService { ): ManagementOperationTransaction = reverse(managementOperationToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( managementOperationToken: String, params: ManagementOperationReverseParams, @@ -113,11 +113,11 @@ interface ManagementOperationService { requestOptions, ) - /** @see [reverse] */ + /** @see reverse */ fun reverse(params: ManagementOperationReverseParams): ManagementOperationTransaction = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ fun reverse( params: ManagementOperationReverseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -147,7 +147,7 @@ interface ManagementOperationService { params: ManagementOperationCreateParams ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: ManagementOperationCreateParams, @@ -165,7 +165,7 @@ interface ManagementOperationService { ): HttpResponseFor = retrieve(managementOperationToken, ManagementOperationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( managementOperationToken: String, @@ -177,7 +177,7 @@ interface ManagementOperationService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( managementOperationToken: String, @@ -185,20 +185,20 @@ interface ManagementOperationService { ): HttpResponseFor = retrieve(managementOperationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: ManagementOperationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: ManagementOperationRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( managementOperationToken: String, @@ -218,20 +218,20 @@ interface ManagementOperationService { fun list(): HttpResponseFor = list(ManagementOperationListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: ManagementOperationListParams = ManagementOperationListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: ManagementOperationListParams = ManagementOperationListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(ManagementOperationListParams.none(), requestOptions) @@ -248,7 +248,7 @@ interface ManagementOperationService { ): HttpResponseFor = reverse(managementOperationToken, params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse( managementOperationToken: String, @@ -260,13 +260,13 @@ interface ManagementOperationService { requestOptions, ) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse( params: ManagementOperationReverseParams ): HttpResponseFor = reverse(params, RequestOptions.none()) - /** @see [reverse] */ + /** @see reverse */ @MustBeClosed fun reverse( params: ManagementOperationReverseParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/NetworkProgramService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/NetworkProgramService.kt index 7d7969e15..6e3fef602 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/NetworkProgramService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/NetworkProgramService.kt @@ -30,7 +30,7 @@ interface NetworkProgramService { fun retrieve(networkProgramToken: String): NetworkProgram = retrieve(networkProgramToken, NetworkProgramRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( networkProgramToken: String, params: NetworkProgramRetrieveParams = NetworkProgramRetrieveParams.none(), @@ -41,41 +41,41 @@ interface NetworkProgramService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( networkProgramToken: String, params: NetworkProgramRetrieveParams = NetworkProgramRetrieveParams.none(), ): NetworkProgram = retrieve(networkProgramToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: NetworkProgramRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): NetworkProgram - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: NetworkProgramRetrieveParams): NetworkProgram = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(networkProgramToken: String, requestOptions: RequestOptions): NetworkProgram = retrieve(networkProgramToken, NetworkProgramRetrieveParams.none(), requestOptions) /** List network programs. */ fun list(): NetworkProgramListPage = list(NetworkProgramListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: NetworkProgramListParams = NetworkProgramListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): NetworkProgramListPage - /** @see [list] */ + /** @see list */ fun list( params: NetworkProgramListParams = NetworkProgramListParams.none() ): NetworkProgramListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): NetworkProgramListPage = list(NetworkProgramListParams.none(), requestOptions) @@ -101,7 +101,7 @@ interface NetworkProgramService { fun retrieve(networkProgramToken: String): HttpResponseFor = retrieve(networkProgramToken, NetworkProgramRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( networkProgramToken: String, @@ -113,7 +113,7 @@ interface NetworkProgramService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( networkProgramToken: String, @@ -121,19 +121,19 @@ interface NetworkProgramService { ): HttpResponseFor = retrieve(networkProgramToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: NetworkProgramRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: NetworkProgramRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( networkProgramToken: String, @@ -148,20 +148,20 @@ interface NetworkProgramService { @MustBeClosed fun list(): HttpResponseFor = list(NetworkProgramListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: NetworkProgramListParams = NetworkProgramListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: NetworkProgramListParams = NetworkProgramListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(NetworkProgramListParams.none(), requestOptions) diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/PaymentService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/PaymentService.kt index 59dd9aa2d..27d8f93b5 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/PaymentService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/PaymentService.kt @@ -42,7 +42,7 @@ interface PaymentService { fun create(params: PaymentCreateParams): PaymentCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: PaymentCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -52,46 +52,46 @@ interface PaymentService { fun retrieve(paymentToken: String): Payment = retrieve(paymentToken, PaymentRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( paymentToken: String, params: PaymentRetrieveParams = PaymentRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Payment = retrieve(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( paymentToken: String, params: PaymentRetrieveParams = PaymentRetrieveParams.none(), ): Payment = retrieve(paymentToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: PaymentRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): Payment - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: PaymentRetrieveParams): Payment = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(paymentToken: String, requestOptions: RequestOptions): Payment = retrieve(paymentToken, PaymentRetrieveParams.none(), requestOptions) /** List all the payments for the provided search criteria. */ fun list(): PaymentListPage = list(PaymentListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: PaymentListParams = PaymentListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): PaymentListPage - /** @see [list] */ + /** @see list */ fun list(params: PaymentListParams = PaymentListParams.none()): PaymentListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): PaymentListPage = list(PaymentListParams.none(), requestOptions) @@ -99,7 +99,7 @@ interface PaymentService { fun retry(paymentToken: String): PaymentRetryResponse = retry(paymentToken, PaymentRetryParams.none()) - /** @see [retry] */ + /** @see retry */ fun retry( paymentToken: String, params: PaymentRetryParams = PaymentRetryParams.none(), @@ -107,23 +107,23 @@ interface PaymentService { ): PaymentRetryResponse = retry(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [retry] */ + /** @see retry */ fun retry( paymentToken: String, params: PaymentRetryParams = PaymentRetryParams.none(), ): PaymentRetryResponse = retry(paymentToken, params, RequestOptions.none()) - /** @see [retry] */ + /** @see retry */ fun retry( params: PaymentRetryParams, requestOptions: RequestOptions = RequestOptions.none(), ): PaymentRetryResponse - /** @see [retry] */ + /** @see retry */ fun retry(params: PaymentRetryParams): PaymentRetryResponse = retry(params, RequestOptions.none()) - /** @see [retry] */ + /** @see retry */ fun retry(paymentToken: String, requestOptions: RequestOptions): PaymentRetryResponse = retry(paymentToken, PaymentRetryParams.none(), requestOptions) @@ -133,7 +133,7 @@ interface PaymentService { params: PaymentSimulateActionParams, ): PaymentSimulateActionResponse = simulateAction(paymentToken, params, RequestOptions.none()) - /** @see [simulateAction] */ + /** @see simulateAction */ fun simulateAction( paymentToken: String, params: PaymentSimulateActionParams, @@ -141,11 +141,11 @@ interface PaymentService { ): PaymentSimulateActionResponse = simulateAction(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [simulateAction] */ + /** @see simulateAction */ fun simulateAction(params: PaymentSimulateActionParams): PaymentSimulateActionResponse = simulateAction(params, RequestOptions.none()) - /** @see [simulateAction] */ + /** @see simulateAction */ fun simulateAction( params: PaymentSimulateActionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -155,7 +155,7 @@ interface PaymentService { fun simulateReceipt(params: PaymentSimulateReceiptParams): PaymentSimulateReceiptResponse = simulateReceipt(params, RequestOptions.none()) - /** @see [simulateReceipt] */ + /** @see simulateReceipt */ fun simulateReceipt( params: PaymentSimulateReceiptParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -165,7 +165,7 @@ interface PaymentService { fun simulateRelease(params: PaymentSimulateReleaseParams): PaymentSimulateReleaseResponse = simulateRelease(params, RequestOptions.none()) - /** @see [simulateRelease] */ + /** @see simulateRelease */ fun simulateRelease( params: PaymentSimulateReleaseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -175,7 +175,7 @@ interface PaymentService { fun simulateReturn(params: PaymentSimulateReturnParams): PaymentSimulateReturnResponse = simulateReturn(params, RequestOptions.none()) - /** @see [simulateReturn] */ + /** @see simulateReturn */ fun simulateReturn( params: PaymentSimulateReturnParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -199,7 +199,7 @@ interface PaymentService { fun create(params: PaymentCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: PaymentCreateParams, @@ -214,7 +214,7 @@ interface PaymentService { fun retrieve(paymentToken: String): HttpResponseFor = retrieve(paymentToken, PaymentRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( paymentToken: String, @@ -223,26 +223,26 @@ interface PaymentService { ): HttpResponseFor = retrieve(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( paymentToken: String, params: PaymentRetrieveParams = PaymentRetrieveParams.none(), ): HttpResponseFor = retrieve(paymentToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: PaymentRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: PaymentRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( paymentToken: String, @@ -256,20 +256,20 @@ interface PaymentService { */ @MustBeClosed fun list(): HttpResponseFor = list(PaymentListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: PaymentListParams = PaymentListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: PaymentListParams = PaymentListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(PaymentListParams.none(), requestOptions) @@ -282,7 +282,7 @@ interface PaymentService { fun retry(paymentToken: String): HttpResponseFor = retry(paymentToken, PaymentRetryParams.none()) - /** @see [retry] */ + /** @see retry */ @MustBeClosed fun retry( paymentToken: String, @@ -291,7 +291,7 @@ interface PaymentService { ): HttpResponseFor = retry(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [retry] */ + /** @see retry */ @MustBeClosed fun retry( paymentToken: String, @@ -299,19 +299,19 @@ interface PaymentService { ): HttpResponseFor = retry(paymentToken, params, RequestOptions.none()) - /** @see [retry] */ + /** @see retry */ @MustBeClosed fun retry( params: PaymentRetryParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retry] */ + /** @see retry */ @MustBeClosed fun retry(params: PaymentRetryParams): HttpResponseFor = retry(params, RequestOptions.none()) - /** @see [retry] */ + /** @see retry */ @MustBeClosed fun retry( paymentToken: String, @@ -330,7 +330,7 @@ interface PaymentService { ): HttpResponseFor = simulateAction(paymentToken, params, RequestOptions.none()) - /** @see [simulateAction] */ + /** @see simulateAction */ @MustBeClosed fun simulateAction( paymentToken: String, @@ -339,14 +339,14 @@ interface PaymentService { ): HttpResponseFor = simulateAction(params.toBuilder().paymentToken(paymentToken).build(), requestOptions) - /** @see [simulateAction] */ + /** @see simulateAction */ @MustBeClosed fun simulateAction( params: PaymentSimulateActionParams ): HttpResponseFor = simulateAction(params, RequestOptions.none()) - /** @see [simulateAction] */ + /** @see simulateAction */ @MustBeClosed fun simulateAction( params: PaymentSimulateActionParams, @@ -363,7 +363,7 @@ interface PaymentService { ): HttpResponseFor = simulateReceipt(params, RequestOptions.none()) - /** @see [simulateReceipt] */ + /** @see simulateReceipt */ @MustBeClosed fun simulateReceipt( params: PaymentSimulateReceiptParams, @@ -380,7 +380,7 @@ interface PaymentService { ): HttpResponseFor = simulateRelease(params, RequestOptions.none()) - /** @see [simulateRelease] */ + /** @see simulateRelease */ @MustBeClosed fun simulateRelease( params: PaymentSimulateReleaseParams, @@ -397,7 +397,7 @@ interface PaymentService { ): HttpResponseFor = simulateReturn(params, RequestOptions.none()) - /** @see [simulateReturn] */ + /** @see simulateReturn */ @MustBeClosed fun simulateReturn( params: PaymentSimulateReturnParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ResponderEndpointService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ResponderEndpointService.kt index ccda3dc71..967f107be 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ResponderEndpointService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/ResponderEndpointService.kt @@ -31,25 +31,25 @@ interface ResponderEndpointService { /** Enroll a responder endpoint */ fun create(): ResponderEndpointCreateResponse = create(ResponderEndpointCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( params: ResponderEndpointCreateParams = ResponderEndpointCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): ResponderEndpointCreateResponse - /** @see [create] */ + /** @see create */ fun create( params: ResponderEndpointCreateParams = ResponderEndpointCreateParams.none() ): ResponderEndpointCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create(requestOptions: RequestOptions): ResponderEndpointCreateResponse = create(ResponderEndpointCreateParams.none(), requestOptions) /** Disenroll a responder endpoint */ fun delete(params: ResponderEndpointDeleteParams) = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: ResponderEndpointDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -59,7 +59,7 @@ interface ResponderEndpointService { fun checkStatus(params: ResponderEndpointCheckStatusParams): ResponderEndpointStatus = checkStatus(params, RequestOptions.none()) - /** @see [checkStatus] */ + /** @see checkStatus */ fun checkStatus( params: ResponderEndpointCheckStatusParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -88,20 +88,20 @@ interface ResponderEndpointService { fun create(): HttpResponseFor = create(ResponderEndpointCreateParams.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: ResponderEndpointCreateParams = ResponderEndpointCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: ResponderEndpointCreateParams = ResponderEndpointCreateParams.none() ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( requestOptions: RequestOptions @@ -116,7 +116,7 @@ interface ResponderEndpointService { fun delete(params: ResponderEndpointDeleteParams): HttpResponse = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( params: ResponderEndpointDeleteParams, @@ -132,7 +132,7 @@ interface ResponderEndpointService { params: ResponderEndpointCheckStatusParams ): HttpResponseFor = checkStatus(params, RequestOptions.none()) - /** @see [checkStatus] */ + /** @see checkStatus */ @MustBeClosed fun checkStatus( params: ResponderEndpointCheckStatusParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TokenizationDecisioningService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TokenizationDecisioningService.kt index 9ed73a02d..c32efc7c2 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TokenizationDecisioningService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TokenizationDecisioningService.kt @@ -36,20 +36,20 @@ interface TokenizationDecisioningService { fun retrieveSecret(): TokenizationSecret = retrieveSecret(TokenizationDecisioningRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: TokenizationDecisioningRetrieveSecretParams = TokenizationDecisioningRetrieveSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): TokenizationSecret - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: TokenizationDecisioningRetrieveSecretParams = TokenizationDecisioningRetrieveSecretParams.none() ): TokenizationSecret = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret(requestOptions: RequestOptions): TokenizationSecret = retrieveSecret(TokenizationDecisioningRetrieveSecretParams.none(), requestOptions) @@ -60,20 +60,20 @@ interface TokenizationDecisioningService { fun rotateSecret(): TokenizationDecisioningRotateSecretResponse = rotateSecret(TokenizationDecisioningRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: TokenizationDecisioningRotateSecretParams = TokenizationDecisioningRotateSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): TokenizationDecisioningRotateSecretResponse - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: TokenizationDecisioningRotateSecretParams = TokenizationDecisioningRotateSecretParams.none() ): TokenizationDecisioningRotateSecretResponse = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(requestOptions: RequestOptions): TokenizationDecisioningRotateSecretResponse = rotateSecret(TokenizationDecisioningRotateSecretParams.none(), requestOptions) @@ -100,7 +100,7 @@ interface TokenizationDecisioningService { fun retrieveSecret(): HttpResponseFor = retrieveSecret(TokenizationDecisioningRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( params: TokenizationDecisioningRetrieveSecretParams = @@ -108,14 +108,14 @@ interface TokenizationDecisioningService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( params: TokenizationDecisioningRetrieveSecretParams = TokenizationDecisioningRetrieveSecretParams.none() ): HttpResponseFor = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret(requestOptions: RequestOptions): HttpResponseFor = retrieveSecret(TokenizationDecisioningRetrieveSecretParams.none(), requestOptions) @@ -128,7 +128,7 @@ interface TokenizationDecisioningService { fun rotateSecret(): HttpResponseFor = rotateSecret(TokenizationDecisioningRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( params: TokenizationDecisioningRotateSecretParams = @@ -136,7 +136,7 @@ interface TokenizationDecisioningService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( params: TokenizationDecisioningRotateSecretParams = @@ -144,7 +144,7 @@ interface TokenizationDecisioningService { ): HttpResponseFor = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( requestOptions: RequestOptions diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TokenizationService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TokenizationService.kt index 7427e86a5..9cbacf794 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TokenizationService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TokenizationService.kt @@ -40,7 +40,7 @@ interface TokenizationService { fun retrieve(tokenizationToken: String): TokenizationRetrieveResponse = retrieve(tokenizationToken, TokenizationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( tokenizationToken: String, params: TokenizationRetrieveParams = TokenizationRetrieveParams.none(), @@ -48,23 +48,23 @@ interface TokenizationService { ): TokenizationRetrieveResponse = retrieve(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( tokenizationToken: String, params: TokenizationRetrieveParams = TokenizationRetrieveParams.none(), ): TokenizationRetrieveResponse = retrieve(tokenizationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TokenizationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): TokenizationRetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: TokenizationRetrieveParams): TokenizationRetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( tokenizationToken: String, requestOptions: RequestOptions, @@ -74,17 +74,17 @@ interface TokenizationService { /** List card tokenizations */ fun list(): TokenizationListPage = list(TokenizationListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: TokenizationListParams = TokenizationListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): TokenizationListPage - /** @see [list] */ + /** @see list */ fun list(params: TokenizationListParams = TokenizationListParams.none()): TokenizationListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): TokenizationListPage = list(TokenizationListParams.none(), requestOptions) @@ -100,29 +100,29 @@ interface TokenizationService { fun activate(tokenizationToken: String) = activate(tokenizationToken, TokenizationActivateParams.none()) - /** @see [activate] */ + /** @see activate */ fun activate( tokenizationToken: String, params: TokenizationActivateParams = TokenizationActivateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ) = activate(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [activate] */ + /** @see activate */ fun activate( tokenizationToken: String, params: TokenizationActivateParams = TokenizationActivateParams.none(), ) = activate(tokenizationToken, params, RequestOptions.none()) - /** @see [activate] */ + /** @see activate */ fun activate( params: TokenizationActivateParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [activate] */ + /** @see activate */ fun activate(params: TokenizationActivateParams) = activate(params, RequestOptions.none()) - /** @see [activate] */ + /** @see activate */ fun activate(tokenizationToken: String, requestOptions: RequestOptions) = activate(tokenizationToken, TokenizationActivateParams.none(), requestOptions) @@ -139,29 +139,29 @@ interface TokenizationService { fun deactivate(tokenizationToken: String) = deactivate(tokenizationToken, TokenizationDeactivateParams.none()) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( tokenizationToken: String, params: TokenizationDeactivateParams = TokenizationDeactivateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ) = deactivate(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( tokenizationToken: String, params: TokenizationDeactivateParams = TokenizationDeactivateParams.none(), ) = deactivate(tokenizationToken, params, RequestOptions.none()) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate( params: TokenizationDeactivateParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate(params: TokenizationDeactivateParams) = deactivate(params, RequestOptions.none()) - /** @see [deactivate] */ + /** @see deactivate */ fun deactivate(tokenizationToken: String, requestOptions: RequestOptions) = deactivate(tokenizationToken, TokenizationDeactivateParams.none(), requestOptions) @@ -176,29 +176,29 @@ interface TokenizationService { */ fun pause(tokenizationToken: String) = pause(tokenizationToken, TokenizationPauseParams.none()) - /** @see [pause] */ + /** @see pause */ fun pause( tokenizationToken: String, params: TokenizationPauseParams = TokenizationPauseParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ) = pause(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [pause] */ + /** @see pause */ fun pause( tokenizationToken: String, params: TokenizationPauseParams = TokenizationPauseParams.none(), ) = pause(tokenizationToken, params, RequestOptions.none()) - /** @see [pause] */ + /** @see pause */ fun pause( params: TokenizationPauseParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [pause] */ + /** @see pause */ fun pause(params: TokenizationPauseParams) = pause(params, RequestOptions.none()) - /** @see [pause] */ + /** @see pause */ fun pause(tokenizationToken: String, requestOptions: RequestOptions) = pause(tokenizationToken, TokenizationPauseParams.none(), requestOptions) @@ -216,7 +216,7 @@ interface TokenizationService { fun resendActivationCode(tokenizationToken: String) = resendActivationCode(tokenizationToken, TokenizationResendActivationCodeParams.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( tokenizationToken: String, params: TokenizationResendActivationCodeParams = @@ -228,24 +228,24 @@ interface TokenizationService { requestOptions, ) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( tokenizationToken: String, params: TokenizationResendActivationCodeParams = TokenizationResendActivationCodeParams.none(), ) = resendActivationCode(tokenizationToken, params, RequestOptions.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode( params: TokenizationResendActivationCodeParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode(params: TokenizationResendActivationCodeParams) = resendActivationCode(params, RequestOptions.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ fun resendActivationCode(tokenizationToken: String, requestOptions: RequestOptions) = resendActivationCode( tokenizationToken, @@ -260,7 +260,7 @@ interface TokenizationService { fun simulate(params: TokenizationSimulateParams): TokenizationSimulateResponse = simulate(params, RequestOptions.none()) - /** @see [simulate] */ + /** @see simulate */ fun simulate( params: TokenizationSimulateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -277,29 +277,29 @@ interface TokenizationService { fun unpause(tokenizationToken: String) = unpause(tokenizationToken, TokenizationUnpauseParams.none()) - /** @see [unpause] */ + /** @see unpause */ fun unpause( tokenizationToken: String, params: TokenizationUnpauseParams = TokenizationUnpauseParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ) = unpause(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [unpause] */ + /** @see unpause */ fun unpause( tokenizationToken: String, params: TokenizationUnpauseParams = TokenizationUnpauseParams.none(), ) = unpause(tokenizationToken, params, RequestOptions.none()) - /** @see [unpause] */ + /** @see unpause */ fun unpause( params: TokenizationUnpauseParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [unpause] */ + /** @see unpause */ fun unpause(params: TokenizationUnpauseParams) = unpause(params, RequestOptions.none()) - /** @see [unpause] */ + /** @see unpause */ fun unpause(tokenizationToken: String, requestOptions: RequestOptions) = unpause(tokenizationToken, TokenizationUnpauseParams.none(), requestOptions) @@ -315,7 +315,7 @@ interface TokenizationService { fun updateDigitalCardArt(tokenizationToken: String): TokenizationUpdateDigitalCardArtResponse = updateDigitalCardArt(tokenizationToken, TokenizationUpdateDigitalCardArtParams.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( tokenizationToken: String, params: TokenizationUpdateDigitalCardArtParams = @@ -327,7 +327,7 @@ interface TokenizationService { requestOptions, ) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( tokenizationToken: String, params: TokenizationUpdateDigitalCardArtParams = @@ -335,19 +335,19 @@ interface TokenizationService { ): TokenizationUpdateDigitalCardArtResponse = updateDigitalCardArt(tokenizationToken, params, RequestOptions.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( params: TokenizationUpdateDigitalCardArtParams, requestOptions: RequestOptions = RequestOptions.none(), ): TokenizationUpdateDigitalCardArtResponse - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( params: TokenizationUpdateDigitalCardArtParams ): TokenizationUpdateDigitalCardArtResponse = updateDigitalCardArt(params, RequestOptions.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ fun updateDigitalCardArt( tokenizationToken: String, requestOptions: RequestOptions, @@ -380,7 +380,7 @@ interface TokenizationService { fun retrieve(tokenizationToken: String): HttpResponseFor = retrieve(tokenizationToken, TokenizationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( tokenizationToken: String, @@ -392,7 +392,7 @@ interface TokenizationService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( tokenizationToken: String, @@ -400,20 +400,20 @@ interface TokenizationService { ): HttpResponseFor = retrieve(tokenizationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: TokenizationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: TokenizationRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( tokenizationToken: String, @@ -428,20 +428,20 @@ interface TokenizationService { @MustBeClosed fun list(): HttpResponseFor = list(TokenizationListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: TokenizationListParams = TokenizationListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: TokenizationListParams = TokenizationListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(TokenizationListParams.none(), requestOptions) @@ -454,7 +454,7 @@ interface TokenizationService { fun activate(tokenizationToken: String): HttpResponse = activate(tokenizationToken, TokenizationActivateParams.none()) - /** @see [activate] */ + /** @see activate */ @MustBeClosed fun activate( tokenizationToken: String, @@ -466,26 +466,26 @@ interface TokenizationService { requestOptions, ) - /** @see [activate] */ + /** @see activate */ @MustBeClosed fun activate( tokenizationToken: String, params: TokenizationActivateParams = TokenizationActivateParams.none(), ): HttpResponse = activate(tokenizationToken, params, RequestOptions.none()) - /** @see [activate] */ + /** @see activate */ @MustBeClosed fun activate( params: TokenizationActivateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [activate] */ + /** @see activate */ @MustBeClosed fun activate(params: TokenizationActivateParams): HttpResponse = activate(params, RequestOptions.none()) - /** @see [activate] */ + /** @see activate */ @MustBeClosed fun activate(tokenizationToken: String, requestOptions: RequestOptions): HttpResponse = activate(tokenizationToken, TokenizationActivateParams.none(), requestOptions) @@ -498,7 +498,7 @@ interface TokenizationService { fun deactivate(tokenizationToken: String): HttpResponse = deactivate(tokenizationToken, TokenizationDeactivateParams.none()) - /** @see [deactivate] */ + /** @see deactivate */ @MustBeClosed fun deactivate( tokenizationToken: String, @@ -510,26 +510,26 @@ interface TokenizationService { requestOptions, ) - /** @see [deactivate] */ + /** @see deactivate */ @MustBeClosed fun deactivate( tokenizationToken: String, params: TokenizationDeactivateParams = TokenizationDeactivateParams.none(), ): HttpResponse = deactivate(tokenizationToken, params, RequestOptions.none()) - /** @see [deactivate] */ + /** @see deactivate */ @MustBeClosed fun deactivate( params: TokenizationDeactivateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [deactivate] */ + /** @see deactivate */ @MustBeClosed fun deactivate(params: TokenizationDeactivateParams): HttpResponse = deactivate(params, RequestOptions.none()) - /** @see [deactivate] */ + /** @see deactivate */ @MustBeClosed fun deactivate(tokenizationToken: String, requestOptions: RequestOptions): HttpResponse = deactivate(tokenizationToken, TokenizationDeactivateParams.none(), requestOptions) @@ -542,7 +542,7 @@ interface TokenizationService { fun pause(tokenizationToken: String): HttpResponse = pause(tokenizationToken, TokenizationPauseParams.none()) - /** @see [pause] */ + /** @see pause */ @MustBeClosed fun pause( tokenizationToken: String, @@ -551,26 +551,26 @@ interface TokenizationService { ): HttpResponse = pause(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [pause] */ + /** @see pause */ @MustBeClosed fun pause( tokenizationToken: String, params: TokenizationPauseParams = TokenizationPauseParams.none(), ): HttpResponse = pause(tokenizationToken, params, RequestOptions.none()) - /** @see [pause] */ + /** @see pause */ @MustBeClosed fun pause( params: TokenizationPauseParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [pause] */ + /** @see pause */ @MustBeClosed fun pause(params: TokenizationPauseParams): HttpResponse = pause(params, RequestOptions.none()) - /** @see [pause] */ + /** @see pause */ @MustBeClosed fun pause(tokenizationToken: String, requestOptions: RequestOptions): HttpResponse = pause(tokenizationToken, TokenizationPauseParams.none(), requestOptions) @@ -584,7 +584,7 @@ interface TokenizationService { fun resendActivationCode(tokenizationToken: String): HttpResponse = resendActivationCode(tokenizationToken, TokenizationResendActivationCodeParams.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ @MustBeClosed fun resendActivationCode( tokenizationToken: String, @@ -597,7 +597,7 @@ interface TokenizationService { requestOptions, ) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ @MustBeClosed fun resendActivationCode( tokenizationToken: String, @@ -605,19 +605,19 @@ interface TokenizationService { TokenizationResendActivationCodeParams.none(), ): HttpResponse = resendActivationCode(tokenizationToken, params, RequestOptions.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ @MustBeClosed fun resendActivationCode( params: TokenizationResendActivationCodeParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ @MustBeClosed fun resendActivationCode(params: TokenizationResendActivationCodeParams): HttpResponse = resendActivationCode(params, RequestOptions.none()) - /** @see [resendActivationCode] */ + /** @see resendActivationCode */ @MustBeClosed fun resendActivationCode( tokenizationToken: String, @@ -638,7 +638,7 @@ interface TokenizationService { params: TokenizationSimulateParams ): HttpResponseFor = simulate(params, RequestOptions.none()) - /** @see [simulate] */ + /** @see simulate */ @MustBeClosed fun simulate( params: TokenizationSimulateParams, @@ -653,7 +653,7 @@ interface TokenizationService { fun unpause(tokenizationToken: String): HttpResponse = unpause(tokenizationToken, TokenizationUnpauseParams.none()) - /** @see [unpause] */ + /** @see unpause */ @MustBeClosed fun unpause( tokenizationToken: String, @@ -662,26 +662,26 @@ interface TokenizationService { ): HttpResponse = unpause(params.toBuilder().tokenizationToken(tokenizationToken).build(), requestOptions) - /** @see [unpause] */ + /** @see unpause */ @MustBeClosed fun unpause( tokenizationToken: String, params: TokenizationUnpauseParams = TokenizationUnpauseParams.none(), ): HttpResponse = unpause(tokenizationToken, params, RequestOptions.none()) - /** @see [unpause] */ + /** @see unpause */ @MustBeClosed fun unpause( params: TokenizationUnpauseParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [unpause] */ + /** @see unpause */ @MustBeClosed fun unpause(params: TokenizationUnpauseParams): HttpResponse = unpause(params, RequestOptions.none()) - /** @see [unpause] */ + /** @see unpause */ @MustBeClosed fun unpause(tokenizationToken: String, requestOptions: RequestOptions): HttpResponse = unpause(tokenizationToken, TokenizationUnpauseParams.none(), requestOptions) @@ -697,7 +697,7 @@ interface TokenizationService { ): HttpResponseFor = updateDigitalCardArt(tokenizationToken, TokenizationUpdateDigitalCardArtParams.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ @MustBeClosed fun updateDigitalCardArt( tokenizationToken: String, @@ -710,7 +710,7 @@ interface TokenizationService { requestOptions, ) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ @MustBeClosed fun updateDigitalCardArt( tokenizationToken: String, @@ -719,21 +719,21 @@ interface TokenizationService { ): HttpResponseFor = updateDigitalCardArt(tokenizationToken, params, RequestOptions.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ @MustBeClosed fun updateDigitalCardArt( params: TokenizationUpdateDigitalCardArtParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ @MustBeClosed fun updateDigitalCardArt( params: TokenizationUpdateDigitalCardArtParams ): HttpResponseFor = updateDigitalCardArt(params, RequestOptions.none()) - /** @see [updateDigitalCardArt] */ + /** @see updateDigitalCardArt */ @MustBeClosed fun updateDigitalCardArt( tokenizationToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TransactionService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TransactionService.kt index 10c457a27..3638017a8 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TransactionService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TransactionService.kt @@ -55,7 +55,7 @@ interface TransactionService { fun retrieve(transactionToken: String): Transaction = retrieve(transactionToken, TransactionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionRetrieveParams = TransactionRetrieveParams.none(), @@ -63,23 +63,23 @@ interface TransactionService { ): Transaction = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionRetrieveParams = TransactionRetrieveParams.none(), ): Transaction = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): Transaction - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: TransactionRetrieveParams): Transaction = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(transactionToken: String, requestOptions: RequestOptions): Transaction = retrieve(transactionToken, TransactionRetrieveParams.none(), requestOptions) @@ -89,17 +89,17 @@ interface TransactionService { */ fun list(): TransactionListPage = list(TransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: TransactionListParams = TransactionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): TransactionListPage - /** @see [list] */ + /** @see list */ fun list(params: TransactionListParams = TransactionListParams.none()): TransactionListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): TransactionListPage = list(TransactionListParams.none(), requestOptions) @@ -107,7 +107,7 @@ interface TransactionService { fun expireAuthorization(transactionToken: String) = expireAuthorization(transactionToken, TransactionExpireAuthorizationParams.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( transactionToken: String, params: TransactionExpireAuthorizationParams = TransactionExpireAuthorizationParams.none(), @@ -118,23 +118,23 @@ interface TransactionService { requestOptions, ) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( transactionToken: String, params: TransactionExpireAuthorizationParams = TransactionExpireAuthorizationParams.none(), ) = expireAuthorization(transactionToken, params, RequestOptions.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization( params: TransactionExpireAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization(params: TransactionExpireAuthorizationParams) = expireAuthorization(params, RequestOptions.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ fun expireAuthorization(transactionToken: String, requestOptions: RequestOptions) = expireAuthorization( transactionToken, @@ -155,7 +155,7 @@ interface TransactionService { ): TransactionSimulateAuthorizationResponse = simulateAuthorization(params, RequestOptions.none()) - /** @see [simulateAuthorization] */ + /** @see simulateAuthorization */ fun simulateAuthorization( params: TransactionSimulateAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -170,7 +170,7 @@ interface TransactionService { ): TransactionSimulateAuthorizationAdviceResponse = simulateAuthorizationAdvice(params, RequestOptions.none()) - /** @see [simulateAuthorizationAdvice] */ + /** @see simulateAuthorizationAdvice */ fun simulateAuthorizationAdvice( params: TransactionSimulateAuthorizationAdviceParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -187,7 +187,7 @@ interface TransactionService { params: TransactionSimulateClearingParams ): TransactionSimulateClearingResponse = simulateClearing(params, RequestOptions.none()) - /** @see [simulateClearing] */ + /** @see simulateClearing */ fun simulateClearing( params: TransactionSimulateClearingParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -202,7 +202,7 @@ interface TransactionService { ): TransactionSimulateCreditAuthorizationResponse = simulateCreditAuthorization(params, RequestOptions.none()) - /** @see [simulateCreditAuthorization] */ + /** @see simulateCreditAuthorization */ fun simulateCreditAuthorization( params: TransactionSimulateCreditAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -215,7 +215,7 @@ interface TransactionService { fun simulateReturn(params: TransactionSimulateReturnParams): TransactionSimulateReturnResponse = simulateReturn(params, RequestOptions.none()) - /** @see [simulateReturn] */ + /** @see simulateReturn */ fun simulateReturn( params: TransactionSimulateReturnParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -230,7 +230,7 @@ interface TransactionService { ): TransactionSimulateReturnReversalResponse = simulateReturnReversal(params, RequestOptions.none()) - /** @see [simulateReturnReversal] */ + /** @see simulateReturnReversal */ fun simulateReturnReversal( params: TransactionSimulateReturnReversalParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -245,7 +245,7 @@ interface TransactionService { fun simulateVoid(params: TransactionSimulateVoidParams): TransactionSimulateVoidResponse = simulateVoid(params, RequestOptions.none()) - /** @see [simulateVoid] */ + /** @see simulateVoid */ fun simulateVoid( params: TransactionSimulateVoidParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -277,7 +277,7 @@ interface TransactionService { fun retrieve(transactionToken: String): HttpResponseFor = retrieve(transactionToken, TransactionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( transactionToken: String, @@ -286,26 +286,26 @@ interface TransactionService { ): HttpResponseFor = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( transactionToken: String, params: TransactionRetrieveParams = TransactionRetrieveParams.none(), ): HttpResponseFor = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: TransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: TransactionRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( transactionToken: String, @@ -320,20 +320,20 @@ interface TransactionService { @MustBeClosed fun list(): HttpResponseFor = list(TransactionListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: TransactionListParams = TransactionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: TransactionListParams = TransactionListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(TransactionListParams.none(), requestOptions) @@ -347,7 +347,7 @@ interface TransactionService { fun expireAuthorization(transactionToken: String): HttpResponse = expireAuthorization(transactionToken, TransactionExpireAuthorizationParams.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ @MustBeClosed fun expireAuthorization( transactionToken: String, @@ -360,7 +360,7 @@ interface TransactionService { requestOptions, ) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ @MustBeClosed fun expireAuthorization( transactionToken: String, @@ -368,19 +368,19 @@ interface TransactionService { TransactionExpireAuthorizationParams.none(), ): HttpResponse = expireAuthorization(transactionToken, params, RequestOptions.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ @MustBeClosed fun expireAuthorization( params: TransactionExpireAuthorizationParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ @MustBeClosed fun expireAuthorization(params: TransactionExpireAuthorizationParams): HttpResponse = expireAuthorization(params, RequestOptions.none()) - /** @see [expireAuthorization] */ + /** @see expireAuthorization */ @MustBeClosed fun expireAuthorization( transactionToken: String, @@ -402,7 +402,7 @@ interface TransactionService { ): HttpResponseFor = simulateAuthorization(params, RequestOptions.none()) - /** @see [simulateAuthorization] */ + /** @see simulateAuthorization */ @MustBeClosed fun simulateAuthorization( params: TransactionSimulateAuthorizationParams, @@ -419,7 +419,7 @@ interface TransactionService { ): HttpResponseFor = simulateAuthorizationAdvice(params, RequestOptions.none()) - /** @see [simulateAuthorizationAdvice] */ + /** @see simulateAuthorizationAdvice */ @MustBeClosed fun simulateAuthorizationAdvice( params: TransactionSimulateAuthorizationAdviceParams, @@ -436,7 +436,7 @@ interface TransactionService { ): HttpResponseFor = simulateClearing(params, RequestOptions.none()) - /** @see [simulateClearing] */ + /** @see simulateClearing */ @MustBeClosed fun simulateClearing( params: TransactionSimulateClearingParams, @@ -453,7 +453,7 @@ interface TransactionService { ): HttpResponseFor = simulateCreditAuthorization(params, RequestOptions.none()) - /** @see [simulateCreditAuthorization] */ + /** @see simulateCreditAuthorization */ @MustBeClosed fun simulateCreditAuthorization( params: TransactionSimulateCreditAuthorizationParams, @@ -470,7 +470,7 @@ interface TransactionService { ): HttpResponseFor = simulateReturn(params, RequestOptions.none()) - /** @see [simulateReturn] */ + /** @see simulateReturn */ @MustBeClosed fun simulateReturn( params: TransactionSimulateReturnParams, @@ -487,7 +487,7 @@ interface TransactionService { ): HttpResponseFor = simulateReturnReversal(params, RequestOptions.none()) - /** @see [simulateReturnReversal] */ + /** @see simulateReturnReversal */ @MustBeClosed fun simulateReturnReversal( params: TransactionSimulateReturnReversalParams, @@ -504,7 +504,7 @@ interface TransactionService { ): HttpResponseFor = simulateVoid(params, RequestOptions.none()) - /** @see [simulateVoid] */ + /** @see simulateVoid */ @MustBeClosed fun simulateVoid( params: TransactionSimulateVoidParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TransferService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TransferService.kt index 661323b83..43d41acdc 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TransferService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/TransferService.kt @@ -28,7 +28,7 @@ interface TransferService { @Deprecated("deprecated") fun create(params: TransferCreateParams): Transfer = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @Deprecated("deprecated") fun create( params: TransferCreateParams, @@ -54,7 +54,7 @@ interface TransferService { fun create(params: TransferCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @Deprecated("deprecated") @MustBeClosed fun create( diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/authRules/V2Service.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/authRules/V2Service.kt index 97e32d3e6..1ce1a9ff6 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/authRules/V2Service.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/authRules/V2Service.kt @@ -49,7 +49,7 @@ interface V2Service { fun create(params: AuthRuleV2CreateParams): V2CreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: AuthRuleV2CreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -59,7 +59,7 @@ interface V2Service { fun retrieve(authRuleToken: String): V2RetrieveResponse = retrieve(authRuleToken, AuthRuleV2RetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleToken: String, params: AuthRuleV2RetrieveParams = AuthRuleV2RetrieveParams.none(), @@ -67,23 +67,23 @@ interface V2Service { ): V2RetrieveResponse = retrieve(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleToken: String, params: AuthRuleV2RetrieveParams = AuthRuleV2RetrieveParams.none(), ): V2RetrieveResponse = retrieve(authRuleToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AuthRuleV2RetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): V2RetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: AuthRuleV2RetrieveParams): V2RetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(authRuleToken: String, requestOptions: RequestOptions): V2RetrieveResponse = retrieve(authRuleToken, AuthRuleV2RetrieveParams.none(), requestOptions) @@ -96,7 +96,7 @@ interface V2Service { fun update(authRuleToken: String, params: AuthRuleV2UpdateParams): V2UpdateResponse = update(authRuleToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( authRuleToken: String, params: AuthRuleV2UpdateParams, @@ -104,11 +104,11 @@ interface V2Service { ): V2UpdateResponse = update(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update(params: AuthRuleV2UpdateParams): V2UpdateResponse = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: AuthRuleV2UpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -117,46 +117,46 @@ interface V2Service { /** Lists V2 Auth rules */ fun list(): AuthRuleV2ListPage = list(AuthRuleV2ListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: AuthRuleV2ListParams = AuthRuleV2ListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): AuthRuleV2ListPage - /** @see [list] */ + /** @see list */ fun list(params: AuthRuleV2ListParams = AuthRuleV2ListParams.none()): AuthRuleV2ListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): AuthRuleV2ListPage = list(AuthRuleV2ListParams.none(), requestOptions) /** Deletes a V2 Auth rule */ fun delete(authRuleToken: String) = delete(authRuleToken, AuthRuleV2DeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( authRuleToken: String, params: AuthRuleV2DeleteParams = AuthRuleV2DeleteParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ) = delete(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete( authRuleToken: String, params: AuthRuleV2DeleteParams = AuthRuleV2DeleteParams.none(), ) = delete(authRuleToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: AuthRuleV2DeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [delete] */ + /** @see delete */ fun delete(params: AuthRuleV2DeleteParams) = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete(authRuleToken: String, requestOptions: RequestOptions) = delete(authRuleToken, AuthRuleV2DeleteParams.none(), requestOptions) @@ -169,7 +169,7 @@ interface V2Service { fun apply(authRuleToken: String, params: AuthRuleV2ApplyParams): V2ApplyResponse = apply(authRuleToken, params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") fun apply( authRuleToken: String, @@ -178,11 +178,11 @@ interface V2Service { ): V2ApplyResponse = apply(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") fun apply(params: AuthRuleV2ApplyParams): V2ApplyResponse = apply(params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") fun apply( params: AuthRuleV2ApplyParams, @@ -198,7 +198,7 @@ interface V2Service { fun draft(authRuleToken: String): V2DraftResponse = draft(authRuleToken, AuthRuleV2DraftParams.none()) - /** @see [draft] */ + /** @see draft */ fun draft( authRuleToken: String, params: AuthRuleV2DraftParams = AuthRuleV2DraftParams.none(), @@ -206,22 +206,22 @@ interface V2Service { ): V2DraftResponse = draft(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [draft] */ + /** @see draft */ fun draft( authRuleToken: String, params: AuthRuleV2DraftParams = AuthRuleV2DraftParams.none(), ): V2DraftResponse = draft(authRuleToken, params, RequestOptions.none()) - /** @see [draft] */ + /** @see draft */ fun draft( params: AuthRuleV2DraftParams, requestOptions: RequestOptions = RequestOptions.none(), ): V2DraftResponse - /** @see [draft] */ + /** @see draft */ fun draft(params: AuthRuleV2DraftParams): V2DraftResponse = draft(params, RequestOptions.none()) - /** @see [draft] */ + /** @see draft */ fun draft(authRuleToken: String, requestOptions: RequestOptions): V2DraftResponse = draft(authRuleToken, AuthRuleV2DraftParams.none(), requestOptions) @@ -232,7 +232,7 @@ interface V2Service { fun promote(authRuleToken: String): V2PromoteResponse = promote(authRuleToken, AuthRuleV2PromoteParams.none()) - /** @see [promote] */ + /** @see promote */ fun promote( authRuleToken: String, params: AuthRuleV2PromoteParams = AuthRuleV2PromoteParams.none(), @@ -240,23 +240,23 @@ interface V2Service { ): V2PromoteResponse = promote(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [promote] */ + /** @see promote */ fun promote( authRuleToken: String, params: AuthRuleV2PromoteParams = AuthRuleV2PromoteParams.none(), ): V2PromoteResponse = promote(authRuleToken, params, RequestOptions.none()) - /** @see [promote] */ + /** @see promote */ fun promote( params: AuthRuleV2PromoteParams, requestOptions: RequestOptions = RequestOptions.none(), ): V2PromoteResponse - /** @see [promote] */ + /** @see promote */ fun promote(params: AuthRuleV2PromoteParams): V2PromoteResponse = promote(params, RequestOptions.none()) - /** @see [promote] */ + /** @see promote */ fun promote(authRuleToken: String, requestOptions: RequestOptions): V2PromoteResponse = promote(authRuleToken, AuthRuleV2PromoteParams.none(), requestOptions) @@ -310,7 +310,7 @@ interface V2Service { fun report(authRuleToken: String): V2ReportResponse = report(authRuleToken, AuthRuleV2ReportParams.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( authRuleToken: String, @@ -319,26 +319,26 @@ interface V2Service { ): V2ReportResponse = report(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( authRuleToken: String, params: AuthRuleV2ReportParams = AuthRuleV2ReportParams.none(), ): V2ReportResponse = report(authRuleToken, params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report( params: AuthRuleV2ReportParams, requestOptions: RequestOptions = RequestOptions.none(), ): V2ReportResponse - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report(params: AuthRuleV2ReportParams): V2ReportResponse = report(params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") fun report(authRuleToken: String, requestOptions: RequestOptions): V2ReportResponse = report(authRuleToken, AuthRuleV2ReportParams.none(), requestOptions) @@ -361,7 +361,7 @@ interface V2Service { params: AuthRuleV2RetrieveReportParams, ): V2RetrieveReportResponse = retrieveReport(authRuleToken, params, RequestOptions.none()) - /** @see [retrieveReport] */ + /** @see retrieveReport */ fun retrieveReport( authRuleToken: String, params: AuthRuleV2RetrieveReportParams, @@ -369,11 +369,11 @@ interface V2Service { ): V2RetrieveReportResponse = retrieveReport(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [retrieveReport] */ + /** @see retrieveReport */ fun retrieveReport(params: AuthRuleV2RetrieveReportParams): V2RetrieveReportResponse = retrieveReport(params, RequestOptions.none()) - /** @see [retrieveReport] */ + /** @see retrieveReport */ fun retrieveReport( params: AuthRuleV2RetrieveReportParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -399,7 +399,7 @@ interface V2Service { fun create(params: AuthRuleV2CreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: AuthRuleV2CreateParams, @@ -414,7 +414,7 @@ interface V2Service { fun retrieve(authRuleToken: String): HttpResponseFor = retrieve(authRuleToken, AuthRuleV2RetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( authRuleToken: String, @@ -423,7 +423,7 @@ interface V2Service { ): HttpResponseFor = retrieve(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( authRuleToken: String, @@ -431,19 +431,19 @@ interface V2Service { ): HttpResponseFor = retrieve(authRuleToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: AuthRuleV2RetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: AuthRuleV2RetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( authRuleToken: String, @@ -461,7 +461,7 @@ interface V2Service { params: AuthRuleV2UpdateParams, ): HttpResponseFor = update(authRuleToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( authRuleToken: String, @@ -470,12 +470,12 @@ interface V2Service { ): HttpResponseFor = update(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: AuthRuleV2UpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: AuthRuleV2UpdateParams, @@ -489,20 +489,20 @@ interface V2Service { @MustBeClosed fun list(): HttpResponseFor = list(AuthRuleV2ListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: AuthRuleV2ListParams = AuthRuleV2ListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: AuthRuleV2ListParams = AuthRuleV2ListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(AuthRuleV2ListParams.none(), requestOptions) @@ -515,7 +515,7 @@ interface V2Service { fun delete(authRuleToken: String): HttpResponse = delete(authRuleToken, AuthRuleV2DeleteParams.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( authRuleToken: String, @@ -524,26 +524,26 @@ interface V2Service { ): HttpResponse = delete(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( authRuleToken: String, params: AuthRuleV2DeleteParams = AuthRuleV2DeleteParams.none(), ): HttpResponse = delete(authRuleToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( params: AuthRuleV2DeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete(params: AuthRuleV2DeleteParams): HttpResponse = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete(authRuleToken: String, requestOptions: RequestOptions): HttpResponse = delete(authRuleToken, AuthRuleV2DeleteParams.none(), requestOptions) @@ -559,7 +559,7 @@ interface V2Service { params: AuthRuleV2ApplyParams, ): HttpResponseFor = apply(authRuleToken, params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") @MustBeClosed fun apply( @@ -569,13 +569,13 @@ interface V2Service { ): HttpResponseFor = apply(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") @MustBeClosed fun apply(params: AuthRuleV2ApplyParams): HttpResponseFor = apply(params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @Deprecated("deprecated") @MustBeClosed fun apply( @@ -591,7 +591,7 @@ interface V2Service { fun draft(authRuleToken: String): HttpResponseFor = draft(authRuleToken, AuthRuleV2DraftParams.none()) - /** @see [draft] */ + /** @see draft */ @MustBeClosed fun draft( authRuleToken: String, @@ -600,26 +600,26 @@ interface V2Service { ): HttpResponseFor = draft(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [draft] */ + /** @see draft */ @MustBeClosed fun draft( authRuleToken: String, params: AuthRuleV2DraftParams = AuthRuleV2DraftParams.none(), ): HttpResponseFor = draft(authRuleToken, params, RequestOptions.none()) - /** @see [draft] */ + /** @see draft */ @MustBeClosed fun draft( params: AuthRuleV2DraftParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [draft] */ + /** @see draft */ @MustBeClosed fun draft(params: AuthRuleV2DraftParams): HttpResponseFor = draft(params, RequestOptions.none()) - /** @see [draft] */ + /** @see draft */ @MustBeClosed fun draft( authRuleToken: String, @@ -635,7 +635,7 @@ interface V2Service { fun promote(authRuleToken: String): HttpResponseFor = promote(authRuleToken, AuthRuleV2PromoteParams.none()) - /** @see [promote] */ + /** @see promote */ @MustBeClosed fun promote( authRuleToken: String, @@ -644,7 +644,7 @@ interface V2Service { ): HttpResponseFor = promote(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [promote] */ + /** @see promote */ @MustBeClosed fun promote( authRuleToken: String, @@ -652,19 +652,19 @@ interface V2Service { ): HttpResponseFor = promote(authRuleToken, params, RequestOptions.none()) - /** @see [promote] */ + /** @see promote */ @MustBeClosed fun promote( params: AuthRuleV2PromoteParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [promote] */ + /** @see promote */ @MustBeClosed fun promote(params: AuthRuleV2PromoteParams): HttpResponseFor = promote(params, RequestOptions.none()) - /** @see [promote] */ + /** @see promote */ @MustBeClosed fun promote( authRuleToken: String, @@ -681,7 +681,7 @@ interface V2Service { fun report(authRuleToken: String): HttpResponseFor = report(authRuleToken, AuthRuleV2ReportParams.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") @MustBeClosed fun report( @@ -691,7 +691,7 @@ interface V2Service { ): HttpResponseFor = report(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") @MustBeClosed fun report( @@ -699,7 +699,7 @@ interface V2Service { params: AuthRuleV2ReportParams = AuthRuleV2ReportParams.none(), ): HttpResponseFor = report(authRuleToken, params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") @MustBeClosed fun report( @@ -707,13 +707,13 @@ interface V2Service { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") @MustBeClosed fun report(params: AuthRuleV2ReportParams): HttpResponseFor = report(params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @Deprecated("deprecated") @MustBeClosed fun report( @@ -733,7 +733,7 @@ interface V2Service { ): HttpResponseFor = retrieveReport(authRuleToken, params, RequestOptions.none()) - /** @see [retrieveReport] */ + /** @see retrieveReport */ @MustBeClosed fun retrieveReport( authRuleToken: String, @@ -742,13 +742,13 @@ interface V2Service { ): HttpResponseFor = retrieveReport(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [retrieveReport] */ + /** @see retrieveReport */ @MustBeClosed fun retrieveReport( params: AuthRuleV2RetrieveReportParams ): HttpResponseFor = retrieveReport(params, RequestOptions.none()) - /** @see [retrieveReport] */ + /** @see retrieveReport */ @MustBeClosed fun retrieveReport( params: AuthRuleV2RetrieveReportParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/authRules/v2/BacktestService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/authRules/v2/BacktestService.kt index c5d41ae81..009bf6e99 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/authRules/v2/BacktestService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/authRules/v2/BacktestService.kt @@ -53,7 +53,7 @@ interface BacktestService { fun create(authRuleToken: String): BacktestCreateResponse = create(authRuleToken, AuthRuleV2BacktestCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( authRuleToken: String, params: AuthRuleV2BacktestCreateParams = AuthRuleV2BacktestCreateParams.none(), @@ -61,23 +61,23 @@ interface BacktestService { ): BacktestCreateResponse = create(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create( authRuleToken: String, params: AuthRuleV2BacktestCreateParams = AuthRuleV2BacktestCreateParams.none(), ): BacktestCreateResponse = create(authRuleToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: AuthRuleV2BacktestCreateParams, requestOptions: RequestOptions = RequestOptions.none(), ): BacktestCreateResponse - /** @see [create] */ + /** @see create */ fun create(params: AuthRuleV2BacktestCreateParams): BacktestCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create(authRuleToken: String, requestOptions: RequestOptions): BacktestCreateResponse = create(authRuleToken, AuthRuleV2BacktestCreateParams.none(), requestOptions) @@ -104,7 +104,7 @@ interface BacktestService { params: AuthRuleV2BacktestRetrieveParams, ): BacktestResults = retrieve(authRuleBacktestToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( authRuleBacktestToken: String, params: AuthRuleV2BacktestRetrieveParams, @@ -115,11 +115,11 @@ interface BacktestService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: AuthRuleV2BacktestRetrieveParams): BacktestResults = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AuthRuleV2BacktestRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -143,7 +143,7 @@ interface BacktestService { fun create(authRuleToken: String): HttpResponseFor = create(authRuleToken, AuthRuleV2BacktestCreateParams.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( authRuleToken: String, @@ -152,7 +152,7 @@ interface BacktestService { ): HttpResponseFor = create(params.toBuilder().authRuleToken(authRuleToken).build(), requestOptions) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( authRuleToken: String, @@ -160,20 +160,20 @@ interface BacktestService { ): HttpResponseFor = create(authRuleToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: AuthRuleV2BacktestCreateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: AuthRuleV2BacktestCreateParams ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( authRuleToken: String, @@ -193,7 +193,7 @@ interface BacktestService { ): HttpResponseFor = retrieve(authRuleBacktestToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( authRuleBacktestToken: String, @@ -205,12 +205,12 @@ interface BacktestService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: AuthRuleV2BacktestRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: AuthRuleV2BacktestRetrieveParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/AggregateBalanceService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/AggregateBalanceService.kt index 21e4df031..b19909789 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/AggregateBalanceService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/AggregateBalanceService.kt @@ -27,18 +27,18 @@ interface AggregateBalanceService { /** Get the aggregated card balance across all end-user accounts. */ fun list(): CardAggregateBalanceListPage = list(CardAggregateBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardAggregateBalanceListParams = CardAggregateBalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CardAggregateBalanceListPage - /** @see [list] */ + /** @see list */ fun list( params: CardAggregateBalanceListParams = CardAggregateBalanceListParams.none() ): CardAggregateBalanceListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CardAggregateBalanceListPage = list(CardAggregateBalanceListParams.none(), requestOptions) @@ -65,20 +65,20 @@ interface AggregateBalanceService { fun list(): HttpResponseFor = list(CardAggregateBalanceListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CardAggregateBalanceListParams = CardAggregateBalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CardAggregateBalanceListParams = CardAggregateBalanceListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(CardAggregateBalanceListParams.none(), requestOptions) diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/BalanceService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/BalanceService.kt index 311059a38..bb85307af 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/BalanceService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/BalanceService.kt @@ -27,30 +27,30 @@ interface BalanceService { /** Get the balances for a given card. */ fun list(cardToken: String): CardBalanceListPage = list(cardToken, CardBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardBalanceListParams = CardBalanceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CardBalanceListPage = list(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardBalanceListParams = CardBalanceListParams.none(), ): CardBalanceListPage = list(cardToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardBalanceListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CardBalanceListPage - /** @see [list] */ + /** @see list */ fun list(params: CardBalanceListParams): CardBalanceListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(cardToken: String, requestOptions: RequestOptions): CardBalanceListPage = list(cardToken, CardBalanceListParams.none(), requestOptions) @@ -72,7 +72,7 @@ interface BalanceService { fun list(cardToken: String): HttpResponseFor = list(cardToken, CardBalanceListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( cardToken: String, @@ -81,26 +81,26 @@ interface BalanceService { ): HttpResponseFor = list(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( cardToken: String, params: CardBalanceListParams = CardBalanceListParams.none(), ): HttpResponseFor = list(cardToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CardBalanceListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(params: CardBalanceListParams): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( cardToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/FinancialTransactionService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/FinancialTransactionService.kt index c09ac896a..ab2bb2f81 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/FinancialTransactionService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/cards/FinancialTransactionService.kt @@ -32,7 +32,7 @@ interface FinancialTransactionService { params: CardFinancialTransactionRetrieveParams, ): FinancialTransaction = retrieve(financialTransactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialTransactionToken: String, params: CardFinancialTransactionRetrieveParams, @@ -43,11 +43,11 @@ interface FinancialTransactionService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: CardFinancialTransactionRetrieveParams): FinancialTransaction = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CardFinancialTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -57,7 +57,7 @@ interface FinancialTransactionService { fun list(cardToken: String): CardFinancialTransactionListPage = list(cardToken, CardFinancialTransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardFinancialTransactionListParams = CardFinancialTransactionListParams.none(), @@ -65,23 +65,23 @@ interface FinancialTransactionService { ): CardFinancialTransactionListPage = list(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( cardToken: String, params: CardFinancialTransactionListParams = CardFinancialTransactionListParams.none(), ): CardFinancialTransactionListPage = list(cardToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CardFinancialTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CardFinancialTransactionListPage - /** @see [list] */ + /** @see list */ fun list(params: CardFinancialTransactionListParams): CardFinancialTransactionListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(cardToken: String, requestOptions: RequestOptions): CardFinancialTransactionListPage = list(cardToken, CardFinancialTransactionListParams.none(), requestOptions) @@ -112,7 +112,7 @@ interface FinancialTransactionService { ): HttpResponseFor = retrieve(financialTransactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( financialTransactionToken: String, @@ -124,13 +124,13 @@ interface FinancialTransactionService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: CardFinancialTransactionRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: CardFinancialTransactionRetrieveParams, @@ -145,7 +145,7 @@ interface FinancialTransactionService { fun list(cardToken: String): HttpResponseFor = list(cardToken, CardFinancialTransactionListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( cardToken: String, @@ -154,7 +154,7 @@ interface FinancialTransactionService { ): HttpResponseFor = list(params.toBuilder().cardToken(cardToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( cardToken: String, @@ -162,20 +162,20 @@ interface FinancialTransactionService { ): HttpResponseFor = list(cardToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CardFinancialTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CardFinancialTransactionListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( cardToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/creditProducts/ExtendedCreditService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/creditProducts/ExtendedCreditService.kt index d98764ad1..97a3aa1b3 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/creditProducts/ExtendedCreditService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/creditProducts/ExtendedCreditService.kt @@ -28,7 +28,7 @@ interface ExtendedCreditService { fun retrieve(creditProductToken: String): ExtendedCredit = retrieve(creditProductToken, CreditProductExtendedCreditRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductExtendedCreditRetrieveParams = @@ -37,24 +37,24 @@ interface ExtendedCreditService { ): ExtendedCredit = retrieve(params.toBuilder().creditProductToken(creditProductToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductExtendedCreditRetrieveParams = CreditProductExtendedCreditRetrieveParams.none(), ): ExtendedCredit = retrieve(creditProductToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductExtendedCreditRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): ExtendedCredit - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: CreditProductExtendedCreditRetrieveParams): ExtendedCredit = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(creditProductToken: String, requestOptions: RequestOptions): ExtendedCredit = retrieve( creditProductToken, @@ -85,7 +85,7 @@ interface ExtendedCreditService { fun retrieve(creditProductToken: String): HttpResponseFor = retrieve(creditProductToken, CreditProductExtendedCreditRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( creditProductToken: String, @@ -98,7 +98,7 @@ interface ExtendedCreditService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( creditProductToken: String, @@ -107,20 +107,20 @@ interface ExtendedCreditService { ): HttpResponseFor = retrieve(creditProductToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: CreditProductExtendedCreditRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: CreditProductExtendedCreditRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( creditProductToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/creditProducts/PrimeRateService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/creditProducts/PrimeRateService.kt index 94807bb94..676ea5e0f 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/creditProducts/PrimeRateService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/creditProducts/PrimeRateService.kt @@ -30,17 +30,17 @@ interface PrimeRateService { fun create(creditProductToken: String, params: CreditProductPrimeRateCreateParams) = create(creditProductToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( creditProductToken: String, params: CreditProductPrimeRateCreateParams, requestOptions: RequestOptions = RequestOptions.none(), ) = create(params.toBuilder().creditProductToken(creditProductToken).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create(params: CreditProductPrimeRateCreateParams) = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CreditProductPrimeRateCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -50,7 +50,7 @@ interface PrimeRateService { fun retrieve(creditProductToken: String): PrimeRateRetrieveResponse = retrieve(creditProductToken, CreditProductPrimeRateRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductPrimeRateRetrieveParams = CreditProductPrimeRateRetrieveParams.none(), @@ -58,23 +58,23 @@ interface PrimeRateService { ): PrimeRateRetrieveResponse = retrieve(params.toBuilder().creditProductToken(creditProductToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, params: CreditProductPrimeRateRetrieveParams = CreditProductPrimeRateRetrieveParams.none(), ): PrimeRateRetrieveResponse = retrieve(creditProductToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: CreditProductPrimeRateRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): PrimeRateRetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: CreditProductPrimeRateRetrieveParams): PrimeRateRetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( creditProductToken: String, requestOptions: RequestOptions, @@ -102,7 +102,7 @@ interface PrimeRateService { params: CreditProductPrimeRateCreateParams, ): HttpResponse = create(creditProductToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( creditProductToken: String, @@ -114,12 +114,12 @@ interface PrimeRateService { requestOptions, ) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create(params: CreditProductPrimeRateCreateParams): HttpResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: CreditProductPrimeRateCreateParams, @@ -135,7 +135,7 @@ interface PrimeRateService { fun retrieve(creditProductToken: String): HttpResponseFor = retrieve(creditProductToken, CreditProductPrimeRateRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( creditProductToken: String, @@ -148,7 +148,7 @@ interface PrimeRateService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( creditProductToken: String, @@ -157,20 +157,20 @@ interface PrimeRateService { ): HttpResponseFor = retrieve(creditProductToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: CreditProductPrimeRateRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: CreditProductPrimeRateRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( creditProductToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/events/EventSubscriptionService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/events/EventSubscriptionService.kt index 9b33d3369..678fc1704 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/events/EventSubscriptionService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/events/EventSubscriptionService.kt @@ -27,7 +27,7 @@ interface EventSubscriptionService { fun resend(eventSubscriptionToken: String, params: EventEventSubscriptionResendParams) = resend(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [resend] */ + /** @see resend */ fun resend( eventSubscriptionToken: String, params: EventEventSubscriptionResendParams, @@ -38,10 +38,10 @@ interface EventSubscriptionService { requestOptions, ) - /** @see [resend] */ + /** @see resend */ fun resend(params: EventEventSubscriptionResendParams) = resend(params, RequestOptions.none()) - /** @see [resend] */ + /** @see resend */ fun resend( params: EventEventSubscriptionResendParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -73,7 +73,7 @@ interface EventSubscriptionService { params: EventEventSubscriptionResendParams, ): HttpResponse = resend(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [resend] */ + /** @see resend */ @MustBeClosed fun resend( eventSubscriptionToken: String, @@ -85,12 +85,12 @@ interface EventSubscriptionService { requestOptions, ) - /** @see [resend] */ + /** @see resend */ @MustBeClosed fun resend(params: EventEventSubscriptionResendParams): HttpResponse = resend(params, RequestOptions.none()) - /** @see [resend] */ + /** @see resend */ @MustBeClosed fun resend( params: EventEventSubscriptionResendParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/events/SubscriptionService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/events/SubscriptionService.kt index 591ef13b0..5f9b901a3 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/events/SubscriptionService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/events/SubscriptionService.kt @@ -42,7 +42,7 @@ interface SubscriptionService { fun create(params: EventSubscriptionCreateParams): EventSubscription = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: EventSubscriptionCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -52,7 +52,7 @@ interface SubscriptionService { fun retrieve(eventSubscriptionToken: String): EventSubscription = retrieve(eventSubscriptionToken, EventSubscriptionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventSubscriptionToken: String, params: EventSubscriptionRetrieveParams = EventSubscriptionRetrieveParams.none(), @@ -63,23 +63,23 @@ interface SubscriptionService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventSubscriptionToken: String, params: EventSubscriptionRetrieveParams = EventSubscriptionRetrieveParams.none(), ): EventSubscription = retrieve(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: EventSubscriptionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): EventSubscription - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: EventSubscriptionRetrieveParams): EventSubscription = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -92,7 +92,7 @@ interface SubscriptionService { params: EventSubscriptionUpdateParams, ): EventSubscription = update(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( eventSubscriptionToken: String, params: EventSubscriptionUpdateParams, @@ -103,11 +103,11 @@ interface SubscriptionService { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update(params: EventSubscriptionUpdateParams): EventSubscription = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: EventSubscriptionUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -116,18 +116,18 @@ interface SubscriptionService { /** List all the event subscriptions. */ fun list(): EventSubscriptionListPage = list(EventSubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventSubscriptionListParams = EventSubscriptionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): EventSubscriptionListPage - /** @see [list] */ + /** @see list */ fun list( params: EventSubscriptionListParams = EventSubscriptionListParams.none() ): EventSubscriptionListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): EventSubscriptionListPage = list(EventSubscriptionListParams.none(), requestOptions) @@ -135,7 +135,7 @@ interface SubscriptionService { fun delete(eventSubscriptionToken: String) = delete(eventSubscriptionToken, EventSubscriptionDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( eventSubscriptionToken: String, params: EventSubscriptionDeleteParams = EventSubscriptionDeleteParams.none(), @@ -146,22 +146,22 @@ interface SubscriptionService { requestOptions, ) - /** @see [delete] */ + /** @see delete */ fun delete( eventSubscriptionToken: String, params: EventSubscriptionDeleteParams = EventSubscriptionDeleteParams.none(), ) = delete(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: EventSubscriptionDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [delete] */ + /** @see delete */ fun delete(params: EventSubscriptionDeleteParams) = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete(eventSubscriptionToken: String, requestOptions: RequestOptions) = delete(eventSubscriptionToken, EventSubscriptionDeleteParams.none(), requestOptions) @@ -169,7 +169,7 @@ interface SubscriptionService { fun listAttempts(eventSubscriptionToken: String): EventSubscriptionListAttemptsPage = listAttempts(eventSubscriptionToken, EventSubscriptionListAttemptsParams.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventSubscriptionToken: String, params: EventSubscriptionListAttemptsParams = EventSubscriptionListAttemptsParams.none(), @@ -180,25 +180,25 @@ interface SubscriptionService { requestOptions, ) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventSubscriptionToken: String, params: EventSubscriptionListAttemptsParams = EventSubscriptionListAttemptsParams.none(), ): EventSubscriptionListAttemptsPage = listAttempts(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventSubscriptionListAttemptsParams, requestOptions: RequestOptions = RequestOptions.none(), ): EventSubscriptionListAttemptsPage - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( params: EventSubscriptionListAttemptsParams ): EventSubscriptionListAttemptsPage = listAttempts(params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ fun listAttempts( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -213,7 +213,7 @@ interface SubscriptionService { fun recover(eventSubscriptionToken: String) = recover(eventSubscriptionToken, EventSubscriptionRecoverParams.none()) - /** @see [recover] */ + /** @see recover */ fun recover( eventSubscriptionToken: String, params: EventSubscriptionRecoverParams = EventSubscriptionRecoverParams.none(), @@ -224,22 +224,22 @@ interface SubscriptionService { requestOptions, ) - /** @see [recover] */ + /** @see recover */ fun recover( eventSubscriptionToken: String, params: EventSubscriptionRecoverParams = EventSubscriptionRecoverParams.none(), ) = recover(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [recover] */ + /** @see recover */ fun recover( params: EventSubscriptionRecoverParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [recover] */ + /** @see recover */ fun recover(params: EventSubscriptionRecoverParams) = recover(params, RequestOptions.none()) - /** @see [recover] */ + /** @see recover */ fun recover(eventSubscriptionToken: String, requestOptions: RequestOptions) = recover(eventSubscriptionToken, EventSubscriptionRecoverParams.none(), requestOptions) @@ -252,7 +252,7 @@ interface SubscriptionService { fun replayMissing(eventSubscriptionToken: String) = replayMissing(eventSubscriptionToken, EventSubscriptionReplayMissingParams.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( eventSubscriptionToken: String, params: EventSubscriptionReplayMissingParams = EventSubscriptionReplayMissingParams.none(), @@ -263,23 +263,23 @@ interface SubscriptionService { requestOptions, ) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( eventSubscriptionToken: String, params: EventSubscriptionReplayMissingParams = EventSubscriptionReplayMissingParams.none(), ) = replayMissing(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing( params: EventSubscriptionReplayMissingParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing(params: EventSubscriptionReplayMissingParams) = replayMissing(params, RequestOptions.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ fun replayMissing(eventSubscriptionToken: String, requestOptions: RequestOptions) = replayMissing( eventSubscriptionToken, @@ -291,7 +291,7 @@ interface SubscriptionService { fun retrieveSecret(eventSubscriptionToken: String): SubscriptionRetrieveSecretResponse = retrieveSecret(eventSubscriptionToken, EventSubscriptionRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( eventSubscriptionToken: String, params: EventSubscriptionRetrieveSecretParams = @@ -303,25 +303,25 @@ interface SubscriptionService { requestOptions, ) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( eventSubscriptionToken: String, params: EventSubscriptionRetrieveSecretParams = EventSubscriptionRetrieveSecretParams.none(), ): SubscriptionRetrieveSecretResponse = retrieveSecret(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: EventSubscriptionRetrieveSecretParams, requestOptions: RequestOptions = RequestOptions.none(), ): SubscriptionRetrieveSecretResponse - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: EventSubscriptionRetrieveSecretParams ): SubscriptionRetrieveSecretResponse = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( eventSubscriptionToken: String, requestOptions: RequestOptions, @@ -339,7 +339,7 @@ interface SubscriptionService { fun rotateSecret(eventSubscriptionToken: String) = rotateSecret(eventSubscriptionToken, EventSubscriptionRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( eventSubscriptionToken: String, params: EventSubscriptionRotateSecretParams = EventSubscriptionRotateSecretParams.none(), @@ -350,23 +350,23 @@ interface SubscriptionService { requestOptions, ) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( eventSubscriptionToken: String, params: EventSubscriptionRotateSecretParams = EventSubscriptionRotateSecretParams.none(), ) = rotateSecret(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: EventSubscriptionRotateSecretParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(params: EventSubscriptionRotateSecretParams) = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(eventSubscriptionToken: String, requestOptions: RequestOptions) = rotateSecret( eventSubscriptionToken, @@ -381,7 +381,7 @@ interface SubscriptionService { EventSubscriptionSendSimulatedExampleParams.none(), ) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( eventSubscriptionToken: String, params: EventSubscriptionSendSimulatedExampleParams = @@ -393,24 +393,24 @@ interface SubscriptionService { requestOptions, ) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( eventSubscriptionToken: String, params: EventSubscriptionSendSimulatedExampleParams = EventSubscriptionSendSimulatedExampleParams.none(), ) = sendSimulatedExample(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample( params: EventSubscriptionSendSimulatedExampleParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample(params: EventSubscriptionSendSimulatedExampleParams) = sendSimulatedExample(params, RequestOptions.none()) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ fun sendSimulatedExample(eventSubscriptionToken: String, requestOptions: RequestOptions) = sendSimulatedExample( eventSubscriptionToken, @@ -440,7 +440,7 @@ interface SubscriptionService { fun create(params: EventSubscriptionCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: EventSubscriptionCreateParams, @@ -455,7 +455,7 @@ interface SubscriptionService { fun retrieve(eventSubscriptionToken: String): HttpResponseFor = retrieve(eventSubscriptionToken, EventSubscriptionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( eventSubscriptionToken: String, @@ -467,7 +467,7 @@ interface SubscriptionService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( eventSubscriptionToken: String, @@ -475,19 +475,19 @@ interface SubscriptionService { ): HttpResponseFor = retrieve(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: EventSubscriptionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: EventSubscriptionRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( eventSubscriptionToken: String, @@ -507,7 +507,7 @@ interface SubscriptionService { ): HttpResponseFor = update(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( eventSubscriptionToken: String, @@ -519,12 +519,12 @@ interface SubscriptionService { requestOptions, ) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: EventSubscriptionUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: EventSubscriptionUpdateParams, @@ -539,20 +539,20 @@ interface SubscriptionService { fun list(): HttpResponseFor = list(EventSubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: EventSubscriptionListParams = EventSubscriptionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: EventSubscriptionListParams = EventSubscriptionListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(EventSubscriptionListParams.none(), requestOptions) @@ -566,7 +566,7 @@ interface SubscriptionService { fun delete(eventSubscriptionToken: String): HttpResponse = delete(eventSubscriptionToken, EventSubscriptionDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( eventSubscriptionToken: String, @@ -578,26 +578,26 @@ interface SubscriptionService { requestOptions, ) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( eventSubscriptionToken: String, params: EventSubscriptionDeleteParams = EventSubscriptionDeleteParams.none(), ): HttpResponse = delete(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( params: EventSubscriptionDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete(params: EventSubscriptionDeleteParams): HttpResponse = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete(eventSubscriptionToken: String, requestOptions: RequestOptions): HttpResponse = delete(eventSubscriptionToken, EventSubscriptionDeleteParams.none(), requestOptions) @@ -613,7 +613,7 @@ interface SubscriptionService { ): HttpResponseFor = listAttempts(eventSubscriptionToken, EventSubscriptionListAttemptsParams.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts( eventSubscriptionToken: String, @@ -626,7 +626,7 @@ interface SubscriptionService { requestOptions, ) - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts( eventSubscriptionToken: String, @@ -634,21 +634,21 @@ interface SubscriptionService { ): HttpResponseFor = listAttempts(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts( params: EventSubscriptionListAttemptsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts( params: EventSubscriptionListAttemptsParams ): HttpResponseFor = listAttempts(params, RequestOptions.none()) - /** @see [listAttempts] */ + /** @see listAttempts */ @MustBeClosed fun listAttempts( eventSubscriptionToken: String, @@ -669,7 +669,7 @@ interface SubscriptionService { fun recover(eventSubscriptionToken: String): HttpResponse = recover(eventSubscriptionToken, EventSubscriptionRecoverParams.none()) - /** @see [recover] */ + /** @see recover */ @MustBeClosed fun recover( eventSubscriptionToken: String, @@ -681,26 +681,26 @@ interface SubscriptionService { requestOptions, ) - /** @see [recover] */ + /** @see recover */ @MustBeClosed fun recover( eventSubscriptionToken: String, params: EventSubscriptionRecoverParams = EventSubscriptionRecoverParams.none(), ): HttpResponse = recover(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [recover] */ + /** @see recover */ @MustBeClosed fun recover( params: EventSubscriptionRecoverParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [recover] */ + /** @see recover */ @MustBeClosed fun recover(params: EventSubscriptionRecoverParams): HttpResponse = recover(params, RequestOptions.none()) - /** @see [recover] */ + /** @see recover */ @MustBeClosed fun recover(eventSubscriptionToken: String, requestOptions: RequestOptions): HttpResponse = recover(eventSubscriptionToken, EventSubscriptionRecoverParams.none(), requestOptions) @@ -714,7 +714,7 @@ interface SubscriptionService { fun replayMissing(eventSubscriptionToken: String): HttpResponse = replayMissing(eventSubscriptionToken, EventSubscriptionReplayMissingParams.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ @MustBeClosed fun replayMissing( eventSubscriptionToken: String, @@ -727,7 +727,7 @@ interface SubscriptionService { requestOptions, ) - /** @see [replayMissing] */ + /** @see replayMissing */ @MustBeClosed fun replayMissing( eventSubscriptionToken: String, @@ -735,19 +735,19 @@ interface SubscriptionService { EventSubscriptionReplayMissingParams.none(), ): HttpResponse = replayMissing(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ @MustBeClosed fun replayMissing( params: EventSubscriptionReplayMissingParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [replayMissing] */ + /** @see replayMissing */ @MustBeClosed fun replayMissing(params: EventSubscriptionReplayMissingParams): HttpResponse = replayMissing(params, RequestOptions.none()) - /** @see [replayMissing] */ + /** @see replayMissing */ @MustBeClosed fun replayMissing( eventSubscriptionToken: String, @@ -770,7 +770,7 @@ interface SubscriptionService { ): HttpResponseFor = retrieveSecret(eventSubscriptionToken, EventSubscriptionRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( eventSubscriptionToken: String, @@ -783,7 +783,7 @@ interface SubscriptionService { requestOptions, ) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( eventSubscriptionToken: String, @@ -792,21 +792,21 @@ interface SubscriptionService { ): HttpResponseFor = retrieveSecret(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( params: EventSubscriptionRetrieveSecretParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( params: EventSubscriptionRetrieveSecretParams ): HttpResponseFor = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( eventSubscriptionToken: String, @@ -827,7 +827,7 @@ interface SubscriptionService { fun rotateSecret(eventSubscriptionToken: String): HttpResponse = rotateSecret(eventSubscriptionToken, EventSubscriptionRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( eventSubscriptionToken: String, @@ -840,26 +840,26 @@ interface SubscriptionService { requestOptions, ) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( eventSubscriptionToken: String, params: EventSubscriptionRotateSecretParams = EventSubscriptionRotateSecretParams.none(), ): HttpResponse = rotateSecret(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( params: EventSubscriptionRotateSecretParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret(params: EventSubscriptionRotateSecretParams): HttpResponse = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( eventSubscriptionToken: String, @@ -883,7 +883,7 @@ interface SubscriptionService { EventSubscriptionSendSimulatedExampleParams.none(), ) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ @MustBeClosed fun sendSimulatedExample( eventSubscriptionToken: String, @@ -896,7 +896,7 @@ interface SubscriptionService { requestOptions, ) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ @MustBeClosed fun sendSimulatedExample( eventSubscriptionToken: String, @@ -905,20 +905,20 @@ interface SubscriptionService { ): HttpResponse = sendSimulatedExample(eventSubscriptionToken, params, RequestOptions.none()) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ @MustBeClosed fun sendSimulatedExample( params: EventSubscriptionSendSimulatedExampleParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ @MustBeClosed fun sendSimulatedExample( params: EventSubscriptionSendSimulatedExampleParams ): HttpResponse = sendSimulatedExample(params, RequestOptions.none()) - /** @see [sendSimulatedExample] */ + /** @see sendSimulatedExample */ @MustBeClosed fun sendSimulatedExample( eventSubscriptionToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/externalBankAccounts/MicroDepositService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/externalBankAccounts/MicroDepositService.kt index 5bf475740..1caf2da83 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/externalBankAccounts/MicroDepositService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/externalBankAccounts/MicroDepositService.kt @@ -30,7 +30,7 @@ interface MicroDepositService { params: ExternalBankAccountMicroDepositCreateParams, ): MicroDepositCreateResponse = create(externalBankAccountToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( externalBankAccountToken: String, params: ExternalBankAccountMicroDepositCreateParams, @@ -41,11 +41,11 @@ interface MicroDepositService { requestOptions, ) - /** @see [create] */ + /** @see create */ fun create(params: ExternalBankAccountMicroDepositCreateParams): MicroDepositCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ExternalBankAccountMicroDepositCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -77,7 +77,7 @@ interface MicroDepositService { ): HttpResponseFor = create(externalBankAccountToken, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( externalBankAccountToken: String, @@ -89,13 +89,13 @@ interface MicroDepositService { requestOptions, ) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: ExternalBankAccountMicroDepositCreateParams ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: ExternalBankAccountMicroDepositCreateParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/BalanceService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/BalanceService.kt index 77326078d..784b213f0 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/BalanceService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/BalanceService.kt @@ -28,7 +28,7 @@ interface BalanceService { fun list(financialAccountToken: String): FinancialAccountBalanceListPage = list(financialAccountToken, FinancialAccountBalanceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountBalanceListParams = FinancialAccountBalanceListParams.none(), @@ -39,23 +39,23 @@ interface BalanceService { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountBalanceListParams = FinancialAccountBalanceListParams.none(), ): FinancialAccountBalanceListPage = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountBalanceListParams, requestOptions: RequestOptions = RequestOptions.none(), ): FinancialAccountBalanceListPage - /** @see [list] */ + /** @see list */ fun list(params: FinancialAccountBalanceListParams): FinancialAccountBalanceListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, @@ -81,7 +81,7 @@ interface BalanceService { fun list(financialAccountToken: String): HttpResponseFor = list(financialAccountToken, FinancialAccountBalanceListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, @@ -93,7 +93,7 @@ interface BalanceService { requestOptions, ) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, @@ -101,20 +101,20 @@ interface BalanceService { ): HttpResponseFor = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountBalanceListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountBalanceListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/CreditConfigurationService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/CreditConfigurationService.kt index b5731b3a7..74fd3e8a0 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/CreditConfigurationService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/CreditConfigurationService.kt @@ -29,7 +29,7 @@ interface CreditConfigurationService { fun retrieve(financialAccountToken: String): FinancialAccountCreditConfig = retrieve(financialAccountToken, FinancialAccountCreditConfigurationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountCreditConfigurationRetrieveParams = @@ -41,25 +41,25 @@ interface CreditConfigurationService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, params: FinancialAccountCreditConfigurationRetrieveParams = FinancialAccountCreditConfigurationRetrieveParams.none(), ): FinancialAccountCreditConfig = retrieve(financialAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountCreditConfigurationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): FinancialAccountCreditConfig - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountCreditConfigurationRetrieveParams ): FinancialAccountCreditConfig = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialAccountToken: String, requestOptions: RequestOptions, @@ -74,7 +74,7 @@ interface CreditConfigurationService { fun update(financialAccountToken: String): FinancialAccountCreditConfig = update(financialAccountToken, FinancialAccountCreditConfigurationUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountCreditConfigurationUpdateParams = @@ -86,25 +86,25 @@ interface CreditConfigurationService { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, params: FinancialAccountCreditConfigurationUpdateParams = FinancialAccountCreditConfigurationUpdateParams.none(), ): FinancialAccountCreditConfig = update(financialAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountCreditConfigurationUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): FinancialAccountCreditConfig - /** @see [update] */ + /** @see update */ fun update( params: FinancialAccountCreditConfigurationUpdateParams ): FinancialAccountCreditConfig = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( financialAccountToken: String, requestOptions: RequestOptions, @@ -142,7 +142,7 @@ interface CreditConfigurationService { FinancialAccountCreditConfigurationRetrieveParams.none(), ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( financialAccountToken: String, @@ -155,7 +155,7 @@ interface CreditConfigurationService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( financialAccountToken: String, @@ -164,20 +164,20 @@ interface CreditConfigurationService { ): HttpResponseFor = retrieve(financialAccountToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FinancialAccountCreditConfigurationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FinancialAccountCreditConfigurationRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( financialAccountToken: String, @@ -198,7 +198,7 @@ interface CreditConfigurationService { fun update(financialAccountToken: String): HttpResponseFor = update(financialAccountToken, FinancialAccountCreditConfigurationUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( financialAccountToken: String, @@ -211,7 +211,7 @@ interface CreditConfigurationService { requestOptions, ) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( financialAccountToken: String, @@ -220,20 +220,20 @@ interface CreditConfigurationService { ): HttpResponseFor = update(financialAccountToken, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: FinancialAccountCreditConfigurationUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: FinancialAccountCreditConfigurationUpdateParams ): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( financialAccountToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/FinancialTransactionService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/FinancialTransactionService.kt index 19e3d5596..ba9dcd198 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/FinancialTransactionService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/FinancialTransactionService.kt @@ -32,7 +32,7 @@ interface FinancialTransactionService { params: FinancialTransactionRetrieveParams, ): FinancialTransaction = retrieve(financialTransactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( financialTransactionToken: String, params: FinancialTransactionRetrieveParams, @@ -43,11 +43,11 @@ interface FinancialTransactionService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: FinancialTransactionRetrieveParams): FinancialTransaction = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -57,7 +57,7 @@ interface FinancialTransactionService { fun list(financialAccountToken: String): FinancialTransactionListPage = list(financialAccountToken, FinancialTransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialTransactionListParams = FinancialTransactionListParams.none(), @@ -68,23 +68,23 @@ interface FinancialTransactionService { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialTransactionListParams = FinancialTransactionListParams.none(), ): FinancialTransactionListPage = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): FinancialTransactionListPage - /** @see [list] */ + /** @see list */ fun list(params: FinancialTransactionListParams): FinancialTransactionListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, @@ -118,7 +118,7 @@ interface FinancialTransactionService { ): HttpResponseFor = retrieve(financialTransactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( financialTransactionToken: String, @@ -130,13 +130,13 @@ interface FinancialTransactionService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FinancialTransactionRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FinancialTransactionRetrieveParams, @@ -152,7 +152,7 @@ interface FinancialTransactionService { fun list(financialAccountToken: String): HttpResponseFor = list(financialAccountToken, FinancialTransactionListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, @@ -164,7 +164,7 @@ interface FinancialTransactionService { requestOptions, ) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, @@ -172,20 +172,20 @@ interface FinancialTransactionService { ): HttpResponseFor = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialTransactionListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/LoanTapeService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/LoanTapeService.kt index d8af71f39..ece154b09 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/LoanTapeService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/LoanTapeService.kt @@ -30,18 +30,18 @@ interface LoanTapeService { fun retrieve(loanTapeToken: String, params: FinancialAccountLoanTapeRetrieveParams): LoanTape = retrieve(loanTapeToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( loanTapeToken: String, params: FinancialAccountLoanTapeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): LoanTape = retrieve(params.toBuilder().loanTapeToken(loanTapeToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: FinancialAccountLoanTapeRetrieveParams): LoanTape = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountLoanTapeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -51,7 +51,7 @@ interface LoanTapeService { fun list(financialAccountToken: String): FinancialAccountLoanTapeListPage = list(financialAccountToken, FinancialAccountLoanTapeListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountLoanTapeListParams = FinancialAccountLoanTapeListParams.none(), @@ -62,23 +62,23 @@ interface LoanTapeService { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountLoanTapeListParams = FinancialAccountLoanTapeListParams.none(), ): FinancialAccountLoanTapeListPage = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountLoanTapeListParams, requestOptions: RequestOptions = RequestOptions.none(), ): FinancialAccountLoanTapeListPage - /** @see [list] */ + /** @see list */ fun list(params: FinancialAccountLoanTapeListParams): FinancialAccountLoanTapeListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, @@ -106,7 +106,7 @@ interface LoanTapeService { params: FinancialAccountLoanTapeRetrieveParams, ): HttpResponseFor = retrieve(loanTapeToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( loanTapeToken: String, @@ -115,12 +115,12 @@ interface LoanTapeService { ): HttpResponseFor = retrieve(params.toBuilder().loanTapeToken(loanTapeToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: FinancialAccountLoanTapeRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FinancialAccountLoanTapeRetrieveParams, @@ -136,7 +136,7 @@ interface LoanTapeService { fun list(financialAccountToken: String): HttpResponseFor = list(financialAccountToken, FinancialAccountLoanTapeListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, @@ -148,7 +148,7 @@ interface LoanTapeService { requestOptions, ) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, @@ -156,20 +156,20 @@ interface LoanTapeService { ): HttpResponseFor = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountLoanTapeListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountLoanTapeListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/StatementService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/StatementService.kt index 6150d746d..cdf7a5db0 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/StatementService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/StatementService.kt @@ -35,7 +35,7 @@ interface StatementService { params: FinancialAccountStatementRetrieveParams, ): Statement = retrieve(statementToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( statementToken: String, params: FinancialAccountStatementRetrieveParams, @@ -43,11 +43,11 @@ interface StatementService { ): Statement = retrieve(params.toBuilder().statementToken(statementToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: FinancialAccountStatementRetrieveParams): Statement = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FinancialAccountStatementRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -57,7 +57,7 @@ interface StatementService { fun list(financialAccountToken: String): FinancialAccountStatementListPage = list(financialAccountToken, FinancialAccountStatementListParams.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountStatementListParams = FinancialAccountStatementListParams.none(), @@ -68,24 +68,24 @@ interface StatementService { requestOptions, ) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, params: FinancialAccountStatementListParams = FinancialAccountStatementListParams.none(), ): FinancialAccountStatementListPage = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementListParams, requestOptions: RequestOptions = RequestOptions.none(), ): FinancialAccountStatementListPage - /** @see [list] */ + /** @see list */ fun list(params: FinancialAccountStatementListParams): FinancialAccountStatementListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( financialAccountToken: String, requestOptions: RequestOptions, @@ -115,7 +115,7 @@ interface StatementService { params: FinancialAccountStatementRetrieveParams, ): HttpResponseFor = retrieve(statementToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( statementToken: String, @@ -124,12 +124,12 @@ interface StatementService { ): HttpResponseFor = retrieve(params.toBuilder().statementToken(statementToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: FinancialAccountStatementRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FinancialAccountStatementRetrieveParams, @@ -147,7 +147,7 @@ interface StatementService { ): HttpResponseFor = list(financialAccountToken, FinancialAccountStatementListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, @@ -160,7 +160,7 @@ interface StatementService { requestOptions, ) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, @@ -168,20 +168,20 @@ interface StatementService { ): HttpResponseFor = list(financialAccountToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountStatementListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountStatementListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( financialAccountToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/statements/LineItemService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/statements/LineItemService.kt index e8ff3259c..1af5eef59 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/statements/LineItemService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/financialAccounts/statements/LineItemService.kt @@ -31,7 +31,7 @@ interface LineItemService { ): FinancialAccountStatementLineItemListPage = list(statementToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( statementToken: String, params: FinancialAccountStatementLineItemListParams, @@ -39,12 +39,12 @@ interface LineItemService { ): FinancialAccountStatementLineItemListPage = list(params.toBuilder().statementToken(statementToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementLineItemListParams ): FinancialAccountStatementLineItemListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: FinancialAccountStatementLineItemListParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -72,7 +72,7 @@ interface LineItemService { ): HttpResponseFor = list(statementToken, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( statementToken: String, @@ -81,14 +81,14 @@ interface LineItemService { ): HttpResponseFor = list(params.toBuilder().statementToken(statementToken).build(), requestOptions) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountStatementLineItemListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: FinancialAccountStatementLineItemListParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/fraud/TransactionService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/fraud/TransactionService.kt index 8551e7112..2a1bf53f5 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/fraud/TransactionService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/fraud/TransactionService.kt @@ -33,7 +33,7 @@ interface TransactionService { fun retrieve(transactionToken: String): TransactionRetrieveResponse = retrieve(transactionToken, FraudTransactionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: FraudTransactionRetrieveParams = FraudTransactionRetrieveParams.none(), @@ -41,23 +41,23 @@ interface TransactionService { ): TransactionRetrieveResponse = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: FraudTransactionRetrieveParams = FraudTransactionRetrieveParams.none(), ): TransactionRetrieveResponse = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: FraudTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): TransactionRetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: FraudTransactionRetrieveParams): TransactionRetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, requestOptions: RequestOptions, @@ -73,7 +73,7 @@ interface TransactionService { params: FraudTransactionReportParams, ): TransactionReportResponse = report(transactionToken, params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ fun report( transactionToken: String, params: FraudTransactionReportParams, @@ -81,11 +81,11 @@ interface TransactionService { ): TransactionReportResponse = report(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [report] */ + /** @see report */ fun report(params: FraudTransactionReportParams): TransactionReportResponse = report(params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ fun report( params: FraudTransactionReportParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -113,7 +113,7 @@ interface TransactionService { fun retrieve(transactionToken: String): HttpResponseFor = retrieve(transactionToken, FraudTransactionRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( transactionToken: String, @@ -122,7 +122,7 @@ interface TransactionService { ): HttpResponseFor = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( transactionToken: String, @@ -130,20 +130,20 @@ interface TransactionService { ): HttpResponseFor = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FraudTransactionRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: FraudTransactionRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( transactionToken: String, @@ -162,7 +162,7 @@ interface TransactionService { ): HttpResponseFor = report(transactionToken, params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @MustBeClosed fun report( transactionToken: String, @@ -171,13 +171,13 @@ interface TransactionService { ): HttpResponseFor = report(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [report] */ + /** @see report */ @MustBeClosed fun report( params: FraudTransactionReportParams ): HttpResponseFor = report(params, RequestOptions.none()) - /** @see [report] */ + /** @see report */ @MustBeClosed fun report( params: FraudTransactionReportParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/reports/SettlementService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/reports/SettlementService.kt index 26abf8a41..6709341f8 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/reports/SettlementService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/reports/SettlementService.kt @@ -34,7 +34,7 @@ interface SettlementService { fun listDetails(reportDate: LocalDate): ReportSettlementListDetailsPage = listDetails(reportDate, ReportSettlementListDetailsParams.none()) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( reportDate: LocalDate, params: ReportSettlementListDetailsParams = ReportSettlementListDetailsParams.none(), @@ -42,23 +42,23 @@ interface SettlementService { ): ReportSettlementListDetailsPage = listDetails(params.toBuilder().reportDate(reportDate).build(), requestOptions) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( reportDate: LocalDate, params: ReportSettlementListDetailsParams = ReportSettlementListDetailsParams.none(), ): ReportSettlementListDetailsPage = listDetails(reportDate, params, RequestOptions.none()) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( params: ReportSettlementListDetailsParams, requestOptions: RequestOptions = RequestOptions.none(), ): ReportSettlementListDetailsPage - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails(params: ReportSettlementListDetailsParams): ReportSettlementListDetailsPage = listDetails(params, RequestOptions.none()) - /** @see [listDetails] */ + /** @see listDetails */ fun listDetails( reportDate: LocalDate, requestOptions: RequestOptions, @@ -69,30 +69,30 @@ interface SettlementService { fun summary(reportDate: LocalDate): SettlementReport = summary(reportDate, ReportSettlementSummaryParams.none()) - /** @see [summary] */ + /** @see summary */ fun summary( reportDate: LocalDate, params: ReportSettlementSummaryParams = ReportSettlementSummaryParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): SettlementReport = summary(params.toBuilder().reportDate(reportDate).build(), requestOptions) - /** @see [summary] */ + /** @see summary */ fun summary( reportDate: LocalDate, params: ReportSettlementSummaryParams = ReportSettlementSummaryParams.none(), ): SettlementReport = summary(reportDate, params, RequestOptions.none()) - /** @see [summary] */ + /** @see summary */ fun summary( params: ReportSettlementSummaryParams, requestOptions: RequestOptions = RequestOptions.none(), ): SettlementReport - /** @see [summary] */ + /** @see summary */ fun summary(params: ReportSettlementSummaryParams): SettlementReport = summary(params, RequestOptions.none()) - /** @see [summary] */ + /** @see summary */ fun summary(reportDate: LocalDate, requestOptions: RequestOptions): SettlementReport = summary(reportDate, ReportSettlementSummaryParams.none(), requestOptions) @@ -118,7 +118,7 @@ interface SettlementService { fun listDetails(reportDate: LocalDate): HttpResponseFor = listDetails(reportDate, ReportSettlementListDetailsParams.none()) - /** @see [listDetails] */ + /** @see listDetails */ @MustBeClosed fun listDetails( reportDate: LocalDate, @@ -127,7 +127,7 @@ interface SettlementService { ): HttpResponseFor = listDetails(params.toBuilder().reportDate(reportDate).build(), requestOptions) - /** @see [listDetails] */ + /** @see listDetails */ @MustBeClosed fun listDetails( reportDate: LocalDate, @@ -135,21 +135,21 @@ interface SettlementService { ): HttpResponseFor = listDetails(reportDate, params, RequestOptions.none()) - /** @see [listDetails] */ + /** @see listDetails */ @MustBeClosed fun listDetails( params: ReportSettlementListDetailsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [listDetails] */ + /** @see listDetails */ @MustBeClosed fun listDetails( params: ReportSettlementListDetailsParams ): HttpResponseFor = listDetails(params, RequestOptions.none()) - /** @see [listDetails] */ + /** @see listDetails */ @MustBeClosed fun listDetails( reportDate: LocalDate, @@ -165,7 +165,7 @@ interface SettlementService { fun summary(reportDate: LocalDate): HttpResponseFor = summary(reportDate, ReportSettlementSummaryParams.none()) - /** @see [summary] */ + /** @see summary */ @MustBeClosed fun summary( reportDate: LocalDate, @@ -174,26 +174,26 @@ interface SettlementService { ): HttpResponseFor = summary(params.toBuilder().reportDate(reportDate).build(), requestOptions) - /** @see [summary] */ + /** @see summary */ @MustBeClosed fun summary( reportDate: LocalDate, params: ReportSettlementSummaryParams = ReportSettlementSummaryParams.none(), ): HttpResponseFor = summary(reportDate, params, RequestOptions.none()) - /** @see [summary] */ + /** @see summary */ @MustBeClosed fun summary( params: ReportSettlementSummaryParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [summary] */ + /** @see summary */ @MustBeClosed fun summary(params: ReportSettlementSummaryParams): HttpResponseFor = summary(params, RequestOptions.none()) - /** @see [summary] */ + /** @see summary */ @MustBeClosed fun summary( reportDate: LocalDate, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/reports/settlement/NetworkTotalService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/reports/settlement/NetworkTotalService.kt index 97f20796b..edc41238c 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/reports/settlement/NetworkTotalService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/reports/settlement/NetworkTotalService.kt @@ -30,7 +30,7 @@ interface NetworkTotalService { fun retrieve(token: String): NetworkTotalRetrieveResponse = retrieve(token, ReportSettlementNetworkTotalRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( token: String, params: ReportSettlementNetworkTotalRetrieveParams = @@ -39,24 +39,24 @@ interface NetworkTotalService { ): NetworkTotalRetrieveResponse = retrieve(params.toBuilder().token(token).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( token: String, params: ReportSettlementNetworkTotalRetrieveParams = ReportSettlementNetworkTotalRetrieveParams.none(), ): NetworkTotalRetrieveResponse = retrieve(token, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ReportSettlementNetworkTotalRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): NetworkTotalRetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: ReportSettlementNetworkTotalRetrieveParams): NetworkTotalRetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(token: String, requestOptions: RequestOptions): NetworkTotalRetrieveResponse = retrieve(token, ReportSettlementNetworkTotalRetrieveParams.none(), requestOptions) @@ -64,20 +64,20 @@ interface NetworkTotalService { fun list(): ReportSettlementNetworkTotalListPage = list(ReportSettlementNetworkTotalListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ReportSettlementNetworkTotalListParams = ReportSettlementNetworkTotalListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): ReportSettlementNetworkTotalListPage - /** @see [list] */ + /** @see list */ fun list( params: ReportSettlementNetworkTotalListParams = ReportSettlementNetworkTotalListParams.none() ): ReportSettlementNetworkTotalListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): ReportSettlementNetworkTotalListPage = list(ReportSettlementNetworkTotalListParams.none(), requestOptions) @@ -103,7 +103,7 @@ interface NetworkTotalService { fun retrieve(token: String): HttpResponseFor = retrieve(token, ReportSettlementNetworkTotalRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( token: String, @@ -113,7 +113,7 @@ interface NetworkTotalService { ): HttpResponseFor = retrieve(params.toBuilder().token(token).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( token: String, @@ -122,20 +122,20 @@ interface NetworkTotalService { ): HttpResponseFor = retrieve(token, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: ReportSettlementNetworkTotalRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: ReportSettlementNetworkTotalRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( token: String, @@ -151,7 +151,7 @@ interface NetworkTotalService { fun list(): HttpResponseFor = list(ReportSettlementNetworkTotalListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: ReportSettlementNetworkTotalListParams = @@ -159,7 +159,7 @@ interface NetworkTotalService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: ReportSettlementNetworkTotalListParams = @@ -167,7 +167,7 @@ interface NetworkTotalService { ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( requestOptions: RequestOptions diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/threeDS/AuthenticationService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/threeDS/AuthenticationService.kt index 7619fc767..0c10dbe2a 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/threeDS/AuthenticationService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/threeDS/AuthenticationService.kt @@ -32,7 +32,7 @@ interface AuthenticationService { fun retrieve(threeDSAuthenticationToken: String): AuthenticationRetrieveResponse = retrieve(threeDSAuthenticationToken, ThreeDSAuthenticationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( threeDSAuthenticationToken: String, params: ThreeDSAuthenticationRetrieveParams = ThreeDSAuthenticationRetrieveParams.none(), @@ -43,24 +43,24 @@ interface AuthenticationService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( threeDSAuthenticationToken: String, params: ThreeDSAuthenticationRetrieveParams = ThreeDSAuthenticationRetrieveParams.none(), ): AuthenticationRetrieveResponse = retrieve(threeDSAuthenticationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: ThreeDSAuthenticationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): AuthenticationRetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: ThreeDSAuthenticationRetrieveParams): AuthenticationRetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( threeDSAuthenticationToken: String, requestOptions: RequestOptions, @@ -81,7 +81,7 @@ interface AuthenticationService { fun simulate(params: ThreeDSAuthenticationSimulateParams): AuthenticationSimulateResponse = simulate(params, RequestOptions.none()) - /** @see [simulate] */ + /** @see simulate */ fun simulate( params: ThreeDSAuthenticationSimulateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -96,7 +96,7 @@ interface AuthenticationService { fun simulateOtpEntry(params: ThreeDSAuthenticationSimulateOtpEntryParams) = simulateOtpEntry(params, RequestOptions.none()) - /** @see [simulateOtpEntry] */ + /** @see simulateOtpEntry */ fun simulateOtpEntry( params: ThreeDSAuthenticationSimulateOtpEntryParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -127,7 +127,7 @@ interface AuthenticationService { ): HttpResponseFor = retrieve(threeDSAuthenticationToken, ThreeDSAuthenticationRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( threeDSAuthenticationToken: String, @@ -140,7 +140,7 @@ interface AuthenticationService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( threeDSAuthenticationToken: String, @@ -148,20 +148,20 @@ interface AuthenticationService { ): HttpResponseFor = retrieve(threeDSAuthenticationToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: ThreeDSAuthenticationRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: ThreeDSAuthenticationRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( threeDSAuthenticationToken: String, @@ -182,7 +182,7 @@ interface AuthenticationService { params: ThreeDSAuthenticationSimulateParams ): HttpResponseFor = simulate(params, RequestOptions.none()) - /** @see [simulate] */ + /** @see simulate */ @MustBeClosed fun simulate( params: ThreeDSAuthenticationSimulateParams, @@ -197,7 +197,7 @@ interface AuthenticationService { fun simulateOtpEntry(params: ThreeDSAuthenticationSimulateOtpEntryParams): HttpResponse = simulateOtpEntry(params, RequestOptions.none()) - /** @see [simulateOtpEntry] */ + /** @see simulateOtpEntry */ @MustBeClosed fun simulateOtpEntry( params: ThreeDSAuthenticationSimulateOtpEntryParams, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/threeDS/DecisioningService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/threeDS/DecisioningService.kt index cd3414ab4..f71db895d 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/threeDS/DecisioningService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/threeDS/DecisioningService.kt @@ -36,7 +36,7 @@ interface DecisioningService { fun challengeResponse(params: ThreeDSDecisioningChallengeResponseParams) = challengeResponse(params, RequestOptions.none()) - /** @see [challengeResponse] */ + /** @see challengeResponse */ fun challengeResponse( params: ThreeDSDecisioningChallengeResponseParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -53,20 +53,20 @@ interface DecisioningService { fun retrieveSecret(): DecisioningRetrieveSecretResponse = retrieveSecret(ThreeDSDecisioningRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: ThreeDSDecisioningRetrieveSecretParams = ThreeDSDecisioningRetrieveSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): DecisioningRetrieveSecretResponse - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret( params: ThreeDSDecisioningRetrieveSecretParams = ThreeDSDecisioningRetrieveSecretParams.none() ): DecisioningRetrieveSecretResponse = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ fun retrieveSecret(requestOptions: RequestOptions): DecisioningRetrieveSecretResponse = retrieveSecret(ThreeDSDecisioningRetrieveSecretParams.none(), requestOptions) @@ -78,18 +78,18 @@ interface DecisioningService { */ fun rotateSecret() = rotateSecret(ThreeDSDecisioningRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: ThreeDSDecisioningRotateSecretParams = ThreeDSDecisioningRotateSecretParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret( params: ThreeDSDecisioningRotateSecretParams = ThreeDSDecisioningRotateSecretParams.none() ) = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ fun rotateSecret(requestOptions: RequestOptions) = rotateSecret(ThreeDSDecisioningRotateSecretParams.none(), requestOptions) @@ -115,7 +115,7 @@ interface DecisioningService { fun challengeResponse(params: ThreeDSDecisioningChallengeResponseParams): HttpResponse = challengeResponse(params, RequestOptions.none()) - /** @see [challengeResponse] */ + /** @see challengeResponse */ @MustBeClosed fun challengeResponse( params: ThreeDSDecisioningChallengeResponseParams, @@ -130,7 +130,7 @@ interface DecisioningService { fun retrieveSecret(): HttpResponseFor = retrieveSecret(ThreeDSDecisioningRetrieveSecretParams.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( params: ThreeDSDecisioningRetrieveSecretParams = @@ -138,7 +138,7 @@ interface DecisioningService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( params: ThreeDSDecisioningRetrieveSecretParams = @@ -146,7 +146,7 @@ interface DecisioningService { ): HttpResponseFor = retrieveSecret(params, RequestOptions.none()) - /** @see [retrieveSecret] */ + /** @see retrieveSecret */ @MustBeClosed fun retrieveSecret( requestOptions: RequestOptions @@ -160,7 +160,7 @@ interface DecisioningService { @MustBeClosed fun rotateSecret(): HttpResponse = rotateSecret(ThreeDSDecisioningRotateSecretParams.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( params: ThreeDSDecisioningRotateSecretParams = @@ -168,14 +168,14 @@ interface DecisioningService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret( params: ThreeDSDecisioningRotateSecretParams = ThreeDSDecisioningRotateSecretParams.none() ): HttpResponse = rotateSecret(params, RequestOptions.none()) - /** @see [rotateSecret] */ + /** @see rotateSecret */ @MustBeClosed fun rotateSecret(requestOptions: RequestOptions): HttpResponse = rotateSecret(ThreeDSDecisioningRotateSecretParams.none(), requestOptions) diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/transactions/EnhancedCommercialDataService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/transactions/EnhancedCommercialDataService.kt index f88d573fb..b0f59e2c4 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/transactions/EnhancedCommercialDataService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/transactions/EnhancedCommercialDataService.kt @@ -31,7 +31,7 @@ interface EnhancedCommercialDataService { fun retrieve(transactionToken: String): EnhancedCommercialDataRetrieveResponse = retrieve(transactionToken, TransactionEnhancedCommercialDataRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionEnhancedCommercialDataRetrieveParams = @@ -40,7 +40,7 @@ interface EnhancedCommercialDataService { ): EnhancedCommercialDataRetrieveResponse = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, params: TransactionEnhancedCommercialDataRetrieveParams = @@ -48,18 +48,18 @@ interface EnhancedCommercialDataService { ): EnhancedCommercialDataRetrieveResponse = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEnhancedCommercialDataRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): EnhancedCommercialDataRetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEnhancedCommercialDataRetrieveParams ): EnhancedCommercialDataRetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( transactionToken: String, requestOptions: RequestOptions, @@ -96,7 +96,7 @@ interface EnhancedCommercialDataService { ): HttpResponseFor = retrieve(transactionToken, TransactionEnhancedCommercialDataRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( transactionToken: String, @@ -106,7 +106,7 @@ interface EnhancedCommercialDataService { ): HttpResponseFor = retrieve(params.toBuilder().transactionToken(transactionToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( transactionToken: String, @@ -115,21 +115,21 @@ interface EnhancedCommercialDataService { ): HttpResponseFor = retrieve(transactionToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: TransactionEnhancedCommercialDataRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: TransactionEnhancedCommercialDataRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( transactionToken: String, diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/transactions/events/EnhancedCommercialDataService.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/transactions/events/EnhancedCommercialDataService.kt index 462d1b197..3173cf275 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/transactions/events/EnhancedCommercialDataService.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/services/blocking/transactions/events/EnhancedCommercialDataService.kt @@ -31,7 +31,7 @@ interface EnhancedCommercialDataService { fun retrieve(eventToken: String): EnhancedData = retrieve(eventToken, TransactionEventEnhancedCommercialDataRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: TransactionEventEnhancedCommercialDataRetrieveParams = @@ -39,24 +39,24 @@ interface EnhancedCommercialDataService { requestOptions: RequestOptions = RequestOptions.none(), ): EnhancedData = retrieve(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( eventToken: String, params: TransactionEventEnhancedCommercialDataRetrieveParams = TransactionEventEnhancedCommercialDataRetrieveParams.none(), ): EnhancedData = retrieve(eventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: TransactionEventEnhancedCommercialDataRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): EnhancedData - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: TransactionEventEnhancedCommercialDataRetrieveParams): EnhancedData = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(eventToken: String, requestOptions: RequestOptions): EnhancedData = retrieve( eventToken, @@ -88,7 +88,7 @@ interface EnhancedCommercialDataService { fun retrieve(eventToken: String): HttpResponseFor = retrieve(eventToken, TransactionEventEnhancedCommercialDataRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( eventToken: String, @@ -98,7 +98,7 @@ interface EnhancedCommercialDataService { ): HttpResponseFor = retrieve(params.toBuilder().eventToken(eventToken).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( eventToken: String, @@ -106,20 +106,20 @@ interface EnhancedCommercialDataService { TransactionEventEnhancedCommercialDataRetrieveParams.none(), ): HttpResponseFor = retrieve(eventToken, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: TransactionEventEnhancedCommercialDataRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: TransactionEventEnhancedCommercialDataRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( eventToken: String,