diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cce9d1c6..c523ce19 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.7.0" + ".": "1.8.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 5a4c2212..82cec55f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 116 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-a44cccd16bb58080f7cc0669999403f6ed3f77287fad901caa6fd2523f2fbafd.yml -openapi_spec_hash: af6444648d0b2a70b7f7ad234bd37541 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-1aabbd8715a871e993abf67f0bf9c1d6793b4f197c4b2f11fc7a76453590cd6c.yml +openapi_spec_hash: 3e5878f87e74881d882a69e1ccdc25a3 config_hash: 1f535c1fa222aacf28b636eed21bec72 diff --git a/CHANGELOG.md b/CHANGELOG.md index cb637c52..80798a38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 1.8.0 (2025-07-24) + +Full Changelog: [v1.7.0...v1.8.0](https://github.com/orbcorp/orb-java/compare/v1.7.0...v1.8.0) + +### Features + +* **api:** api update ([d9b5f74](https://github.com/orbcorp/orb-java/commit/d9b5f744ddeb6fd8e74ad62bc7e36cf187d3078d)) +* **client:** add `{QueryParams,Headers}#put(String, JsonValue)` methods ([1985d12](https://github.com/orbcorp/orb-java/commit/1985d1259d8f0737819b815e198ee4b3455499ce)) + + +### Chores + +* **internal:** remove unnecessary `[...]` in `[@see](https://github.com/see)` ([cc42cf6](https://github.com/orbcorp/orb-java/commit/cc42cf60494abf45d48cf3043735349e04787805)) + + +### Documentation + +* fix missing readme comment ([3c649f1](https://github.com/orbcorp/orb-java/commit/3c649f13490f3f6a9c2ac40f0b13c92671314af3)) +* more code comments ([0fac99b](https://github.com/orbcorp/orb-java/commit/0fac99b1da5ef2ddc8b7a73c3d5aa2601d9a8958)) + ## 1.7.0 (2025-07-21) Full Changelog: [v1.6.0...v1.7.0](https://github.com/orbcorp/orb-java/compare/v1.6.0...v1.7.0) diff --git a/README.md b/README.md index 9dd70642..cdb8cd80 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/1.7.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/1.8.0) @@ -19,7 +19,7 @@ The REST API documentation can be found on [docs.withorb.com](https://docs.witho ### Gradle ```kotlin -implementation("com.withorb.api:orb-java:1.7.0") +implementation("com.withorb.api:orb-java:1.8.0") ``` ### Maven @@ -28,7 +28,7 @@ implementation("com.withorb.api:orb-java:1.7.0") com.withorb.api orb-java - 1.7.0 + 1.8.0 ``` @@ -89,7 +89,7 @@ import com.withorb.api.client.okhttp.OrbOkHttpClient; OrbClient client = OrbOkHttpClient.builder() // Configures using the `orb.apiKey`, `orb.webhookSecret` and `orb.baseUrl` system properties - Or configures using the `ORB_API_KEY`, `ORB_WEBHOOK_SECRET` and `ORB_BASE_URL` environment variables + // Or configures using the `ORB_API_KEY`, `ORB_WEBHOOK_SECRET` and `ORB_BASE_URL` environment variables .fromEnv() .apiKey("My API Key") .build(); @@ -376,7 +376,7 @@ If the SDK threw an exception, but you're _certain_ the version is compatible, t ### Retries -The SDK automatically retries 2 times by default, with a short exponential backoff. +The SDK automatically retries 2 times by default, with a short exponential backoff between requests. Only the following error types are retried: @@ -386,7 +386,7 @@ Only the following error types are retried: - 429 Rate Limit - 5xx Internal -The API may also explicitly instruct the SDK to retry or not retry a response. +The API may also explicitly instruct the SDK to retry or not retry a request. To set a custom number of retries, configure the client using the `maxRetries` method: diff --git a/build.gradle.kts b/build.gradle.kts index 4001ae68..18b4cd8b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,4 +1,4 @@ allprojects { group = "com.withorb.api" - version = "1.7.0" // x-release-please-version + version = "1.8.0" // x-release-please-version } diff --git a/orb-java-client-okhttp/src/main/kotlin/com/withorb/api/client/okhttp/OrbOkHttpClient.kt b/orb-java-client-okhttp/src/main/kotlin/com/withorb/api/client/okhttp/OrbOkHttpClient.kt index dc227b7d..931e530c 100644 --- a/orb-java-client-okhttp/src/main/kotlin/com/withorb/api/client/okhttp/OrbOkHttpClient.kt +++ b/orb-java-client-okhttp/src/main/kotlin/com/withorb/api/client/okhttp/OrbOkHttpClient.kt @@ -7,7 +7,9 @@ import com.withorb.api.client.OrbClient import com.withorb.api.client.OrbClientImpl import com.withorb.api.core.ClientOptions import com.withorb.api.core.Timeout +import com.withorb.api.core.http.AsyncStreamResponse import com.withorb.api.core.http.Headers +import com.withorb.api.core.http.HttpClient import com.withorb.api.core.http.QueryParams import com.withorb.api.core.jsonMapper import java.net.Proxy @@ -20,13 +22,22 @@ import javax.net.ssl.SSLSocketFactory import javax.net.ssl.X509TrustManager import kotlin.jvm.optionals.getOrNull +/** + * A class that allows building an instance of [OrbClient] with [OkHttpClient] as the underlying + * [HttpClient]. + */ class OrbOkHttpClient private constructor() { companion object { - /** Returns a mutable builder for constructing an instance of [OrbOkHttpClient]. */ + /** Returns a mutable builder for constructing an instance of [OrbClient]. */ @JvmStatic fun builder() = Builder() + /** + * Returns a client configured using system properties and environment variables. + * + * @see ClientOptions.Builder.fromEnv + */ @JvmStatic fun fromEnv(): OrbClient = builder().fromEnv().build() } @@ -103,23 +114,58 @@ class OrbOkHttpClient private constructor() { clientOptions.checkJacksonVersionCompatibility(checkJacksonVersionCompatibility) } + /** + * The Jackson JSON mapper to use for serializing and deserializing JSON. + * + * Defaults to [com.withorb.api.core.jsonMapper]. The default is usually sufficient and + * rarely needs to be overridden. + */ fun jsonMapper(jsonMapper: JsonMapper) = apply { clientOptions.jsonMapper(jsonMapper) } + /** + * The executor to use for running [AsyncStreamResponse.Handler] callbacks. + * + * Defaults to a dedicated cached thread pool. + */ fun streamHandlerExecutor(streamHandlerExecutor: Executor) = apply { clientOptions.streamHandlerExecutor(streamHandlerExecutor) } + /** + * The clock to use for operations that require timing, like retries. + * + * This is primarily useful for using a fake clock in tests. + * + * Defaults to [Clock.systemUTC]. + */ fun clock(clock: Clock) = apply { clientOptions.clock(clock) } + /** + * The base URL to use for every request. + * + * Defaults to the production environment: `https://api.withorb.com/v1`. + */ fun baseUrl(baseUrl: String?) = apply { clientOptions.baseUrl(baseUrl) } /** Alias for calling [Builder.baseUrl] with `baseUrl.orElse(null)`. */ fun baseUrl(baseUrl: Optional) = baseUrl(baseUrl.getOrNull()) + /** + * Whether to call `validate` on every response before returning it. + * + * Defaults to false, which means the shape of the response will not be validated upfront. + * Instead, validation will only occur for the parts of the response that are accessed. + */ fun responseValidation(responseValidation: Boolean) = apply { clientOptions.responseValidation(responseValidation) } + /** + * Sets the maximum time allowed for various parts of an HTTP call's lifecycle, excluding + * retries. + * + * Defaults to [Timeout.default]. + */ fun timeout(timeout: Timeout) = apply { clientOptions.timeout(timeout) } /** @@ -131,6 +177,21 @@ class OrbOkHttpClient private constructor() { */ fun timeout(timeout: Duration) = apply { clientOptions.timeout(timeout) } + /** + * The maximum number of times to retry failed requests, with a short exponential backoff + * between requests. + * + * Only the following error types are retried: + * - Connection errors (for example, due to a network connectivity problem) + * - 408 Request Timeout + * - 409 Conflict + * - 429 Rate Limit + * - 5xx Internal + * + * The API may also explicitly instruct the SDK to retry or not retry a request. + * + * Defaults to 2. + */ fun maxRetries(maxRetries: Int) = apply { clientOptions.maxRetries(maxRetries) } fun apiKey(apiKey: String) = apply { clientOptions.apiKey(apiKey) } @@ -223,6 +284,11 @@ class OrbOkHttpClient private constructor() { clientOptions.removeAllQueryParams(keys) } + /** + * Updates configuration using system properties and environment variables. + * + * @see ClientOptions.Builder.fromEnv + */ fun fromEnv() = apply { clientOptions.fromEnv() } /** diff --git a/orb-java-client-okhttp/src/main/kotlin/com/withorb/api/client/okhttp/OrbOkHttpClientAsync.kt b/orb-java-client-okhttp/src/main/kotlin/com/withorb/api/client/okhttp/OrbOkHttpClientAsync.kt index 58d1b076..7c2423c7 100644 --- a/orb-java-client-okhttp/src/main/kotlin/com/withorb/api/client/okhttp/OrbOkHttpClientAsync.kt +++ b/orb-java-client-okhttp/src/main/kotlin/com/withorb/api/client/okhttp/OrbOkHttpClientAsync.kt @@ -7,7 +7,9 @@ import com.withorb.api.client.OrbClientAsync import com.withorb.api.client.OrbClientAsyncImpl import com.withorb.api.core.ClientOptions import com.withorb.api.core.Timeout +import com.withorb.api.core.http.AsyncStreamResponse import com.withorb.api.core.http.Headers +import com.withorb.api.core.http.HttpClient import com.withorb.api.core.http.QueryParams import com.withorb.api.core.jsonMapper import java.net.Proxy @@ -20,13 +22,22 @@ import javax.net.ssl.SSLSocketFactory import javax.net.ssl.X509TrustManager import kotlin.jvm.optionals.getOrNull +/** + * A class that allows building an instance of [OrbClientAsync] with [OkHttpClient] as the + * underlying [HttpClient]. + */ class OrbOkHttpClientAsync private constructor() { companion object { - /** Returns a mutable builder for constructing an instance of [OrbOkHttpClientAsync]. */ + /** Returns a mutable builder for constructing an instance of [OrbClientAsync]. */ @JvmStatic fun builder() = Builder() + /** + * Returns a client configured using system properties and environment variables. + * + * @see ClientOptions.Builder.fromEnv + */ @JvmStatic fun fromEnv(): OrbClientAsync = builder().fromEnv().build() } @@ -103,23 +114,58 @@ class OrbOkHttpClientAsync private constructor() { clientOptions.checkJacksonVersionCompatibility(checkJacksonVersionCompatibility) } + /** + * The Jackson JSON mapper to use for serializing and deserializing JSON. + * + * Defaults to [com.withorb.api.core.jsonMapper]. The default is usually sufficient and + * rarely needs to be overridden. + */ fun jsonMapper(jsonMapper: JsonMapper) = apply { clientOptions.jsonMapper(jsonMapper) } + /** + * The executor to use for running [AsyncStreamResponse.Handler] callbacks. + * + * Defaults to a dedicated cached thread pool. + */ fun streamHandlerExecutor(streamHandlerExecutor: Executor) = apply { clientOptions.streamHandlerExecutor(streamHandlerExecutor) } + /** + * The clock to use for operations that require timing, like retries. + * + * This is primarily useful for using a fake clock in tests. + * + * Defaults to [Clock.systemUTC]. + */ fun clock(clock: Clock) = apply { clientOptions.clock(clock) } + /** + * The base URL to use for every request. + * + * Defaults to the production environment: `https://api.withorb.com/v1`. + */ fun baseUrl(baseUrl: String?) = apply { clientOptions.baseUrl(baseUrl) } /** Alias for calling [Builder.baseUrl] with `baseUrl.orElse(null)`. */ fun baseUrl(baseUrl: Optional) = baseUrl(baseUrl.getOrNull()) + /** + * Whether to call `validate` on every response before returning it. + * + * Defaults to false, which means the shape of the response will not be validated upfront. + * Instead, validation will only occur for the parts of the response that are accessed. + */ fun responseValidation(responseValidation: Boolean) = apply { clientOptions.responseValidation(responseValidation) } + /** + * Sets the maximum time allowed for various parts of an HTTP call's lifecycle, excluding + * retries. + * + * Defaults to [Timeout.default]. + */ fun timeout(timeout: Timeout) = apply { clientOptions.timeout(timeout) } /** @@ -131,6 +177,21 @@ class OrbOkHttpClientAsync private constructor() { */ fun timeout(timeout: Duration) = apply { clientOptions.timeout(timeout) } + /** + * The maximum number of times to retry failed requests, with a short exponential backoff + * between requests. + * + * Only the following error types are retried: + * - Connection errors (for example, due to a network connectivity problem) + * - 408 Request Timeout + * - 409 Conflict + * - 429 Rate Limit + * - 5xx Internal + * + * The API may also explicitly instruct the SDK to retry or not retry a request. + * + * Defaults to 2. + */ fun maxRetries(maxRetries: Int) = apply { clientOptions.maxRetries(maxRetries) } fun apiKey(apiKey: String) = apply { clientOptions.apiKey(apiKey) } @@ -223,6 +284,11 @@ class OrbOkHttpClientAsync private constructor() { clientOptions.removeAllQueryParams(keys) } + /** + * Updates configuration using system properties and environment variables. + * + * @see ClientOptions.Builder.fromEnv + */ fun fromEnv() = apply { clientOptions.fromEnv() } /** diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/core/ClientOptions.kt b/orb-java-core/src/main/kotlin/com/withorb/api/core/ClientOptions.kt index 5a266c80..b2464f27 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/core/ClientOptions.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/core/ClientOptions.kt @@ -3,6 +3,7 @@ package com.withorb.api.core import com.fasterxml.jackson.databind.json.JsonMapper +import com.withorb.api.core.http.AsyncStreamResponse import com.withorb.api.core.http.Headers import com.withorb.api.core.http.HttpClient import com.withorb.api.core.http.PhantomReachableClosingHttpClient @@ -17,9 +18,15 @@ import java.util.concurrent.ThreadFactory import java.util.concurrent.atomic.AtomicLong import kotlin.jvm.optionals.getOrNull +/** A class representing the SDK client configuration. */ class ClientOptions private constructor( private val originalHttpClient: HttpClient, + /** + * The HTTP client to use in the SDK. + * + * Use the one published in `orb-java-client-okhttp` or implement your own. + */ @get:JvmName("httpClient") val httpClient: HttpClient, /** * Whether to throw an exception if any of the Jackson versions detected at runtime are @@ -29,14 +36,61 @@ private constructor( * the SDK will work correctly when using an incompatible Jackson version. */ @get:JvmName("checkJacksonVersionCompatibility") val checkJacksonVersionCompatibility: Boolean, + /** + * The Jackson JSON mapper to use for serializing and deserializing JSON. + * + * Defaults to [com.withorb.api.core.jsonMapper]. The default is usually sufficient and rarely + * needs to be overridden. + */ @get:JvmName("jsonMapper") val jsonMapper: JsonMapper, + /** + * The executor to use for running [AsyncStreamResponse.Handler] callbacks. + * + * Defaults to a dedicated cached thread pool. + */ @get:JvmName("streamHandlerExecutor") val streamHandlerExecutor: Executor, + /** + * The clock to use for operations that require timing, like retries. + * + * This is primarily useful for using a fake clock in tests. + * + * Defaults to [Clock.systemUTC]. + */ @get:JvmName("clock") val clock: Clock, private val baseUrl: String?, + /** Headers to send with the request. */ @get:JvmName("headers") val headers: Headers, + /** Query params to send with the request. */ @get:JvmName("queryParams") val queryParams: QueryParams, + /** + * Whether to call `validate` on every response before returning it. + * + * Defaults to false, which means the shape of the response will not be validated upfront. + * Instead, validation will only occur for the parts of the response that are accessed. + */ @get:JvmName("responseValidation") val responseValidation: Boolean, + /** + * Sets the maximum time allowed for various parts of an HTTP call's lifecycle, excluding + * retries. + * + * Defaults to [Timeout.default]. + */ @get:JvmName("timeout") val timeout: Timeout, + /** + * The maximum number of times to retry failed requests, with a short exponential backoff + * between requests. + * + * Only the following error types are retried: + * - Connection errors (for example, due to a network connectivity problem) + * - 408 Request Timeout + * - 409 Conflict + * - 429 Rate Limit + * - 5xx Internal + * + * The API may also explicitly instruct the SDK to retry or not retry a request. + * + * Defaults to 2. + */ @get:JvmName("maxRetries") val maxRetries: Int, @get:JvmName("apiKey") val apiKey: String, private val webhookSecret: String?, @@ -48,6 +102,11 @@ private constructor( } } + /** + * The base URL to use for every request. + * + * Defaults to the production environment: `https://api.withorb.com/v1`. + */ fun baseUrl(): String = baseUrl ?: PRODUCTION_URL fun webhookSecret(): Optional = Optional.ofNullable(webhookSecret) @@ -69,6 +128,11 @@ private constructor( */ @JvmStatic fun builder() = Builder() + /** + * Returns options configured using system properties and environment variables. + * + * @see Builder.fromEnv + */ @JvmStatic fun fromEnv(): ClientOptions = builder().fromEnv().build() } @@ -106,6 +170,11 @@ private constructor( webhookSecret = clientOptions.webhookSecret } + /** + * The HTTP client to use in the SDK. + * + * Use the one published in `orb-java-client-okhttp` or implement your own. + */ fun httpClient(httpClient: HttpClient) = apply { this.httpClient = PhantomReachableClosingHttpClient(httpClient) } @@ -121,23 +190,58 @@ private constructor( this.checkJacksonVersionCompatibility = checkJacksonVersionCompatibility } + /** + * The Jackson JSON mapper to use for serializing and deserializing JSON. + * + * Defaults to [com.withorb.api.core.jsonMapper]. The default is usually sufficient and + * rarely needs to be overridden. + */ fun jsonMapper(jsonMapper: JsonMapper) = apply { this.jsonMapper = jsonMapper } + /** + * The executor to use for running [AsyncStreamResponse.Handler] callbacks. + * + * Defaults to a dedicated cached thread pool. + */ fun streamHandlerExecutor(streamHandlerExecutor: Executor) = apply { this.streamHandlerExecutor = streamHandlerExecutor } + /** + * The clock to use for operations that require timing, like retries. + * + * This is primarily useful for using a fake clock in tests. + * + * Defaults to [Clock.systemUTC]. + */ fun clock(clock: Clock) = apply { this.clock = clock } + /** + * The base URL to use for every request. + * + * Defaults to the production environment: `https://api.withorb.com/v1`. + */ fun baseUrl(baseUrl: String?) = apply { this.baseUrl = baseUrl } /** Alias for calling [Builder.baseUrl] with `baseUrl.orElse(null)`. */ fun baseUrl(baseUrl: Optional) = baseUrl(baseUrl.getOrNull()) + /** + * Whether to call `validate` on every response before returning it. + * + * Defaults to false, which means the shape of the response will not be validated upfront. + * Instead, validation will only occur for the parts of the response that are accessed. + */ fun responseValidation(responseValidation: Boolean) = apply { this.responseValidation = responseValidation } + /** + * Sets the maximum time allowed for various parts of an HTTP call's lifecycle, excluding + * retries. + * + * Defaults to [Timeout.default]. + */ fun timeout(timeout: Timeout) = apply { this.timeout = timeout } /** @@ -149,6 +253,21 @@ private constructor( */ fun timeout(timeout: Duration) = timeout(Timeout.builder().request(timeout).build()) + /** + * The maximum number of times to retry failed requests, with a short exponential backoff + * between requests. + * + * Only the following error types are retried: + * - Connection errors (for example, due to a network connectivity problem) + * - 408 Request Timeout + * - 409 Conflict + * - 429 Rate Limit + * - 5xx Internal + * + * The API may also explicitly instruct the SDK to retry or not retry a request. + * + * Defaults to 2. + */ fun maxRetries(maxRetries: Int) = apply { this.maxRetries = maxRetries } fun apiKey(apiKey: String) = apply { this.apiKey = apiKey } @@ -241,6 +360,19 @@ private constructor( fun timeout(): Timeout = timeout + /** + * Updates configuration using system properties and environment variables. + * + * See this table for the available options: + * + * |Setter |System property |Environment variable|Required|Default value | + * |---------------|-------------------|--------------------|--------|------------------------------| + * |`apiKey` |`orb.apiKey` |`ORB_API_KEY` |true |- | + * |`webhookSecret`|`orb.webhookSecret`|`ORB_WEBHOOK_SECRET`|false |- | + * |`baseUrl` |`orb.baseUrl` |`ORB_BASE_URL` |true |`"https://api.withorb.com/v1"`| + * + * System properties take precedence over environment variables. + */ fun fromEnv() = apply { (System.getProperty("orb.baseUrl") ?: System.getenv("ORB_BASE_URL"))?.let { baseUrl(it) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/core/http/Headers.kt b/orb-java-core/src/main/kotlin/com/withorb/api/core/http/Headers.kt index 47369c39..eb84fc92 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/core/http/Headers.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/core/http/Headers.kt @@ -1,5 +1,15 @@ +// File generated from our OpenAPI spec by Stainless. + package com.withorb.api.core.http +import com.withorb.api.core.JsonArray +import com.withorb.api.core.JsonBoolean +import com.withorb.api.core.JsonMissing +import com.withorb.api.core.JsonNull +import com.withorb.api.core.JsonNumber +import com.withorb.api.core.JsonObject +import com.withorb.api.core.JsonString +import com.withorb.api.core.JsonValue import com.withorb.api.core.toImmutable import java.util.TreeMap @@ -28,6 +38,19 @@ private constructor( TreeMap(String.CASE_INSENSITIVE_ORDER) private var size: Int = 0 + fun put(name: String, value: JsonValue): Builder = apply { + when (value) { + is JsonMissing, + is JsonNull -> {} + is JsonBoolean -> put(name, value.value.toString()) + is JsonNumber -> put(name, value.value.toString()) + is JsonString -> put(name, value.value) + is JsonArray -> value.values.forEach { put(name, it) } + is JsonObject -> + value.values.forEach { (nestedName, value) -> put("$name.$nestedName", value) } + } + } + fun put(name: String, value: String) = apply { map.getOrPut(name) { mutableListOf() }.add(value) size++ @@ -41,15 +64,6 @@ private constructor( headers.names().forEach { put(it, headers.values(it)) } } - fun remove(name: String) = apply { size -= map.remove(name).orEmpty().size } - - fun removeAll(names: Set) = apply { names.forEach(::remove) } - - fun clear() = apply { - map.clear() - size = 0 - } - fun replace(name: String, value: String) = apply { remove(name) put(name, value) @@ -68,6 +82,15 @@ private constructor( headers.names().forEach { replace(it, headers.values(it)) } } + fun remove(name: String) = apply { size -= map.remove(name).orEmpty().size } + + fun removeAll(names: Set) = apply { names.forEach(::remove) } + + fun clear() = apply { + map.clear() + size = 0 + } + fun build() = Headers( map.mapValuesTo(TreeMap(String.CASE_INSENSITIVE_ORDER)) { (_, values) -> diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/core/http/QueryParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/core/http/QueryParams.kt index bb3a6d4a..2b0475ba 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/core/http/QueryParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/core/http/QueryParams.kt @@ -2,6 +2,14 @@ package com.withorb.api.core.http +import com.withorb.api.core.JsonArray +import com.withorb.api.core.JsonBoolean +import com.withorb.api.core.JsonMissing +import com.withorb.api.core.JsonNull +import com.withorb.api.core.JsonNumber +import com.withorb.api.core.JsonObject +import com.withorb.api.core.JsonString +import com.withorb.api.core.JsonValue import com.withorb.api.core.toImmutable class QueryParams @@ -28,6 +36,19 @@ private constructor( private val map: MutableMap> = mutableMapOf() private var size: Int = 0 + fun put(key: String, value: JsonValue): Builder = apply { + when (value) { + is JsonMissing, + is JsonNull -> {} + is JsonBoolean -> put(key, value.value.toString()) + is JsonNumber -> put(key, value.value.toString()) + is JsonString -> put(key, value.value) + is JsonArray -> value.values.forEach { put("$key[]", it) } + is JsonObject -> + value.values.forEach { (nestedKey, value) -> put("$key[$nestedKey]", value) } + } + } + fun put(key: String, value: String) = apply { map.getOrPut(key) { mutableListOf() }.add(value) size++ diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForCustomerParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForCustomerParams.kt index 1c768b7c..01c06640 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForCustomerParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForCustomerParams.kt @@ -88,8 +88,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForExternalCustomerParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForExternalCustomerParams.kt index 2c9b8ed9..6852ecd0 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForExternalCustomerParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForExternalCustomerParams.kt @@ -88,8 +88,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForSubscriptionParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForSubscriptionParams.kt index 9b92c832..0f3748d6 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForSubscriptionParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertCreateForSubscriptionParams.kt @@ -92,8 +92,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertDisableParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertDisableParams.kt index 0e1f15a1..5ad3565f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertDisableParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertDisableParams.kt @@ -30,10 +30,13 @@ private constructor( /** Used to update the status of a plan alert scoped to this subscription_id */ fun subscriptionId(): Optional = Optional.ofNullable(subscriptionId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertEnableParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertEnableParams.kt index 726e00d0..d7dc775f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertEnableParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertEnableParams.kt @@ -30,10 +30,13 @@ private constructor( /** Used to update the status of a plan alert scoped to this subscription_id */ fun subscriptionId(): Optional = Optional.ofNullable(subscriptionId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListPage.kt index 626b3e7e..04cab053 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [AlertService.list] */ +/** @see AlertService.list */ class AlertListPage private constructor( private val service: AlertService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [AlertListPageResponse], but gracefully handles missing data. * - * @see [AlertListPageResponse.data] + * @see AlertListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [AlertListPageResponse], but gracefully handles missing data. * - * @see [AlertListPageResponse.paginationMetadata] + * @see AlertListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListPageAsync.kt index ff9b1277..aee23ad7 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [AlertServiceAsync.list] */ +/** @see AlertServiceAsync.list */ class AlertListPageAsync private constructor( private val service: AlertServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [AlertListPageResponse], but gracefully handles missing data. * - * @see [AlertListPageResponse.data] + * @see AlertListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [AlertListPageResponse], but gracefully handles missing data. * - * @see [AlertListPageResponse.paginationMetadata] + * @see AlertListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListParams.kt index c2b6c65d..9e9689ef 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertListParams.kt @@ -63,8 +63,10 @@ private constructor( /** Fetch alerts scoped to this subscription_id */ fun subscriptionId(): Optional = Optional.ofNullable(subscriptionId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertRetrieveParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertRetrieveParams.kt index 1f780152..23daf4dd 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertRetrieveParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertRetrieveParams.kt @@ -19,8 +19,10 @@ private constructor( fun alertId(): Optional = Optional.ofNullable(alertId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertUpdateParams.kt index 333da406..6a2e123e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/AlertUpdateParams.kt @@ -50,8 +50,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaCreatePlanVersionParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaCreatePlanVersionParams.kt index dfccc6e7..83ba798e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaCreatePlanVersionParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaCreatePlanVersionParams.kt @@ -172,8 +172,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdCreatePlanVersionParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdCreatePlanVersionParams.kt index 63d81eae..3d11370f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdCreatePlanVersionParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdCreatePlanVersionParams.kt @@ -172,8 +172,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdFetchPlanVersionParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdFetchPlanVersionParams.kt index 0dce41e7..bf984e1a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdFetchPlanVersionParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdFetchPlanVersionParams.kt @@ -29,8 +29,10 @@ private constructor( fun version(): Optional = Optional.ofNullable(version) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdSetDefaultPlanVersionParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdSetDefaultPlanVersionParams.kt index 37016fe9..a859acaf 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdSetDefaultPlanVersionParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdSetDefaultPlanVersionParams.kt @@ -53,8 +53,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaFetchPlanVersionParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaFetchPlanVersionParams.kt index b9e36663..b40d2e80 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaFetchPlanVersionParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaFetchPlanVersionParams.kt @@ -29,8 +29,10 @@ private constructor( fun version(): Optional = Optional.ofNullable(version) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaSetDefaultPlanVersionParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaSetDefaultPlanVersionParams.kt index 250713fa..1592ffe2 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaSetDefaultPlanVersionParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/BetaSetDefaultPlanVersionParams.kt @@ -53,8 +53,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponArchiveParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponArchiveParams.kt index f8cff3dc..d317ce98 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponArchiveParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponArchiveParams.kt @@ -26,10 +26,13 @@ private constructor( fun couponId(): Optional = Optional.ofNullable(couponId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponCreateParams.kt index 2c7b8bf3..f431191f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponCreateParams.kt @@ -104,8 +104,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponFetchParams.kt index 9222e419..8066c76f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponFetchParams.kt @@ -22,8 +22,10 @@ private constructor( fun couponId(): Optional = Optional.ofNullable(couponId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListPage.kt index 54fa128c..b4f0db15 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [CouponService.list] */ +/** @see CouponService.list */ class CouponListPage private constructor( private val service: CouponService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [CouponListPageResponse], but gracefully handles missing data. * - * @see [CouponListPageResponse.data] + * @see CouponListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [CouponListPageResponse], but gracefully handles missing data. * - * @see [CouponListPageResponse.paginationMetadata] + * @see CouponListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListPageAsync.kt index 884d7b62..5060fab6 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [CouponServiceAsync.list] */ +/** @see CouponServiceAsync.list */ class CouponListPageAsync private constructor( private val service: CouponServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [CouponListPageResponse], but gracefully handles missing data. * - * @see [CouponListPageResponse.data] + * @see CouponListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [CouponListPageResponse], but gracefully handles missing data. * - * @see [CouponListPageResponse.paginationMetadata] + * @see CouponListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListParams.kt index 3372e24f..709c61df 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponListParams.kt @@ -41,8 +41,10 @@ private constructor( /** Show archived coupons as well (by default, this endpoint only returns active coupons). */ fun showArchived(): Optional = Optional.ofNullable(showArchived) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListPage.kt index d81a7bb7..4b875933 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListPage.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 CouponSubscriptionListPage private constructor( private val service: SubscriptionService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [Subscriptions], but gracefully handles missing data. * - * @see [Subscriptions.data] + * @see Subscriptions.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [Subscriptions], but gracefully handles missing data. * - * @see [Subscriptions.paginationMetadata] + * @see Subscriptions.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListPageAsync.kt index afc24358..25bbffb5 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListPageAsync.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 CouponSubscriptionListPageAsync private constructor( private val service: SubscriptionServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [Subscriptions], but gracefully handles missing data. * - * @see [Subscriptions.data] + * @see Subscriptions.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [Subscriptions], but gracefully handles missing data. * - * @see [Subscriptions.paginationMetadata] + * @see Subscriptions.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListParams.kt index 6ed44a4f..7325ed40 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CouponSubscriptionListParams.kt @@ -35,8 +35,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteCreateParams.kt index aff78d0d..ab9d8243 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteCreateParams.kt @@ -135,8 +135,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteFetchParams.kt index 827792b4..4ded1cfc 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteFetchParams.kt @@ -22,8 +22,10 @@ private constructor( fun creditNoteId(): Optional = Optional.ofNullable(creditNoteId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListPage.kt index a2337e3b..da30dc53 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [CreditNoteService.list] */ +/** @see CreditNoteService.list */ class CreditNoteListPage private constructor( private val service: CreditNoteService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [CreditNoteListPageResponse], but gracefully handles missing data. * - * @see [CreditNoteListPageResponse.data] + * @see CreditNoteListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [CreditNoteListPageResponse], but gracefully handles missing data. * - * @see [CreditNoteListPageResponse.paginationMetadata] + * @see CreditNoteListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListPageAsync.kt index 3710fe7e..f65c79cf 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [CreditNoteServiceAsync.list] */ +/** @see CreditNoteServiceAsync.list */ class CreditNoteListPageAsync private constructor( private val service: CreditNoteServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [CreditNoteListPageResponse], but gracefully handles missing data. * - * @see [CreditNoteListPageResponse.data] + * @see CreditNoteListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [CreditNoteListPageResponse], but gracefully handles missing data. * - * @see [CreditNoteListPageResponse.paginationMetadata] + * @see CreditNoteListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListParams.kt index ae64cd52..5d66a657 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CreditNoteListParams.kt @@ -45,8 +45,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionCreateParams.kt index 31b73445..e4ed0a93 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionCreateParams.kt @@ -78,8 +78,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListPage.kt index 73d8e3bc..3bb12c25 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [BalanceTransactionService.list] */ +/** @see BalanceTransactionService.list */ class CustomerBalanceTransactionListPage private constructor( private val service: BalanceTransactionService, @@ -22,7 +22,7 @@ private constructor( * Delegates to [CustomerBalanceTransactionListPageResponse], but gracefully handles missing * data. * - * @see [CustomerBalanceTransactionListPageResponse.data] + * @see CustomerBalanceTransactionListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -31,7 +31,7 @@ private constructor( * Delegates to [CustomerBalanceTransactionListPageResponse], but gracefully handles missing * data. * - * @see [CustomerBalanceTransactionListPageResponse.paginationMetadata] + * @see CustomerBalanceTransactionListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListPageAsync.kt index 56c745f8..e032ad33 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [BalanceTransactionServiceAsync.list] */ +/** @see BalanceTransactionServiceAsync.list */ class CustomerBalanceTransactionListPageAsync private constructor( private val service: BalanceTransactionServiceAsync, @@ -25,7 +25,7 @@ private constructor( * Delegates to [CustomerBalanceTransactionListPageResponse], but gracefully handles missing * data. * - * @see [CustomerBalanceTransactionListPageResponse.data] + * @see CustomerBalanceTransactionListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -34,7 +34,7 @@ private constructor( * Delegates to [CustomerBalanceTransactionListPageResponse], but gracefully handles missing * data. * - * @see [CustomerBalanceTransactionListPageResponse.paginationMetadata] + * @see CustomerBalanceTransactionListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListParams.kt index 14a22860..ff73a975 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerBalanceTransactionListParams.kt @@ -63,8 +63,10 @@ private constructor( fun operationTimeLte(): Optional = Optional.ofNullable(operationTimeLte) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCostListByExternalIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCostListByExternalIdParams.kt index 39b6fd1f..f359624d 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCostListByExternalIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCostListByExternalIdParams.kt @@ -136,7 +136,7 @@ private constructor( fun externalCustomerId(): Optional = Optional.ofNullable(externalCustomerId) - /** The currency to use. */ + /** The currency or custom pricing unit to use. */ fun currency(): Optional = Optional.ofNullable(currency) /** Costs returned are exclusive of `timeframe_end`. */ @@ -152,8 +152,10 @@ private constructor( */ fun viewMode(): Optional = Optional.ofNullable(viewMode) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) @@ -203,7 +205,7 @@ private constructor( fun externalCustomerId(externalCustomerId: Optional) = externalCustomerId(externalCustomerId.getOrNull()) - /** The currency to use. */ + /** The currency or custom pricing unit to use. */ fun currency(currency: String?) = apply { this.currency = currency } /** Alias for calling [Builder.currency] with `currency.orElse(null)`. */ diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCostListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCostListParams.kt index 9f96199f..cb2b74ef 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCostListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCostListParams.kt @@ -136,7 +136,7 @@ private constructor( fun customerId(): Optional = Optional.ofNullable(customerId) - /** The currency to use. */ + /** The currency or custom pricing unit to use. */ fun currency(): Optional = Optional.ofNullable(currency) /** Costs returned are exclusive of `timeframe_end`. */ @@ -152,8 +152,10 @@ private constructor( */ fun viewMode(): Optional = Optional.ofNullable(viewMode) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) @@ -193,7 +195,7 @@ private constructor( /** Alias for calling [Builder.customerId] with `customerId.orElse(null)`. */ fun customerId(customerId: Optional) = customerId(customerId.getOrNull()) - /** The currency to use. */ + /** The currency or custom pricing unit to use. */ fun currency(currency: String?) = apply { this.currency = currency } /** Alias for calling [Builder.currency] with `currency.orElse(null)`. */ diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreateParams.kt index 1d099378..5f754620 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreateParams.kt @@ -438,8 +438,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerCreateEntryByExternalIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerCreateEntryByExternalIdParams.kt index 46ec1b4b..530801a5 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerCreateEntryByExternalIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerCreateEntryByExternalIdParams.kt @@ -149,8 +149,10 @@ private constructor( fun body(): Body = body + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) @@ -1227,11 +1229,10 @@ private constructor( * date for the invoice. If you intend the invoice to be due on issue, set this * to 0. * - * @throws OrbInvalidDataException if the JSON field has an unexpected type or is - * unexpectedly missing or null (e.g. if the server responded with an unexpected - * value). + * @throws OrbInvalidDataException if the JSON field has an unexpected type (e.g. if + * the server responded with an unexpected value). */ - fun netTerms(): Long = netTerms.getRequired("net_terms") + fun netTerms(): Optional = netTerms.getOptional("net_terms") /** * An ISO 8601 format date that denotes when this invoice should be dated in the @@ -1378,7 +1379,17 @@ private constructor( * issue date for the invoice. If you intend the invoice to be due on issue, set * this to 0. */ - fun netTerms(netTerms: Long) = netTerms(JsonField.of(netTerms)) + fun netTerms(netTerms: Long?) = netTerms(JsonField.ofNullable(netTerms)) + + /** + * Alias for [Builder.netTerms]. + * + * This unboxed primitive overload exists for backwards compatibility. + */ + fun netTerms(netTerms: Long) = netTerms(netTerms as Long?) + + /** Alias for calling [Builder.netTerms] with `netTerms.orElse(null)`. */ + fun netTerms(netTerms: Optional) = netTerms(netTerms.getOrNull()) /** * Sets [Builder.netTerms] to an arbitrary JSON value. diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerCreateEntryParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerCreateEntryParams.kt index 45807887..8313ff1b 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerCreateEntryParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerCreateEntryParams.kt @@ -149,8 +149,10 @@ private constructor( fun body(): Body = body + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) @@ -1219,11 +1221,10 @@ private constructor( * date for the invoice. If you intend the invoice to be due on issue, set this * to 0. * - * @throws OrbInvalidDataException if the JSON field has an unexpected type or is - * unexpectedly missing or null (e.g. if the server responded with an unexpected - * value). + * @throws OrbInvalidDataException if the JSON field has an unexpected type (e.g. if + * the server responded with an unexpected value). */ - fun netTerms(): Long = netTerms.getRequired("net_terms") + fun netTerms(): Optional = netTerms.getOptional("net_terms") /** * An ISO 8601 format date that denotes when this invoice should be dated in the @@ -1370,7 +1371,17 @@ private constructor( * issue date for the invoice. If you intend the invoice to be due on issue, set * this to 0. */ - fun netTerms(netTerms: Long) = netTerms(JsonField.of(netTerms)) + fun netTerms(netTerms: Long?) = netTerms(JsonField.ofNullable(netTerms)) + + /** + * Alias for [Builder.netTerms]. + * + * This unboxed primitive overload exists for backwards compatibility. + */ + fun netTerms(netTerms: Long) = netTerms(netTerms as Long?) + + /** Alias for calling [Builder.netTerms] with `netTerms.orElse(null)`. */ + fun netTerms(netTerms: Optional) = netTerms(netTerms.getOrNull()) /** * Sets [Builder.netTerms] to an arbitrary JSON value. diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdPage.kt index bc5f132e..d997a531 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [LedgerService.listByExternalId] */ +/** @see LedgerService.listByExternalId */ class CustomerCreditLedgerListByExternalIdPage private constructor( private val service: LedgerService, @@ -22,7 +22,7 @@ private constructor( * Delegates to [CustomerCreditLedgerListByExternalIdPageResponse], but gracefully handles * missing data. * - * @see [CustomerCreditLedgerListByExternalIdPageResponse.data] + * @see CustomerCreditLedgerListByExternalIdPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -31,7 +31,7 @@ private constructor( * Delegates to [CustomerCreditLedgerListByExternalIdPageResponse], but gracefully handles * missing data. * - * @see [CustomerCreditLedgerListByExternalIdPageResponse.paginationMetadata] + * @see CustomerCreditLedgerListByExternalIdPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdPageAsync.kt index 880a2a3a..b32ca622 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [LedgerServiceAsync.listByExternalId] */ +/** @see LedgerServiceAsync.listByExternalId */ class CustomerCreditLedgerListByExternalIdPageAsync private constructor( private val service: LedgerServiceAsync, @@ -25,7 +25,7 @@ private constructor( * Delegates to [CustomerCreditLedgerListByExternalIdPageResponse], but gracefully handles * missing data. * - * @see [CustomerCreditLedgerListByExternalIdPageResponse.data] + * @see CustomerCreditLedgerListByExternalIdPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -34,7 +34,7 @@ private constructor( * Delegates to [CustomerCreditLedgerListByExternalIdPageResponse], but gracefully handles * missing data. * - * @see [CustomerCreditLedgerListByExternalIdPageResponse.paginationMetadata] + * @see CustomerCreditLedgerListByExternalIdPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdParams.kt index 3b1fce37..72f2438b 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListByExternalIdParams.kt @@ -137,8 +137,10 @@ private constructor( fun minimumAmount(): Optional = Optional.ofNullable(minimumAmount) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListPage.kt index 0d653fe2..a45c5459 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [LedgerService.list] */ +/** @see LedgerService.list */ class CustomerCreditLedgerListPage private constructor( private val service: LedgerService, @@ -21,7 +21,7 @@ private constructor( /** * Delegates to [CustomerCreditLedgerListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditLedgerListPageResponse.data] + * @see CustomerCreditLedgerListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -29,7 +29,7 @@ private constructor( /** * Delegates to [CustomerCreditLedgerListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditLedgerListPageResponse.paginationMetadata] + * @see CustomerCreditLedgerListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListPageAsync.kt index b2659070..11dee7e0 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [LedgerServiceAsync.list] */ +/** @see LedgerServiceAsync.list */ class CustomerCreditLedgerListPageAsync private constructor( private val service: LedgerServiceAsync, @@ -24,7 +24,7 @@ private constructor( /** * Delegates to [CustomerCreditLedgerListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditLedgerListPageResponse.data] + * @see CustomerCreditLedgerListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -32,7 +32,7 @@ private constructor( /** * Delegates to [CustomerCreditLedgerListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditLedgerListPageResponse.paginationMetadata] + * @see CustomerCreditLedgerListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListParams.kt index 86f767f3..7ecb7e23 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditLedgerListParams.kt @@ -137,8 +137,10 @@ private constructor( fun minimumAmount(): Optional = Optional.ofNullable(minimumAmount) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdPage.kt index 7d2f7364..03e2ad77 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [CreditService.listByExternalId] */ +/** @see CreditService.listByExternalId */ class CustomerCreditListByExternalIdPage private constructor( private val service: CreditService, @@ -22,7 +22,7 @@ private constructor( * Delegates to [CustomerCreditListByExternalIdPageResponse], but gracefully handles missing * data. * - * @see [CustomerCreditListByExternalIdPageResponse.data] + * @see CustomerCreditListByExternalIdPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -31,7 +31,7 @@ private constructor( * Delegates to [CustomerCreditListByExternalIdPageResponse], but gracefully handles missing * data. * - * @see [CustomerCreditListByExternalIdPageResponse.paginationMetadata] + * @see CustomerCreditListByExternalIdPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdPageAsync.kt index 0fe94b19..a814d8ab 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [CreditServiceAsync.listByExternalId] */ +/** @see CreditServiceAsync.listByExternalId */ class CustomerCreditListByExternalIdPageAsync private constructor( private val service: CreditServiceAsync, @@ -25,7 +25,7 @@ private constructor( * Delegates to [CustomerCreditListByExternalIdPageResponse], but gracefully handles missing * data. * - * @see [CustomerCreditListByExternalIdPageResponse.data] + * @see CustomerCreditListByExternalIdPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -34,7 +34,7 @@ private constructor( * Delegates to [CustomerCreditListByExternalIdPageResponse], but gracefully handles missing * data. * - * @see [CustomerCreditListByExternalIdPageResponse.paginationMetadata] + * @see CustomerCreditListByExternalIdPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdParams.kt index 144e5b75..c025c956 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListByExternalIdParams.kt @@ -48,8 +48,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListPage.kt index d24c2af5..8e552028 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [CreditService.list] */ +/** @see CreditService.list */ class CustomerCreditListPage private constructor( private val service: CreditService, @@ -21,7 +21,7 @@ private constructor( /** * Delegates to [CustomerCreditListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditListPageResponse.data] + * @see CustomerCreditListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -29,7 +29,7 @@ private constructor( /** * Delegates to [CustomerCreditListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditListPageResponse.paginationMetadata] + * @see CustomerCreditListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListPageAsync.kt index ff22d0f2..2394a3ef 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [CreditServiceAsync.list] */ +/** @see CreditServiceAsync.list */ class CustomerCreditListPageAsync private constructor( private val service: CreditServiceAsync, @@ -24,7 +24,7 @@ private constructor( /** * Delegates to [CustomerCreditListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditListPageResponse.data] + * @see CustomerCreditListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -32,7 +32,7 @@ private constructor( /** * Delegates to [CustomerCreditListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditListPageResponse.paginationMetadata] + * @see CustomerCreditListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListParams.kt index 54fbcf43..0635c992 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditListParams.kt @@ -48,8 +48,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpCreateByExternalIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpCreateByExternalIdParams.kt index 4490bd67..bf4d41e8 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpCreateByExternalIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpCreateByExternalIdParams.kt @@ -168,8 +168,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpCreateParams.kt index 51661fcc..29ca050f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpCreateParams.kt @@ -168,8 +168,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpDeleteByExternalIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpDeleteByExternalIdParams.kt index 308b299e..049eb857 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpDeleteByExternalIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpDeleteByExternalIdParams.kt @@ -29,10 +29,13 @@ private constructor( fun topUpId(): Optional = Optional.ofNullable(topUpId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpDeleteParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpDeleteParams.kt index e6206cab..0fd71b2a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpDeleteParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpDeleteParams.kt @@ -29,10 +29,13 @@ private constructor( fun topUpId(): Optional = Optional.ofNullable(topUpId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdPage.kt index e04da8ac..e22c6e32 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [TopUpService.listByExternalId] */ +/** @see TopUpService.listByExternalId */ class CustomerCreditTopUpListByExternalIdPage private constructor( private val service: TopUpService, @@ -22,7 +22,7 @@ private constructor( * Delegates to [CustomerCreditTopUpListByExternalIdPageResponse], but gracefully handles * missing data. * - * @see [CustomerCreditTopUpListByExternalIdPageResponse.data] + * @see CustomerCreditTopUpListByExternalIdPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -31,7 +31,7 @@ private constructor( * Delegates to [CustomerCreditTopUpListByExternalIdPageResponse], but gracefully handles * missing data. * - * @see [CustomerCreditTopUpListByExternalIdPageResponse.paginationMetadata] + * @see CustomerCreditTopUpListByExternalIdPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdPageAsync.kt index 1dab7a90..bcc25def 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [TopUpServiceAsync.listByExternalId] */ +/** @see TopUpServiceAsync.listByExternalId */ class CustomerCreditTopUpListByExternalIdPageAsync private constructor( private val service: TopUpServiceAsync, @@ -25,7 +25,7 @@ private constructor( * Delegates to [CustomerCreditTopUpListByExternalIdPageResponse], but gracefully handles * missing data. * - * @see [CustomerCreditTopUpListByExternalIdPageResponse.data] + * @see CustomerCreditTopUpListByExternalIdPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -34,7 +34,7 @@ private constructor( * Delegates to [CustomerCreditTopUpListByExternalIdPageResponse], but gracefully handles * missing data. * - * @see [CustomerCreditTopUpListByExternalIdPageResponse.paginationMetadata] + * @see CustomerCreditTopUpListByExternalIdPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdParams.kt index 47a51cd1..63e03539 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListByExternalIdParams.kt @@ -30,8 +30,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListPage.kt index c2b5d7d3..9255d0bb 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [TopUpService.list] */ +/** @see TopUpService.list */ class CustomerCreditTopUpListPage private constructor( private val service: TopUpService, @@ -21,7 +21,7 @@ private constructor( /** * Delegates to [CustomerCreditTopUpListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditTopUpListPageResponse.data] + * @see CustomerCreditTopUpListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -29,7 +29,7 @@ private constructor( /** * Delegates to [CustomerCreditTopUpListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditTopUpListPageResponse.paginationMetadata] + * @see CustomerCreditTopUpListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListPageAsync.kt index fe8e76c4..cc11835e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [TopUpServiceAsync.list] */ +/** @see TopUpServiceAsync.list */ class CustomerCreditTopUpListPageAsync private constructor( private val service: TopUpServiceAsync, @@ -24,7 +24,7 @@ private constructor( /** * Delegates to [CustomerCreditTopUpListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditTopUpListPageResponse.data] + * @see CustomerCreditTopUpListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -32,7 +32,7 @@ private constructor( /** * Delegates to [CustomerCreditTopUpListPageResponse], but gracefully handles missing data. * - * @see [CustomerCreditTopUpListPageResponse.paginationMetadata] + * @see CustomerCreditTopUpListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListParams.kt index 4ab5d0aa..1e497cf8 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerCreditTopUpListParams.kt @@ -30,8 +30,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerDeleteParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerDeleteParams.kt index fb006a57..47617e22 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerDeleteParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerDeleteParams.kt @@ -33,10 +33,13 @@ private constructor( fun customerId(): Optional = Optional.ofNullable(customerId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerFetchByExternalIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerFetchByExternalIdParams.kt index c1a0a7cc..f29330af 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerFetchByExternalIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerFetchByExternalIdParams.kt @@ -25,8 +25,10 @@ private constructor( fun externalCustomerId(): Optional = Optional.ofNullable(externalCustomerId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerFetchParams.kt index 5e196bf8..79139103 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerFetchParams.kt @@ -24,8 +24,10 @@ private constructor( fun customerId(): Optional = Optional.ofNullable(customerId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListPage.kt index ec69b465..07c35cf0 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [CustomerService.list] */ +/** @see CustomerService.list */ class CustomerListPage private constructor( private val service: CustomerService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [CustomerListPageResponse], but gracefully handles missing data. * - * @see [CustomerListPageResponse.data] + * @see CustomerListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [CustomerListPageResponse], but gracefully handles missing data. * - * @see [CustomerListPageResponse.paginationMetadata] + * @see CustomerListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListPageAsync.kt index ab314321..4508ba61 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [CustomerServiceAsync.list] */ +/** @see CustomerServiceAsync.list */ class CustomerListPageAsync private constructor( private val service: CustomerServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [CustomerListPageResponse], but gracefully handles missing data. * - * @see [CustomerListPageResponse.data] + * @see CustomerListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [CustomerListPageResponse], but gracefully handles missing data. * - * @see [CustomerListPageResponse.paginationMetadata] + * @see CustomerListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListParams.kt index 192c5a00..847e1cea 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerListParams.kt @@ -47,8 +47,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams.kt index 5a614592..7b761fbe 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams.kt @@ -29,10 +29,13 @@ private constructor( fun externalCustomerId(): Optional = Optional.ofNullable(externalCustomerId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerSyncPaymentMethodsFromGatewayParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerSyncPaymentMethodsFromGatewayParams.kt index 12acc9c6..3a012ac9 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerSyncPaymentMethodsFromGatewayParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerSyncPaymentMethodsFromGatewayParams.kt @@ -29,10 +29,13 @@ private constructor( fun customerId(): Optional = Optional.ofNullable(customerId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerUpdateByExternalIdParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerUpdateByExternalIdParams.kt index 7111b06d..2552796c 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerUpdateByExternalIdParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerUpdateByExternalIdParams.kt @@ -103,8 +103,10 @@ private constructor( fun emailDelivery(): Optional = body.emailDelivery() /** - * The external customer ID. This can only be set if empty and the customer has no past or - * current subscriptions. + * The external customer ID. This can only be set if the customer has no existing external + * customer ID. Since this action may change usage quantities for all existing subscriptions, it + * is disallowed if the customer has issued invoices with usage line items and subject to the + * same restrictions as backdated subscription creation. * * @throws OrbInvalidDataException if the JSON field has an unexpected type (e.g. if the server * responded with an unexpected value). @@ -417,8 +419,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) @@ -630,8 +634,10 @@ private constructor( } /** - * The external customer ID. This can only be set if empty and the customer has no past or - * current subscriptions. + * The external customer ID. This can only be set if the customer has no existing external + * customer ID. Since this action may change usage quantities for all existing + * subscriptions, it is disallowed if the customer has issued invoices with usage line items + * and subject to the same restrictions as backdated subscription creation. */ fun externalCustomerId(externalCustomerId: String?) = apply { body.externalCustomerId(externalCustomerId) @@ -1282,8 +1288,10 @@ private constructor( fun emailDelivery(): Optional = emailDelivery.getOptional("email_delivery") /** - * The external customer ID. This can only be set if empty and the customer has no past or - * current subscriptions. + * The external customer ID. This can only be set if the customer has no existing external + * customer ID. Since this action may change usage quantities for all existing + * subscriptions, it is disallowed if the customer has issued invoices with usage line items + * and subject to the same restrictions as backdated subscription creation. * * @throws OrbInvalidDataException if the JSON field has an unexpected type (e.g. if the * server responded with an unexpected value). @@ -1857,8 +1865,10 @@ private constructor( } /** - * The external customer ID. This can only be set if empty and the customer has no past - * or current subscriptions. + * The external customer ID. This can only be set if the customer has no existing + * external customer ID. Since this action may change usage quantities for all existing + * subscriptions, it is disallowed if the customer has issued invoices with usage line + * items and subject to the same restrictions as backdated subscription creation. */ fun externalCustomerId(externalCustomerId: String?) = externalCustomerId(JsonField.ofNullable(externalCustomerId)) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerUpdateParams.kt index 1a576df9..00713032 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/CustomerUpdateParams.kt @@ -104,8 +104,10 @@ private constructor( fun emailDelivery(): Optional = body.emailDelivery() /** - * The external customer ID. This can only be set if empty and the customer has no past or - * current subscriptions. + * The external customer ID. This can only be set if the customer has no existing external + * customer ID. Since this action may change usage quantities for all existing subscriptions, it + * is disallowed if the customer has issued invoices with usage line items and subject to the + * same restrictions as backdated subscription creation. * * @throws OrbInvalidDataException if the JSON field has an unexpected type (e.g. if the server * responded with an unexpected value). @@ -418,8 +420,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) @@ -626,8 +630,10 @@ private constructor( } /** - * The external customer ID. This can only be set if empty and the customer has no past or - * current subscriptions. + * The external customer ID. This can only be set if the customer has no existing external + * customer ID. Since this action may change usage quantities for all existing + * subscriptions, it is disallowed if the customer has issued invoices with usage line items + * and subject to the same restrictions as backdated subscription creation. */ fun externalCustomerId(externalCustomerId: String?) = apply { body.externalCustomerId(externalCustomerId) @@ -1278,8 +1284,10 @@ private constructor( fun emailDelivery(): Optional = emailDelivery.getOptional("email_delivery") /** - * The external customer ID. This can only be set if empty and the customer has no past or - * current subscriptions. + * The external customer ID. This can only be set if the customer has no existing external + * customer ID. Since this action may change usage quantities for all existing + * subscriptions, it is disallowed if the customer has issued invoices with usage line items + * and subject to the same restrictions as backdated subscription creation. * * @throws OrbInvalidDataException if the JSON field has an unexpected type (e.g. if the * server responded with an unexpected value). @@ -1853,8 +1861,10 @@ private constructor( } /** - * The external customer ID. This can only be set if empty and the customer has no past - * or current subscriptions. + * The external customer ID. This can only be set if the customer has no existing + * external customer ID. Since this action may change usage quantities for all existing + * subscriptions, it is disallowed if the customer has issued invoices with usage line + * items and subject to the same restrictions as backdated subscription creation. */ fun externalCustomerId(externalCustomerId: String?) = externalCustomerId(JsonField.ofNullable(externalCustomerId)) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupCreateParams.kt index fa6db9b7..a0c99817 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupCreateParams.kt @@ -114,8 +114,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams.kt index 81584e94..451164f1 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams.kt @@ -20,8 +20,10 @@ private constructor( fun externalDimensionalPriceGroupId(): Optional = Optional.ofNullable(externalDimensionalPriceGroupId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListPage.kt index 899015d7..f3ceadd4 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [DimensionalPriceGroupService.list] */ +/** @see DimensionalPriceGroupService.list */ class DimensionalPriceGroupListPage private constructor( private val service: DimensionalPriceGroupService, @@ -21,7 +21,7 @@ private constructor( /** * Delegates to [DimensionalPriceGroups], but gracefully handles missing data. * - * @see [DimensionalPriceGroups.data] + * @see DimensionalPriceGroups.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -29,7 +29,7 @@ private constructor( /** * Delegates to [DimensionalPriceGroups], but gracefully handles missing data. * - * @see [DimensionalPriceGroups.paginationMetadata] + * @see DimensionalPriceGroups.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListPageAsync.kt index 4575dde4..73f4c4aa 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [DimensionalPriceGroupServiceAsync.list] */ +/** @see DimensionalPriceGroupServiceAsync.list */ class DimensionalPriceGroupListPageAsync private constructor( private val service: DimensionalPriceGroupServiceAsync, @@ -24,7 +24,7 @@ private constructor( /** * Delegates to [DimensionalPriceGroups], but gracefully handles missing data. * - * @see [DimensionalPriceGroups.data] + * @see DimensionalPriceGroups.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -32,7 +32,7 @@ private constructor( /** * Delegates to [DimensionalPriceGroups], but gracefully handles missing data. * - * @see [DimensionalPriceGroups.paginationMetadata] + * @see DimensionalPriceGroups.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListParams.kt index d4c6bd5f..bcb35fef 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupListParams.kt @@ -27,8 +27,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupRetrieveParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupRetrieveParams.kt index 9e5cfe97..778cddb3 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupRetrieveParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/DimensionalPriceGroupRetrieveParams.kt @@ -19,8 +19,10 @@ private constructor( fun dimensionalPriceGroupId(): Optional = Optional.ofNullable(dimensionalPriceGroupId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillCloseParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillCloseParams.kt index 65c4381d..ec9abb5e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillCloseParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillCloseParams.kt @@ -26,10 +26,13 @@ private constructor( fun backfillId(): Optional = Optional.ofNullable(backfillId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillCreateParams.kt index 277df7ed..5ec44a67 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillCreateParams.kt @@ -178,8 +178,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillFetchParams.kt index 51ce1789..fd1c48f8 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillFetchParams.kt @@ -19,8 +19,10 @@ private constructor( fun backfillId(): Optional = Optional.ofNullable(backfillId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListPage.kt index 68258174..944841f1 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [BackfillService.list] */ +/** @see BackfillService.list */ class EventBackfillListPage private constructor( private val service: BackfillService, @@ -21,7 +21,7 @@ private constructor( /** * Delegates to [EventBackfillListPageResponse], but gracefully handles missing data. * - * @see [EventBackfillListPageResponse.data] + * @see EventBackfillListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -29,7 +29,7 @@ private constructor( /** * Delegates to [EventBackfillListPageResponse], but gracefully handles missing data. * - * @see [EventBackfillListPageResponse.paginationMetadata] + * @see EventBackfillListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListPageAsync.kt index c2175ff8..40c53ac9 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [BackfillServiceAsync.list] */ +/** @see BackfillServiceAsync.list */ class EventBackfillListPageAsync private constructor( private val service: BackfillServiceAsync, @@ -24,7 +24,7 @@ private constructor( /** * Delegates to [EventBackfillListPageResponse], but gracefully handles missing data. * - * @see [EventBackfillListPageResponse.data] + * @see EventBackfillListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -32,7 +32,7 @@ private constructor( /** * Delegates to [EventBackfillListPageResponse], but gracefully handles missing data. * - * @see [EventBackfillListPageResponse.paginationMetadata] + * @see EventBackfillListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListParams.kt index a1cd76dd..efcab38d 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillListParams.kt @@ -34,8 +34,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillRevertParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillRevertParams.kt index 6eb57fe2..83d71404 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillRevertParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventBackfillRevertParams.kt @@ -29,10 +29,13 @@ private constructor( fun backfillId(): Optional = Optional.ofNullable(backfillId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventDeprecateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventDeprecateParams.kt index 5b8d9e4f..71000c9a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventDeprecateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventDeprecateParams.kt @@ -55,10 +55,13 @@ private constructor( fun eventId(): Optional = Optional.ofNullable(eventId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventIngestParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventIngestParams.kt index 030c94a0..5bf62698 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventIngestParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventIngestParams.kt @@ -244,8 +244,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventSearchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventSearchParams.kt index bfaf3576..4b4c226f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventSearchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventSearchParams.kt @@ -95,8 +95,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventUpdateParams.kt index a9ded4f2..4c800b3f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventUpdateParams.kt @@ -152,8 +152,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventVolumeListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventVolumeListParams.kt index a0a2772d..c7fdad16 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/EventVolumeListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/EventVolumeListParams.kt @@ -59,8 +59,10 @@ private constructor( */ fun timeframeEnd(): Optional = Optional.ofNullable(timeframeEnd) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceCreateParams.kt index 7c7120dc..a59c40c2 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceCreateParams.kt @@ -192,8 +192,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceFetchParams.kt index 88d3083a..3b839361 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceFetchParams.kt @@ -19,8 +19,10 @@ private constructor( fun invoiceId(): Optional = Optional.ofNullable(invoiceId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceFetchUpcomingParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceFetchUpcomingParams.kt index 00d04ea4..0d483cf4 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceFetchUpcomingParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceFetchUpcomingParams.kt @@ -21,8 +21,10 @@ private constructor( fun subscriptionId(): String = subscriptionId + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceIssueParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceIssueParams.kt index 5bbf2121..51b3e671 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceIssueParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceIssueParams.kt @@ -56,8 +56,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceLineItemCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceLineItemCreateParams.kt index 36fde3c8..e457db5e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceLineItemCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceLineItemCreateParams.kt @@ -123,8 +123,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListPage.kt index 3eb2ae02..5c65a905 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [InvoiceService.list] */ +/** @see InvoiceService.list */ class InvoiceListPage private constructor( private val service: InvoiceService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [InvoiceListPageResponse], but gracefully handles missing data. * - * @see [InvoiceListPageResponse.data] + * @see InvoiceListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [InvoiceListPageResponse], but gracefully handles missing data. * - * @see [InvoiceListPageResponse.paginationMetadata] + * @see InvoiceListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListPageAsync.kt index 495115c3..2cab73fd 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [InvoiceServiceAsync.list] */ +/** @see InvoiceServiceAsync.list */ class InvoiceListPageAsync private constructor( private val service: InvoiceServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [InvoiceListPageResponse], but gracefully handles missing data. * - * @see [InvoiceListPageResponse.data] + * @see InvoiceListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [InvoiceListPageResponse], but gracefully handles missing data. * - * @see [InvoiceListPageResponse.paginationMetadata] + * @see InvoiceListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListParams.kt index 646aa71a..f4c69d4c 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceListParams.kt @@ -104,8 +104,10 @@ private constructor( fun subscriptionId(): Optional = Optional.ofNullable(subscriptionId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceMarkPaidParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceMarkPaidParams.kt index aa7500b7..05013332 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceMarkPaidParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceMarkPaidParams.kt @@ -83,8 +83,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoicePayParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoicePayParams.kt index 1328a2ff..32a64ad3 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoicePayParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoicePayParams.kt @@ -25,10 +25,13 @@ private constructor( fun invoiceId(): Optional = Optional.ofNullable(invoiceId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceUpdateParams.kt index 7ec4c10d..ffa9bd2a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceUpdateParams.kt @@ -21,10 +21,12 @@ import java.util.Optional import kotlin.jvm.optionals.getOrNull /** - * This endpoint allows you to update the `metadata` property on an invoice. If you pass null for - * the metadata value, it will clear any existing metadata for that invoice. + * This endpoint allows you to update the `metadata`, `net_terms`, and `due_date` properties on an + * invoice. If you pass null for the metadata value, it will clear any existing metadata for that + * invoice. * - * `metadata` can be modified regardless of invoice state. + * `metadata` can be modified regardless of invoice state. `net_terms` and `due_date` can only be + * modified if the invoice is in a `draft` state. */ class InvoiceUpdateParams private constructor( @@ -55,8 +57,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceVoidInvoiceParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceVoidInvoiceParams.kt index 3ce745b2..18ffb169 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceVoidInvoiceParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/InvoiceVoidInvoiceParams.kt @@ -32,10 +32,13 @@ private constructor( fun invoiceId(): Optional = Optional.ofNullable(invoiceId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemArchiveParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemArchiveParams.kt index d2ba5f2c..b5f68505 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemArchiveParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemArchiveParams.kt @@ -22,10 +22,13 @@ private constructor( fun itemId(): Optional = Optional.ofNullable(itemId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemCreateParams.kt index 5fd677aa..32fb9ce2 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemCreateParams.kt @@ -63,8 +63,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemFetchParams.kt index 2576c3bf..b67ff20b 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemFetchParams.kt @@ -19,8 +19,10 @@ private constructor( fun itemId(): Optional = Optional.ofNullable(itemId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListPage.kt index 4a725205..6dc4e27e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [ItemService.list] */ +/** @see ItemService.list */ class ItemListPage private constructor( private val service: ItemService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [ItemListPageResponse], but gracefully handles missing data. * - * @see [ItemListPageResponse.data] + * @see ItemListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [ItemListPageResponse], but gracefully handles missing data. * - * @see [ItemListPageResponse.paginationMetadata] + * @see ItemListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListPageAsync.kt index 89d544c9..d594a9a9 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [ItemServiceAsync.list] */ +/** @see ItemServiceAsync.list */ class ItemListPageAsync private constructor( private val service: ItemServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [ItemListPageResponse], but gracefully handles missing data. * - * @see [ItemListPageResponse.data] + * @see ItemListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [ItemListPageResponse], but gracefully handles missing data. * - * @see [ItemListPageResponse.paginationMetadata] + * @see ItemListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListParams.kt index cdd5d184..c3b13ef5 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemListParams.kt @@ -27,8 +27,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemUpdateParams.kt index b99bc428..2692e27e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/ItemUpdateParams.kt @@ -80,8 +80,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricCreateParams.kt index 31a3e740..01265434 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricCreateParams.kt @@ -112,8 +112,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricFetchParams.kt index 91f6de6b..770ee4bd 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricFetchParams.kt @@ -22,8 +22,10 @@ private constructor( fun metricId(): Optional = Optional.ofNullable(metricId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListPage.kt index 5c32106c..55a2e386 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [MetricService.list] */ +/** @see MetricService.list */ class MetricListPage private constructor( private val service: MetricService, @@ -21,7 +21,7 @@ private constructor( /** * Delegates to [MetricListPageResponse], but gracefully handles missing data. * - * @see [MetricListPageResponse.data] + * @see MetricListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -29,7 +29,7 @@ private constructor( /** * Delegates to [MetricListPageResponse], but gracefully handles missing data. * - * @see [MetricListPageResponse.paginationMetadata] + * @see MetricListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListPageAsync.kt index 78d94132..d1c38139 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [MetricServiceAsync.list] */ +/** @see MetricServiceAsync.list */ class MetricListPageAsync private constructor( private val service: MetricServiceAsync, @@ -24,7 +24,7 @@ private constructor( /** * Delegates to [MetricListPageResponse], but gracefully handles missing data. * - * @see [MetricListPageResponse.data] + * @see MetricListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -32,7 +32,7 @@ private constructor( /** * Delegates to [MetricListPageResponse], but gracefully handles missing data. * - * @see [MetricListPageResponse.paginationMetadata] + * @see MetricListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListParams.kt index 9f95368b..ee91e370 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricListParams.kt @@ -44,8 +44,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricUpdateParams.kt index 83328fbf..a67dfd41 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/MetricUpdateParams.kt @@ -53,8 +53,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanCreateParams.kt index 2fc09d4c..c53835e9 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanCreateParams.kt @@ -197,8 +197,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanExternalPlanIdFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanExternalPlanIdFetchParams.kt index 1c3d068d..7753b01f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanExternalPlanIdFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanExternalPlanIdFetchParams.kt @@ -34,8 +34,10 @@ private constructor( fun externalPlanId(): Optional = Optional.ofNullable(externalPlanId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanExternalPlanIdUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanExternalPlanIdUpdateParams.kt index 8ea0327d..a1201471 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanExternalPlanIdUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanExternalPlanIdUpdateParams.kt @@ -70,8 +70,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanFetchParams.kt index a6427bb0..63e61d0d 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanFetchParams.kt @@ -35,8 +35,10 @@ private constructor( fun planId(): Optional = Optional.ofNullable(planId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListPage.kt index c2506318..8e959d1a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [PlanService.list] */ +/** @see PlanService.list */ class PlanListPage private constructor( private val service: PlanService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [PlanListPageResponse], but gracefully handles missing data. * - * @see [PlanListPageResponse.data] + * @see PlanListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [PlanListPageResponse], but gracefully handles missing data. * - * @see [PlanListPageResponse.paginationMetadata] + * @see PlanListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListPageAsync.kt index 7cb079f9..c305e49f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [PlanServiceAsync.list] */ +/** @see PlanServiceAsync.list */ class PlanListPageAsync private constructor( private val service: PlanServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [PlanListPageResponse], but gracefully handles missing data. * - * @see [PlanListPageResponse.data] + * @see PlanListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [PlanListPageResponse], but gracefully handles missing data. * - * @see [PlanListPageResponse.paginationMetadata] + * @see PlanListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListParams.kt index 25dc0e92..8237f23f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanListParams.kt @@ -54,8 +54,10 @@ private constructor( /** The plan status to filter to ('active', 'archived', or 'draft'). */ fun status(): Optional = Optional.ofNullable(status) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanUpdateParams.kt index 4273fb25..278aaf96 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PlanUpdateParams.kt @@ -70,8 +70,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceCreateParams.kt index 7ef9b435..e783f8dc 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceCreateParams.kt @@ -43,8 +43,10 @@ private constructor( fun body(): Body = body + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluateMultipleParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluateMultipleParams.kt index b23e41fd..e6ea9024 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluateMultipleParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluateMultipleParams.kt @@ -145,8 +145,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluateParams.kt index 4534f4ef..e22c2a78 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluateParams.kt @@ -150,8 +150,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluatePreviewEventsParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluatePreviewEventsParams.kt index 8dc49855..425a39c4 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluatePreviewEventsParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceEvaluatePreviewEventsParams.kt @@ -151,8 +151,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceExternalPriceIdFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceExternalPriceIdFetchParams.kt index bdbe1002..8eaf6741 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceExternalPriceIdFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceExternalPriceIdFetchParams.kt @@ -23,8 +23,10 @@ private constructor( fun externalPriceId(): Optional = Optional.ofNullable(externalPriceId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceExternalPriceIdUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceExternalPriceIdUpdateParams.kt index 9775d92b..98211957 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceExternalPriceIdUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceExternalPriceIdUpdateParams.kt @@ -53,8 +53,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceFetchParams.kt index 9f4831e6..90a4c0db 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceFetchParams.kt @@ -19,8 +19,10 @@ private constructor( fun priceId(): Optional = Optional.ofNullable(priceId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListPage.kt index 852625a9..e364ec84 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListPage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [PriceService.list] */ +/** @see PriceService.list */ class PriceListPage private constructor( private val service: PriceService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [PriceListPageResponse], but gracefully handles missing data. * - * @see [PriceListPageResponse.data] + * @see PriceListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [PriceListPageResponse], but gracefully handles missing data. * - * @see [PriceListPageResponse.paginationMetadata] + * @see PriceListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListPageAsync.kt index 7d5b880e..16f0bb3a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListPageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [PriceServiceAsync.list] */ +/** @see PriceServiceAsync.list */ class PriceListPageAsync private constructor( private val service: PriceServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [PriceListPageResponse], but gracefully handles missing data. * - * @see [PriceListPageResponse.data] + * @see PriceListPageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [PriceListPageResponse], but gracefully handles missing data. * - * @see [PriceListPageResponse.paginationMetadata] + * @see PriceListPageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListParams.kt index acb672e1..6bf5acc1 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceListParams.kt @@ -30,8 +30,10 @@ private constructor( /** The number of items to fetch. Defaults to 20. */ fun limit(): Optional = Optional.ofNullable(limit) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceUpdateParams.kt index 96660b94..0abcc249 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/PriceUpdateParams.kt @@ -53,8 +53,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionCancelParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionCancelParams.kt index ccc31668..807e108b 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionCancelParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionCancelParams.kt @@ -135,8 +135,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeApplyParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeApplyParams.kt index 554f3ac5..60e08f8d 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeApplyParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeApplyParams.kt @@ -67,8 +67,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeCancelParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeCancelParams.kt index d5b2dc6a..ed360c5d 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeCancelParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeCancelParams.kt @@ -26,10 +26,13 @@ private constructor( fun subscriptionChangeId(): Optional = Optional.ofNullable(subscriptionChangeId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeRetrieveParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeRetrieveParams.kt index ec3ab846..46d0066e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeRetrieveParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionChangeRetrieveParams.kt @@ -27,8 +27,10 @@ private constructor( fun subscriptionChangeId(): Optional = Optional.ofNullable(subscriptionChangeId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionCreateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionCreateParams.kt index 80b61e11..f9c19fa4 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionCreateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionCreateParams.kt @@ -806,8 +806,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchCostsParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchCostsParams.kt index 9c2c087c..390c1717 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchCostsParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchCostsParams.kt @@ -39,7 +39,7 @@ private constructor( fun subscriptionId(): Optional = Optional.ofNullable(subscriptionId) - /** The currency to use. */ + /** The currency or custom pricing unit to use. */ fun currency(): Optional = Optional.ofNullable(currency) /** Costs returned are exclusive of `timeframe_end`. */ @@ -55,8 +55,10 @@ private constructor( */ fun viewMode(): Optional = Optional.ofNullable(viewMode) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) @@ -99,7 +101,7 @@ private constructor( fun subscriptionId(subscriptionId: Optional) = subscriptionId(subscriptionId.getOrNull()) - /** The currency to use. */ + /** The currency or custom pricing unit to use. */ fun currency(currency: String?) = apply { this.currency = currency } /** Alias for calling [Builder.currency] with `currency.orElse(null)`. */ diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchParams.kt index f107bdd6..e1795704 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchParams.kt @@ -22,8 +22,10 @@ private constructor( fun subscriptionId(): Optional = Optional.ofNullable(subscriptionId) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchSchedulePage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchSchedulePage.kt index c8263072..a89ad92b 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchSchedulePage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchSchedulePage.kt @@ -10,7 +10,7 @@ import java.util.Objects import java.util.Optional import kotlin.jvm.optionals.getOrNull -/** @see [SubscriptionService.fetchSchedule] */ +/** @see SubscriptionService.fetchSchedule */ class SubscriptionFetchSchedulePage private constructor( private val service: SubscriptionService, @@ -21,7 +21,7 @@ private constructor( /** * Delegates to [SubscriptionFetchSchedulePageResponse], but gracefully handles missing data. * - * @see [SubscriptionFetchSchedulePageResponse.data] + * @see SubscriptionFetchSchedulePageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -29,7 +29,7 @@ private constructor( /** * Delegates to [SubscriptionFetchSchedulePageResponse], but gracefully handles missing data. * - * @see [SubscriptionFetchSchedulePageResponse.paginationMetadata] + * @see SubscriptionFetchSchedulePageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchSchedulePageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchSchedulePageAsync.kt index 524dd761..97f7efc3 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchSchedulePageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchSchedulePageAsync.kt @@ -12,7 +12,7 @@ import java.util.concurrent.CompletableFuture import java.util.concurrent.Executor import kotlin.jvm.optionals.getOrNull -/** @see [SubscriptionServiceAsync.fetchSchedule] */ +/** @see SubscriptionServiceAsync.fetchSchedule */ class SubscriptionFetchSchedulePageAsync private constructor( private val service: SubscriptionServiceAsync, @@ -24,7 +24,7 @@ private constructor( /** * Delegates to [SubscriptionFetchSchedulePageResponse], but gracefully handles missing data. * - * @see [SubscriptionFetchSchedulePageResponse.data] + * @see SubscriptionFetchSchedulePageResponse.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() @@ -32,7 +32,7 @@ private constructor( /** * Delegates to [SubscriptionFetchSchedulePageResponse], but gracefully handles missing data. * - * @see [SubscriptionFetchSchedulePageResponse.paginationMetadata] + * @see SubscriptionFetchSchedulePageResponse.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchScheduleParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchScheduleParams.kt index 159f4d53..ac89bdd3 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchScheduleParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchScheduleParams.kt @@ -48,8 +48,10 @@ private constructor( fun startDateLte(): Optional = Optional.ofNullable(startDateLte) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchUsageParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchUsageParams.kt index 531312c3..6c9218f3 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchUsageParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionFetchUsageParams.kt @@ -244,8 +244,10 @@ private constructor( */ fun viewMode(): Optional = Optional.ofNullable(viewMode) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListPage.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListPage.kt index bcef627c..8619ff64 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListPage.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListPage.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 SubscriptionListPage private constructor( private val service: SubscriptionService, @@ -21,14 +21,14 @@ private constructor( /** * Delegates to [Subscriptions], but gracefully handles missing data. * - * @see [Subscriptions.data] + * @see Subscriptions.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [Subscriptions], but gracefully handles missing data. * - * @see [Subscriptions.paginationMetadata] + * @see Subscriptions.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListPageAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListPageAsync.kt index 394c5cb7..13d6d2ab 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListPageAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListPageAsync.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 SubscriptionListPageAsync private constructor( private val service: SubscriptionServiceAsync, @@ -24,14 +24,14 @@ private constructor( /** * Delegates to [Subscriptions], but gracefully handles missing data. * - * @see [Subscriptions.data] + * @see Subscriptions.data */ fun data(): List = response._data().getOptional("data").getOrNull() ?: emptyList() /** * Delegates to [Subscriptions], but gracefully handles missing data. * - * @see [Subscriptions.paginationMetadata] + * @see Subscriptions.paginationMetadata */ fun paginationMetadata(): Optional = response._paginationMetadata().getOptional("pagination_metadata") diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListParams.kt index 740d0492..d6b3e6a0 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionListParams.kt @@ -64,8 +64,10 @@ private constructor( fun status(): Optional = Optional.ofNullable(status) + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionPriceIntervalsParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionPriceIntervalsParams.kt index 5620881b..952b32f0 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionPriceIntervalsParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionPriceIntervalsParams.kt @@ -189,8 +189,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionRedeemCouponParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionRedeemCouponParams.kt index a99894b7..ded1d5e2 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionRedeemCouponParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionRedeemCouponParams.kt @@ -113,8 +113,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionSchedulePlanChangeParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionSchedulePlanChangeParams.kt index 8013f485..64a19335 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionSchedulePlanChangeParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionSchedulePlanChangeParams.kt @@ -638,8 +638,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionTriggerPhaseParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionTriggerPhaseParams.kt index c92bb563..aed15fa6 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionTriggerPhaseParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionTriggerPhaseParams.kt @@ -67,8 +67,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnscheduleCancellationParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnscheduleCancellationParams.kt index 12927d89..a244c329 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnscheduleCancellationParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnscheduleCancellationParams.kt @@ -28,10 +28,13 @@ private constructor( fun subscriptionId(): Optional = Optional.ofNullable(subscriptionId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnscheduleFixedFeeQuantityUpdatesParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnscheduleFixedFeeQuantityUpdatesParams.kt index b04fb950..5a18ebce 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnscheduleFixedFeeQuantityUpdatesParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnscheduleFixedFeeQuantityUpdatesParams.kt @@ -53,8 +53,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnschedulePendingPlanChangesParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnschedulePendingPlanChangesParams.kt index e508ba7e..2267916a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnschedulePendingPlanChangesParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUnschedulePendingPlanChangesParams.kt @@ -25,10 +25,13 @@ private constructor( fun subscriptionId(): Optional = Optional.ofNullable(subscriptionId) + /** Additional body properties to send with the request. */ fun _additionalBodyProperties(): Map = additionalBodyProperties + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateFixedFeeQuantityParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateFixedFeeQuantityParams.kt index 5733fcba..73546d52 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateFixedFeeQuantityParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateFixedFeeQuantityParams.kt @@ -128,8 +128,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateParams.kt index 42c2c1ce..4ad99b3b 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateParams.kt @@ -121,8 +121,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateTrialParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateTrialParams.kt index 783c38f9..7a0c8216 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateTrialParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/SubscriptionUpdateTrialParams.kt @@ -95,8 +95,10 @@ private constructor( fun _additionalBodyProperties(): Map = body._additionalProperties() + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/models/TopLevelPingParams.kt b/orb-java-core/src/main/kotlin/com/withorb/api/models/TopLevelPingParams.kt index 4d1671d0..c638578f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/models/TopLevelPingParams.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/models/TopLevelPingParams.kt @@ -20,8 +20,10 @@ private constructor( private val additionalQueryParams: QueryParams, ) : Params { + /** Additional headers to send with the request. */ fun _additionalHeaders(): Headers = additionalHeaders + /** Additional query param to send with the request. */ fun _additionalQueryParams(): QueryParams = additionalQueryParams fun toBuilder() = Builder().from(this) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/AlertServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/AlertServiceAsync.kt index 8ecb6c3a..d9b821ac 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/AlertServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/AlertServiceAsync.kt @@ -36,7 +36,7 @@ interface AlertServiceAsync { fun retrieve(alertId: String): CompletableFuture = retrieve(alertId, AlertRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( alertId: String, params: AlertRetrieveParams = AlertRetrieveParams.none(), @@ -44,23 +44,23 @@ interface AlertServiceAsync { ): CompletableFuture = retrieve(params.toBuilder().alertId(alertId).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( alertId: String, params: AlertRetrieveParams = AlertRetrieveParams.none(), ): CompletableFuture = retrieve(alertId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AlertRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: AlertRetrieveParams): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(alertId: String, requestOptions: RequestOptions): CompletableFuture = retrieve(alertId, AlertRetrieveParams.none(), requestOptions) @@ -68,7 +68,7 @@ interface AlertServiceAsync { fun update(alertConfigurationId: String, params: AlertUpdateParams): CompletableFuture = update(alertConfigurationId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( alertConfigurationId: String, params: AlertUpdateParams, @@ -79,11 +79,11 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update(params: AlertUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: AlertUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -102,18 +102,18 @@ interface AlertServiceAsync { */ fun list(): CompletableFuture = list(AlertListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: AlertListParams = AlertListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: AlertListParams = AlertListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(AlertListParams.none(), requestOptions) @@ -130,7 +130,7 @@ interface AlertServiceAsync { params: AlertCreateForCustomerParams, ): CompletableFuture = createForCustomer(customerId, params, RequestOptions.none()) - /** @see [createForCustomer] */ + /** @see createForCustomer */ fun createForCustomer( customerId: String, params: AlertCreateForCustomerParams, @@ -138,11 +138,11 @@ interface AlertServiceAsync { ): CompletableFuture = createForCustomer(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [createForCustomer] */ + /** @see createForCustomer */ fun createForCustomer(params: AlertCreateForCustomerParams): CompletableFuture = createForCustomer(params, RequestOptions.none()) - /** @see [createForCustomer] */ + /** @see createForCustomer */ fun createForCustomer( params: AlertCreateForCustomerParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -162,7 +162,7 @@ interface AlertServiceAsync { ): CompletableFuture = createForExternalCustomer(externalCustomerId, params, RequestOptions.none()) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ fun createForExternalCustomer( externalCustomerId: String, params: AlertCreateForExternalCustomerParams, @@ -173,12 +173,12 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ fun createForExternalCustomer( params: AlertCreateForExternalCustomerParams ): CompletableFuture = createForExternalCustomer(params, RequestOptions.none()) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ fun createForExternalCustomer( params: AlertCreateForExternalCustomerParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -202,7 +202,7 @@ interface AlertServiceAsync { ): CompletableFuture = createForSubscription(subscriptionId, params, RequestOptions.none()) - /** @see [createForSubscription] */ + /** @see createForSubscription */ fun createForSubscription( subscriptionId: String, params: AlertCreateForSubscriptionParams, @@ -213,11 +213,11 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [createForSubscription] */ + /** @see createForSubscription */ fun createForSubscription(params: AlertCreateForSubscriptionParams): CompletableFuture = createForSubscription(params, RequestOptions.none()) - /** @see [createForSubscription] */ + /** @see createForSubscription */ fun createForSubscription( params: AlertCreateForSubscriptionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -231,7 +231,7 @@ interface AlertServiceAsync { fun disable(alertConfigurationId: String): CompletableFuture = disable(alertConfigurationId, AlertDisableParams.none()) - /** @see [disable] */ + /** @see disable */ fun disable( alertConfigurationId: String, params: AlertDisableParams = AlertDisableParams.none(), @@ -242,23 +242,23 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [disable] */ + /** @see disable */ fun disable( alertConfigurationId: String, params: AlertDisableParams = AlertDisableParams.none(), ): CompletableFuture = disable(alertConfigurationId, params, RequestOptions.none()) - /** @see [disable] */ + /** @see disable */ fun disable( params: AlertDisableParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [disable] */ + /** @see disable */ fun disable(params: AlertDisableParams): CompletableFuture = disable(params, RequestOptions.none()) - /** @see [disable] */ + /** @see disable */ fun disable( alertConfigurationId: String, requestOptions: RequestOptions, @@ -273,7 +273,7 @@ interface AlertServiceAsync { fun enable(alertConfigurationId: String): CompletableFuture = enable(alertConfigurationId, AlertEnableParams.none()) - /** @see [enable] */ + /** @see enable */ fun enable( alertConfigurationId: String, params: AlertEnableParams = AlertEnableParams.none(), @@ -284,23 +284,23 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [enable] */ + /** @see enable */ fun enable( alertConfigurationId: String, params: AlertEnableParams = AlertEnableParams.none(), ): CompletableFuture = enable(alertConfigurationId, params, RequestOptions.none()) - /** @see [enable] */ + /** @see enable */ fun enable( params: AlertEnableParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [enable] */ + /** @see enable */ fun enable(params: AlertEnableParams): CompletableFuture = enable(params, RequestOptions.none()) - /** @see [enable] */ + /** @see enable */ fun enable( alertConfigurationId: String, requestOptions: RequestOptions, @@ -326,7 +326,7 @@ interface AlertServiceAsync { fun retrieve(alertId: String): CompletableFuture> = retrieve(alertId, AlertRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( alertId: String, params: AlertRetrieveParams = AlertRetrieveParams.none(), @@ -334,24 +334,24 @@ interface AlertServiceAsync { ): CompletableFuture> = retrieve(params.toBuilder().alertId(alertId).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( alertId: String, params: AlertRetrieveParams = AlertRetrieveParams.none(), ): CompletableFuture> = retrieve(alertId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AlertRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: AlertRetrieveParams): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( alertId: String, requestOptions: RequestOptions, @@ -368,7 +368,7 @@ interface AlertServiceAsync { ): CompletableFuture> = update(alertConfigurationId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( alertConfigurationId: String, params: AlertUpdateParams, @@ -379,11 +379,11 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update(params: AlertUpdateParams): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: AlertUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -396,19 +396,19 @@ interface AlertServiceAsync { fun list(): CompletableFuture> = list(AlertListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: AlertListParams = AlertListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: AlertListParams = AlertListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -424,7 +424,7 @@ interface AlertServiceAsync { ): CompletableFuture> = createForCustomer(customerId, params, RequestOptions.none()) - /** @see [createForCustomer] */ + /** @see createForCustomer */ fun createForCustomer( customerId: String, params: AlertCreateForCustomerParams, @@ -432,13 +432,13 @@ interface AlertServiceAsync { ): CompletableFuture> = createForCustomer(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [createForCustomer] */ + /** @see createForCustomer */ fun createForCustomer( params: AlertCreateForCustomerParams ): CompletableFuture> = createForCustomer(params, RequestOptions.none()) - /** @see [createForCustomer] */ + /** @see createForCustomer */ fun createForCustomer( params: AlertCreateForCustomerParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -455,7 +455,7 @@ interface AlertServiceAsync { ): CompletableFuture> = createForExternalCustomer(externalCustomerId, params, RequestOptions.none()) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ fun createForExternalCustomer( externalCustomerId: String, params: AlertCreateForExternalCustomerParams, @@ -466,13 +466,13 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ fun createForExternalCustomer( params: AlertCreateForExternalCustomerParams ): CompletableFuture> = createForExternalCustomer(params, RequestOptions.none()) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ fun createForExternalCustomer( params: AlertCreateForExternalCustomerParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -488,7 +488,7 @@ interface AlertServiceAsync { ): CompletableFuture> = createForSubscription(subscriptionId, params, RequestOptions.none()) - /** @see [createForSubscription] */ + /** @see createForSubscription */ fun createForSubscription( subscriptionId: String, params: AlertCreateForSubscriptionParams, @@ -499,13 +499,13 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [createForSubscription] */ + /** @see createForSubscription */ fun createForSubscription( params: AlertCreateForSubscriptionParams ): CompletableFuture> = createForSubscription(params, RequestOptions.none()) - /** @see [createForSubscription] */ + /** @see createForSubscription */ fun createForSubscription( params: AlertCreateForSubscriptionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -518,7 +518,7 @@ interface AlertServiceAsync { fun disable(alertConfigurationId: String): CompletableFuture> = disable(alertConfigurationId, AlertDisableParams.none()) - /** @see [disable] */ + /** @see disable */ fun disable( alertConfigurationId: String, params: AlertDisableParams = AlertDisableParams.none(), @@ -529,24 +529,24 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [disable] */ + /** @see disable */ fun disable( alertConfigurationId: String, params: AlertDisableParams = AlertDisableParams.none(), ): CompletableFuture> = disable(alertConfigurationId, params, RequestOptions.none()) - /** @see [disable] */ + /** @see disable */ fun disable( params: AlertDisableParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [disable] */ + /** @see disable */ fun disable(params: AlertDisableParams): CompletableFuture> = disable(params, RequestOptions.none()) - /** @see [disable] */ + /** @see disable */ fun disable( alertConfigurationId: String, requestOptions: RequestOptions, @@ -560,7 +560,7 @@ interface AlertServiceAsync { fun enable(alertConfigurationId: String): CompletableFuture> = enable(alertConfigurationId, AlertEnableParams.none()) - /** @see [enable] */ + /** @see enable */ fun enable( alertConfigurationId: String, params: AlertEnableParams = AlertEnableParams.none(), @@ -571,24 +571,24 @@ interface AlertServiceAsync { requestOptions, ) - /** @see [enable] */ + /** @see enable */ fun enable( alertConfigurationId: String, params: AlertEnableParams = AlertEnableParams.none(), ): CompletableFuture> = enable(alertConfigurationId, params, RequestOptions.none()) - /** @see [enable] */ + /** @see enable */ fun enable( params: AlertEnableParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [enable] */ + /** @see enable */ fun enable(params: AlertEnableParams): CompletableFuture> = enable(params, RequestOptions.none()) - /** @see [enable] */ + /** @see enable */ fun enable( alertConfigurationId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/BetaServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/BetaServiceAsync.kt index 64046733..8081f0a9 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/BetaServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/BetaServiceAsync.kt @@ -41,7 +41,7 @@ interface BetaServiceAsync { params: BetaCreatePlanVersionParams, ): CompletableFuture = createPlanVersion(planId, params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( planId: String, params: BetaCreatePlanVersionParams, @@ -49,11 +49,11 @@ interface BetaServiceAsync { ): CompletableFuture = createPlanVersion(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion(params: BetaCreatePlanVersionParams): CompletableFuture = createPlanVersion(params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( params: BetaCreatePlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -71,7 +71,7 @@ interface BetaServiceAsync { params: BetaFetchPlanVersionParams, ): CompletableFuture = fetchPlanVersion(version, params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( version: String, params: BetaFetchPlanVersionParams, @@ -79,11 +79,11 @@ interface BetaServiceAsync { ): CompletableFuture = fetchPlanVersion(params.toBuilder().version(version).build(), requestOptions) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion(params: BetaFetchPlanVersionParams): CompletableFuture = fetchPlanVersion(params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( params: BetaFetchPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -100,7 +100,7 @@ interface BetaServiceAsync { params: BetaSetDefaultPlanVersionParams, ): CompletableFuture = setDefaultPlanVersion(planId, params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( planId: String, params: BetaSetDefaultPlanVersionParams, @@ -108,11 +108,11 @@ interface BetaServiceAsync { ): CompletableFuture = setDefaultPlanVersion(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion(params: BetaSetDefaultPlanVersionParams): CompletableFuture = setDefaultPlanVersion(params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( params: BetaSetDefaultPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -140,7 +140,7 @@ interface BetaServiceAsync { ): CompletableFuture> = createPlanVersion(planId, params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( planId: String, params: BetaCreatePlanVersionParams, @@ -148,13 +148,13 @@ interface BetaServiceAsync { ): CompletableFuture> = createPlanVersion(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( params: BetaCreatePlanVersionParams ): CompletableFuture> = createPlanVersion(params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( params: BetaCreatePlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -170,7 +170,7 @@ interface BetaServiceAsync { ): CompletableFuture> = fetchPlanVersion(version, params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( version: String, params: BetaFetchPlanVersionParams, @@ -178,13 +178,13 @@ interface BetaServiceAsync { ): CompletableFuture> = fetchPlanVersion(params.toBuilder().version(version).build(), requestOptions) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( params: BetaFetchPlanVersionParams ): CompletableFuture> = fetchPlanVersion(params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( params: BetaFetchPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -200,7 +200,7 @@ interface BetaServiceAsync { ): CompletableFuture> = setDefaultPlanVersion(planId, params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( planId: String, params: BetaSetDefaultPlanVersionParams, @@ -208,13 +208,13 @@ interface BetaServiceAsync { ): CompletableFuture> = setDefaultPlanVersion(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( params: BetaSetDefaultPlanVersionParams ): CompletableFuture> = setDefaultPlanVersion(params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( params: BetaSetDefaultPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CouponServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CouponServiceAsync.kt index 04b142b9..2fc6a156 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CouponServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CouponServiceAsync.kt @@ -38,7 +38,7 @@ interface CouponServiceAsync { fun create(params: CouponCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CouponCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -54,18 +54,18 @@ interface CouponServiceAsync { */ fun list(): CompletableFuture = list(CouponListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CouponListParams = CouponListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CouponListParams = CouponListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(CouponListParams.none(), requestOptions) @@ -77,7 +77,7 @@ interface CouponServiceAsync { fun archive(couponId: String): CompletableFuture = archive(couponId, CouponArchiveParams.none()) - /** @see [archive] */ + /** @see archive */ fun archive( couponId: String, params: CouponArchiveParams = CouponArchiveParams.none(), @@ -85,23 +85,23 @@ interface CouponServiceAsync { ): CompletableFuture = archive(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [archive] */ + /** @see archive */ fun archive( couponId: String, params: CouponArchiveParams = CouponArchiveParams.none(), ): CompletableFuture = archive(couponId, params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive( params: CouponArchiveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [archive] */ + /** @see archive */ fun archive(params: CouponArchiveParams): CompletableFuture = archive(params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive(couponId: String, requestOptions: RequestOptions): CompletableFuture = archive(couponId, CouponArchiveParams.none(), requestOptions) @@ -112,7 +112,7 @@ interface CouponServiceAsync { fun fetch(couponId: String): CompletableFuture = fetch(couponId, CouponFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( couponId: String, params: CouponFetchParams = CouponFetchParams.none(), @@ -120,23 +120,23 @@ interface CouponServiceAsync { ): CompletableFuture = fetch(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( couponId: String, params: CouponFetchParams = CouponFetchParams.none(), ): CompletableFuture = fetch(couponId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: CouponFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: CouponFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(couponId: String, requestOptions: RequestOptions): CompletableFuture = fetch(couponId, CouponFetchParams.none(), requestOptions) @@ -163,7 +163,7 @@ interface CouponServiceAsync { fun create(params: CouponCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CouponCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -176,19 +176,19 @@ interface CouponServiceAsync { fun list(): CompletableFuture> = list(CouponListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CouponListParams = CouponListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CouponListParams = CouponListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -201,7 +201,7 @@ interface CouponServiceAsync { fun archive(couponId: String): CompletableFuture> = archive(couponId, CouponArchiveParams.none()) - /** @see [archive] */ + /** @see archive */ fun archive( couponId: String, params: CouponArchiveParams = CouponArchiveParams.none(), @@ -209,24 +209,24 @@ interface CouponServiceAsync { ): CompletableFuture> = archive(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [archive] */ + /** @see archive */ fun archive( couponId: String, params: CouponArchiveParams = CouponArchiveParams.none(), ): CompletableFuture> = archive(couponId, params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive( params: CouponArchiveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [archive] */ + /** @see archive */ fun archive(params: CouponArchiveParams): CompletableFuture> = archive(params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive( couponId: String, requestOptions: RequestOptions, @@ -240,7 +240,7 @@ interface CouponServiceAsync { fun fetch(couponId: String): CompletableFuture> = fetch(couponId, CouponFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( couponId: String, params: CouponFetchParams = CouponFetchParams.none(), @@ -248,24 +248,24 @@ interface CouponServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( couponId: String, params: CouponFetchParams = CouponFetchParams.none(), ): CompletableFuture> = fetch(couponId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: CouponFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: CouponFetchParams): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( couponId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CreditNoteServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CreditNoteServiceAsync.kt index 99c197e7..c5e361dd 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CreditNoteServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CreditNoteServiceAsync.kt @@ -53,7 +53,7 @@ interface CreditNoteServiceAsync { fun create(params: CreditNoteCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CreditNoteCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -66,18 +66,18 @@ interface CreditNoteServiceAsync { */ fun list(): CompletableFuture = list(CreditNoteListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CreditNoteListParams = CreditNoteListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CreditNoteListParams = CreditNoteListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(CreditNoteListParams.none(), requestOptions) @@ -88,7 +88,7 @@ interface CreditNoteServiceAsync { fun fetch(creditNoteId: String): CompletableFuture = fetch(creditNoteId, CreditNoteFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( creditNoteId: String, params: CreditNoteFetchParams = CreditNoteFetchParams.none(), @@ -96,23 +96,23 @@ interface CreditNoteServiceAsync { ): CompletableFuture = fetch(params.toBuilder().creditNoteId(creditNoteId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( creditNoteId: String, params: CreditNoteFetchParams = CreditNoteFetchParams.none(), ): CompletableFuture = fetch(creditNoteId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: CreditNoteFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: CreditNoteFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(creditNoteId: String, requestOptions: RequestOptions): CompletableFuture = fetch(creditNoteId, CreditNoteFetchParams.none(), requestOptions) @@ -138,7 +138,7 @@ interface CreditNoteServiceAsync { fun create(params: CreditNoteCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CreditNoteCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -151,19 +151,19 @@ interface CreditNoteServiceAsync { fun list(): CompletableFuture> = list(CreditNoteListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CreditNoteListParams = CreditNoteListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CreditNoteListParams = CreditNoteListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -176,7 +176,7 @@ interface CreditNoteServiceAsync { fun fetch(creditNoteId: String): CompletableFuture> = fetch(creditNoteId, CreditNoteFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( creditNoteId: String, params: CreditNoteFetchParams = CreditNoteFetchParams.none(), @@ -184,24 +184,24 @@ interface CreditNoteServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().creditNoteId(creditNoteId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( creditNoteId: String, params: CreditNoteFetchParams = CreditNoteFetchParams.none(), ): CompletableFuture> = fetch(creditNoteId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: CreditNoteFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: CreditNoteFetchParams): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( creditNoteId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CustomerServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CustomerServiceAsync.kt index d7a49abe..b4cf9689 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CustomerServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/CustomerServiceAsync.kt @@ -59,7 +59,7 @@ interface CustomerServiceAsync { fun create(params: CustomerCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CustomerCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -74,7 +74,7 @@ interface CustomerServiceAsync { fun update(customerId: String): CompletableFuture = update(customerId, CustomerUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( customerId: String, params: CustomerUpdateParams = CustomerUpdateParams.none(), @@ -82,23 +82,23 @@ interface CustomerServiceAsync { ): CompletableFuture = update(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( customerId: String, params: CustomerUpdateParams = CustomerUpdateParams.none(), ): CompletableFuture = update(customerId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: CustomerUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: CustomerUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(customerId: String, requestOptions: RequestOptions): CompletableFuture = update(customerId, CustomerUpdateParams.none(), requestOptions) @@ -111,18 +111,18 @@ interface CustomerServiceAsync { */ fun list(): CompletableFuture = list(CustomerListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerListParams = CustomerListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CustomerListParams = CustomerListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(CustomerListParams.none(), requestOptions) @@ -141,7 +141,7 @@ interface CustomerServiceAsync { fun delete(customerId: String): CompletableFuture = delete(customerId, CustomerDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( customerId: String, params: CustomerDeleteParams = CustomerDeleteParams.none(), @@ -149,23 +149,23 @@ interface CustomerServiceAsync { ): CompletableFuture = delete(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete( customerId: String, params: CustomerDeleteParams = CustomerDeleteParams.none(), ): CompletableFuture = delete(customerId, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: CustomerDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [delete] */ + /** @see delete */ fun delete(params: CustomerDeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete(customerId: String, requestOptions: RequestOptions): CompletableFuture = delete(customerId, CustomerDeleteParams.none(), requestOptions) @@ -179,7 +179,7 @@ interface CustomerServiceAsync { fun fetch(customerId: String): CompletableFuture = fetch(customerId, CustomerFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( customerId: String, params: CustomerFetchParams = CustomerFetchParams.none(), @@ -187,23 +187,23 @@ interface CustomerServiceAsync { ): CompletableFuture = fetch(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( customerId: String, params: CustomerFetchParams = CustomerFetchParams.none(), ): CompletableFuture = fetch(customerId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: CustomerFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: CustomerFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(customerId: String, requestOptions: RequestOptions): CompletableFuture = fetch(customerId, CustomerFetchParams.none(), requestOptions) @@ -217,7 +217,7 @@ interface CustomerServiceAsync { fun fetchByExternalId(externalCustomerId: String): CompletableFuture = fetchByExternalId(externalCustomerId, CustomerFetchByExternalIdParams.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( externalCustomerId: String, params: CustomerFetchByExternalIdParams = CustomerFetchByExternalIdParams.none(), @@ -228,24 +228,24 @@ interface CustomerServiceAsync { requestOptions, ) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( externalCustomerId: String, params: CustomerFetchByExternalIdParams = CustomerFetchByExternalIdParams.none(), ): CompletableFuture = fetchByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( params: CustomerFetchByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId(params: CustomerFetchByExternalIdParams): CompletableFuture = fetchByExternalId(params, RequestOptions.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -270,7 +270,7 @@ interface CustomerServiceAsync { CustomerSyncPaymentMethodsFromGatewayParams.none(), ) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( customerId: String, params: CustomerSyncPaymentMethodsFromGatewayParams = @@ -282,7 +282,7 @@ interface CustomerServiceAsync { requestOptions, ) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( customerId: String, params: CustomerSyncPaymentMethodsFromGatewayParams = @@ -290,18 +290,18 @@ interface CustomerServiceAsync { ): CompletableFuture = syncPaymentMethodsFromGateway(customerId, params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( params: CustomerSyncPaymentMethodsFromGatewayParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( params: CustomerSyncPaymentMethodsFromGatewayParams ): CompletableFuture = syncPaymentMethodsFromGateway(params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( customerId: String, requestOptions: RequestOptions, @@ -328,7 +328,7 @@ interface CustomerServiceAsync { CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams.none(), ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams = @@ -340,7 +340,7 @@ interface CustomerServiceAsync { requestOptions, ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams = @@ -352,19 +352,19 @@ interface CustomerServiceAsync { RequestOptions.none(), ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams ): CompletableFuture = syncPaymentMethodsFromGatewayByExternalCustomerId(params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, requestOptions: RequestOptions, @@ -383,7 +383,7 @@ interface CustomerServiceAsync { fun updateByExternalId(id: String): CompletableFuture = updateByExternalId(id, CustomerUpdateByExternalIdParams.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( id: String, params: CustomerUpdateByExternalIdParams = CustomerUpdateByExternalIdParams.none(), @@ -391,23 +391,23 @@ interface CustomerServiceAsync { ): CompletableFuture = updateByExternalId(params.toBuilder().id(id).build(), requestOptions) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( id: String, params: CustomerUpdateByExternalIdParams = CustomerUpdateByExternalIdParams.none(), ): CompletableFuture = updateByExternalId(id, params, RequestOptions.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( params: CustomerUpdateByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId(params: CustomerUpdateByExternalIdParams): CompletableFuture = updateByExternalId(params, RequestOptions.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( id: String, requestOptions: RequestOptions, @@ -441,7 +441,7 @@ interface CustomerServiceAsync { fun create(params: CustomerCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CustomerCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -454,7 +454,7 @@ interface CustomerServiceAsync { fun update(customerId: String): CompletableFuture> = update(customerId, CustomerUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( customerId: String, params: CustomerUpdateParams = CustomerUpdateParams.none(), @@ -462,24 +462,24 @@ interface CustomerServiceAsync { ): CompletableFuture> = update(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( customerId: String, params: CustomerUpdateParams = CustomerUpdateParams.none(), ): CompletableFuture> = update(customerId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: CustomerUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update(params: CustomerUpdateParams): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( customerId: String, requestOptions: RequestOptions, @@ -493,19 +493,19 @@ interface CustomerServiceAsync { fun list(): CompletableFuture> = list(CustomerListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerListParams = CustomerListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CustomerListParams = CustomerListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -518,7 +518,7 @@ interface CustomerServiceAsync { fun delete(customerId: String): CompletableFuture = delete(customerId, CustomerDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( customerId: String, params: CustomerDeleteParams = CustomerDeleteParams.none(), @@ -526,23 +526,23 @@ interface CustomerServiceAsync { ): CompletableFuture = delete(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete( customerId: String, params: CustomerDeleteParams = CustomerDeleteParams.none(), ): CompletableFuture = delete(customerId, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: CustomerDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [delete] */ + /** @see delete */ fun delete(params: CustomerDeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( customerId: String, requestOptions: RequestOptions, @@ -556,7 +556,7 @@ interface CustomerServiceAsync { fun fetch(customerId: String): CompletableFuture> = fetch(customerId, CustomerFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( customerId: String, params: CustomerFetchParams = CustomerFetchParams.none(), @@ -564,24 +564,24 @@ interface CustomerServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( customerId: String, params: CustomerFetchParams = CustomerFetchParams.none(), ): CompletableFuture> = fetch(customerId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: CustomerFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: CustomerFetchParams): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( customerId: String, requestOptions: RequestOptions, @@ -598,7 +598,7 @@ interface CustomerServiceAsync { ): CompletableFuture> = fetchByExternalId(externalCustomerId, CustomerFetchByExternalIdParams.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( externalCustomerId: String, params: CustomerFetchByExternalIdParams = CustomerFetchByExternalIdParams.none(), @@ -609,26 +609,26 @@ interface CustomerServiceAsync { requestOptions, ) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( externalCustomerId: String, params: CustomerFetchByExternalIdParams = CustomerFetchByExternalIdParams.none(), ): CompletableFuture> = fetchByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( params: CustomerFetchByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( params: CustomerFetchByExternalIdParams ): CompletableFuture> = fetchByExternalId(params, RequestOptions.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -650,7 +650,7 @@ interface CustomerServiceAsync { CustomerSyncPaymentMethodsFromGatewayParams.none(), ) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( customerId: String, params: CustomerSyncPaymentMethodsFromGatewayParams = @@ -662,7 +662,7 @@ interface CustomerServiceAsync { requestOptions, ) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( customerId: String, params: CustomerSyncPaymentMethodsFromGatewayParams = @@ -670,19 +670,19 @@ interface CustomerServiceAsync { ): CompletableFuture = syncPaymentMethodsFromGateway(customerId, params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( params: CustomerSyncPaymentMethodsFromGatewayParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( params: CustomerSyncPaymentMethodsFromGatewayParams ): CompletableFuture = syncPaymentMethodsFromGateway(params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( customerId: String, requestOptions: RequestOptions, @@ -707,7 +707,7 @@ interface CustomerServiceAsync { CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams.none(), ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams = @@ -719,7 +719,7 @@ interface CustomerServiceAsync { requestOptions, ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams = @@ -731,19 +731,19 @@ interface CustomerServiceAsync { RequestOptions.none(), ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams ): CompletableFuture = syncPaymentMethodsFromGatewayByExternalCustomerId(params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, requestOptions: RequestOptions, @@ -762,7 +762,7 @@ interface CustomerServiceAsync { fun updateByExternalId(id: String): CompletableFuture> = updateByExternalId(id, CustomerUpdateByExternalIdParams.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( id: String, params: CustomerUpdateByExternalIdParams = CustomerUpdateByExternalIdParams.none(), @@ -770,26 +770,26 @@ interface CustomerServiceAsync { ): CompletableFuture> = updateByExternalId(params.toBuilder().id(id).build(), requestOptions) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( id: String, params: CustomerUpdateByExternalIdParams = CustomerUpdateByExternalIdParams.none(), ): CompletableFuture> = updateByExternalId(id, params, RequestOptions.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( params: CustomerUpdateByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( params: CustomerUpdateByExternalIdParams ): CompletableFuture> = updateByExternalId(params, RequestOptions.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( id: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/DimensionalPriceGroupServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/DimensionalPriceGroupServiceAsync.kt index 3a885f38..1c2e4b22 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/DimensionalPriceGroupServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/DimensionalPriceGroupServiceAsync.kt @@ -43,7 +43,7 @@ interface DimensionalPriceGroupServiceAsync { params: DimensionalPriceGroupCreateParams ): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: DimensionalPriceGroupCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -53,7 +53,7 @@ interface DimensionalPriceGroupServiceAsync { fun retrieve(dimensionalPriceGroupId: String): CompletableFuture = retrieve(dimensionalPriceGroupId, DimensionalPriceGroupRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( dimensionalPriceGroupId: String, params: DimensionalPriceGroupRetrieveParams = DimensionalPriceGroupRetrieveParams.none(), @@ -64,25 +64,25 @@ interface DimensionalPriceGroupServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( dimensionalPriceGroupId: String, params: DimensionalPriceGroupRetrieveParams = DimensionalPriceGroupRetrieveParams.none(), ): CompletableFuture = retrieve(dimensionalPriceGroupId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( dimensionalPriceGroupId: String, requestOptions: RequestOptions, @@ -97,18 +97,18 @@ interface DimensionalPriceGroupServiceAsync { fun list(): CompletableFuture = list(DimensionalPriceGroupListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: DimensionalPriceGroupListParams = DimensionalPriceGroupListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: DimensionalPriceGroupListParams = DimensionalPriceGroupListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture = @@ -141,7 +141,7 @@ interface DimensionalPriceGroupServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: DimensionalPriceGroupCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -157,7 +157,7 @@ interface DimensionalPriceGroupServiceAsync { ): CompletableFuture> = retrieve(dimensionalPriceGroupId, DimensionalPriceGroupRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( dimensionalPriceGroupId: String, params: DimensionalPriceGroupRetrieveParams = @@ -169,26 +169,26 @@ interface DimensionalPriceGroupServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( dimensionalPriceGroupId: String, params: DimensionalPriceGroupRetrieveParams = DimensionalPriceGroupRetrieveParams.none(), ): CompletableFuture> = retrieve(dimensionalPriceGroupId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( dimensionalPriceGroupId: String, requestOptions: RequestOptions, @@ -206,19 +206,19 @@ interface DimensionalPriceGroupServiceAsync { fun list(): CompletableFuture> = list(DimensionalPriceGroupListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: DimensionalPriceGroupListParams = DimensionalPriceGroupListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: DimensionalPriceGroupListParams = DimensionalPriceGroupListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/EventServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/EventServiceAsync.kt index 637d8dee..974887b7 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/EventServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/EventServiceAsync.kt @@ -80,7 +80,7 @@ interface EventServiceAsync { fun update(eventId: String, params: EventUpdateParams): CompletableFuture = update(eventId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( eventId: String, params: EventUpdateParams, @@ -88,11 +88,11 @@ interface EventServiceAsync { ): CompletableFuture = update(params.toBuilder().eventId(eventId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update(params: EventUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: EventUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -137,7 +137,7 @@ interface EventServiceAsync { fun deprecate(eventId: String): CompletableFuture = deprecate(eventId, EventDeprecateParams.none()) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( eventId: String, params: EventDeprecateParams = EventDeprecateParams.none(), @@ -145,23 +145,23 @@ interface EventServiceAsync { ): CompletableFuture = deprecate(params.toBuilder().eventId(eventId).build(), requestOptions) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( eventId: String, params: EventDeprecateParams = EventDeprecateParams.none(), ): CompletableFuture = deprecate(eventId, params, RequestOptions.none()) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( params: EventDeprecateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate(params: EventDeprecateParams): CompletableFuture = deprecate(params, RequestOptions.none()) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( eventId: String, requestOptions: RequestOptions, @@ -362,7 +362,7 @@ interface EventServiceAsync { fun ingest(params: EventIngestParams): CompletableFuture = ingest(params, RequestOptions.none()) - /** @see [ingest] */ + /** @see ingest */ fun ingest( params: EventIngestParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -387,7 +387,7 @@ interface EventServiceAsync { fun search(params: EventSearchParams): CompletableFuture = search(params, RequestOptions.none()) - /** @see [search] */ + /** @see search */ fun search( params: EventSearchParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -419,7 +419,7 @@ interface EventServiceAsync { ): CompletableFuture> = update(eventId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( eventId: String, params: EventUpdateParams, @@ -427,13 +427,13 @@ interface EventServiceAsync { ): CompletableFuture> = update(params.toBuilder().eventId(eventId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( params: EventUpdateParams ): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: EventUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -446,7 +446,7 @@ interface EventServiceAsync { fun deprecate(eventId: String): CompletableFuture> = deprecate(eventId, EventDeprecateParams.none()) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( eventId: String, params: EventDeprecateParams = EventDeprecateParams.none(), @@ -454,26 +454,26 @@ interface EventServiceAsync { ): CompletableFuture> = deprecate(params.toBuilder().eventId(eventId).build(), requestOptions) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( eventId: String, params: EventDeprecateParams = EventDeprecateParams.none(), ): CompletableFuture> = deprecate(eventId, params, RequestOptions.none()) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( params: EventDeprecateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( params: EventDeprecateParams ): CompletableFuture> = deprecate(params, RequestOptions.none()) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( eventId: String, requestOptions: RequestOptions, @@ -489,7 +489,7 @@ interface EventServiceAsync { ): CompletableFuture> = ingest(params, RequestOptions.none()) - /** @see [ingest] */ + /** @see ingest */ fun ingest( params: EventIngestParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -504,7 +504,7 @@ interface EventServiceAsync { ): CompletableFuture> = search(params, RequestOptions.none()) - /** @see [search] */ + /** @see search */ fun search( params: EventSearchParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/InvoiceLineItemServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/InvoiceLineItemServiceAsync.kt index c26da1bf..6d20a0b7 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/InvoiceLineItemServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/InvoiceLineItemServiceAsync.kt @@ -32,7 +32,7 @@ interface InvoiceLineItemServiceAsync { params: InvoiceLineItemCreateParams ): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: InvoiceLineItemCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -62,7 +62,7 @@ interface InvoiceLineItemServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: InvoiceLineItemCreateParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/InvoiceServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/InvoiceServiceAsync.kt index 72b05d83..cbe1a1e5 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/InvoiceServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/InvoiceServiceAsync.kt @@ -38,22 +38,24 @@ interface InvoiceServiceAsync { fun create(params: InvoiceCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: InvoiceCreateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture /** - * This endpoint allows you to update the `metadata` property on an invoice. If you pass null - * for the metadata value, it will clear any existing metadata for that invoice. + * This endpoint allows you to update the `metadata`, `net_terms`, and `due_date` properties on + * an invoice. If you pass null for the metadata value, it will clear any existing metadata for + * that invoice. * - * `metadata` can be modified regardless of invoice state. + * `metadata` can be modified regardless of invoice state. `net_terms` and `due_date` can only + * be modified if the invoice is in a `draft` state. */ fun update(invoiceId: String): CompletableFuture = update(invoiceId, InvoiceUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( invoiceId: String, params: InvoiceUpdateParams = InvoiceUpdateParams.none(), @@ -61,23 +63,23 @@ interface InvoiceServiceAsync { ): CompletableFuture = update(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( invoiceId: String, params: InvoiceUpdateParams = InvoiceUpdateParams.none(), ): CompletableFuture = update(invoiceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: InvoiceUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: InvoiceUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(invoiceId: String, requestOptions: RequestOptions): CompletableFuture = update(invoiceId, InvoiceUpdateParams.none(), requestOptions) @@ -97,18 +99,18 @@ interface InvoiceServiceAsync { */ fun list(): CompletableFuture = list(InvoiceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: InvoiceListParams = InvoiceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: InvoiceListParams = InvoiceListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(InvoiceListParams.none(), requestOptions) @@ -118,7 +120,7 @@ interface InvoiceServiceAsync { fun fetch(invoiceId: String): CompletableFuture = fetch(invoiceId, InvoiceFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( invoiceId: String, params: InvoiceFetchParams = InvoiceFetchParams.none(), @@ -126,23 +128,23 @@ interface InvoiceServiceAsync { ): CompletableFuture = fetch(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( invoiceId: String, params: InvoiceFetchParams = InvoiceFetchParams.none(), ): CompletableFuture = fetch(invoiceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: InvoiceFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: InvoiceFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(invoiceId: String, requestOptions: RequestOptions): CompletableFuture = fetch(invoiceId, InvoiceFetchParams.none(), requestOptions) @@ -155,7 +157,7 @@ interface InvoiceServiceAsync { ): CompletableFuture = fetchUpcoming(params, RequestOptions.none()) - /** @see [fetchUpcoming] */ + /** @see fetchUpcoming */ fun fetchUpcoming( params: InvoiceFetchUpcomingParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -171,7 +173,7 @@ interface InvoiceServiceAsync { fun issue(invoiceId: String): CompletableFuture = issue(invoiceId, InvoiceIssueParams.none()) - /** @see [issue] */ + /** @see issue */ fun issue( invoiceId: String, params: InvoiceIssueParams = InvoiceIssueParams.none(), @@ -179,23 +181,23 @@ interface InvoiceServiceAsync { ): CompletableFuture = issue(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [issue] */ + /** @see issue */ fun issue( invoiceId: String, params: InvoiceIssueParams = InvoiceIssueParams.none(), ): CompletableFuture = issue(invoiceId, params, RequestOptions.none()) - /** @see [issue] */ + /** @see issue */ fun issue( params: InvoiceIssueParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [issue] */ + /** @see issue */ fun issue(params: InvoiceIssueParams): CompletableFuture = issue(params, RequestOptions.none()) - /** @see [issue] */ + /** @see issue */ fun issue(invoiceId: String, requestOptions: RequestOptions): CompletableFuture = issue(invoiceId, InvoiceIssueParams.none(), requestOptions) @@ -206,7 +208,7 @@ interface InvoiceServiceAsync { fun markPaid(invoiceId: String, params: InvoiceMarkPaidParams): CompletableFuture = markPaid(invoiceId, params, RequestOptions.none()) - /** @see [markPaid] */ + /** @see markPaid */ fun markPaid( invoiceId: String, params: InvoiceMarkPaidParams, @@ -214,11 +216,11 @@ interface InvoiceServiceAsync { ): CompletableFuture = markPaid(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [markPaid] */ + /** @see markPaid */ fun markPaid(params: InvoiceMarkPaidParams): CompletableFuture = markPaid(params, RequestOptions.none()) - /** @see [markPaid] */ + /** @see markPaid */ fun markPaid( params: InvoiceMarkPaidParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -230,7 +232,7 @@ interface InvoiceServiceAsync { */ fun pay(invoiceId: String): CompletableFuture = pay(invoiceId, InvoicePayParams.none()) - /** @see [pay] */ + /** @see pay */ fun pay( invoiceId: String, params: InvoicePayParams = InvoicePayParams.none(), @@ -238,23 +240,23 @@ interface InvoiceServiceAsync { ): CompletableFuture = pay(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [pay] */ + /** @see pay */ fun pay( invoiceId: String, params: InvoicePayParams = InvoicePayParams.none(), ): CompletableFuture = pay(invoiceId, params, RequestOptions.none()) - /** @see [pay] */ + /** @see pay */ fun pay( params: InvoicePayParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [pay] */ + /** @see pay */ fun pay(params: InvoicePayParams): CompletableFuture = pay(params, RequestOptions.none()) - /** @see [pay] */ + /** @see pay */ fun pay(invoiceId: String, requestOptions: RequestOptions): CompletableFuture = pay(invoiceId, InvoicePayParams.none(), requestOptions) @@ -273,7 +275,7 @@ interface InvoiceServiceAsync { fun voidInvoice(invoiceId: String): CompletableFuture = voidInvoice(invoiceId, InvoiceVoidInvoiceParams.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( invoiceId: String, params: InvoiceVoidInvoiceParams = InvoiceVoidInvoiceParams.none(), @@ -281,23 +283,23 @@ interface InvoiceServiceAsync { ): CompletableFuture = voidInvoice(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( invoiceId: String, params: InvoiceVoidInvoiceParams = InvoiceVoidInvoiceParams.none(), ): CompletableFuture = voidInvoice(invoiceId, params, RequestOptions.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( params: InvoiceVoidInvoiceParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice(params: InvoiceVoidInvoiceParams): CompletableFuture = voidInvoice(params, RequestOptions.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice(invoiceId: String, requestOptions: RequestOptions): CompletableFuture = voidInvoice(invoiceId, InvoiceVoidInvoiceParams.none(), requestOptions) @@ -322,7 +324,7 @@ interface InvoiceServiceAsync { fun create(params: InvoiceCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: InvoiceCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -335,7 +337,7 @@ interface InvoiceServiceAsync { fun update(invoiceId: String): CompletableFuture> = update(invoiceId, InvoiceUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( invoiceId: String, params: InvoiceUpdateParams = InvoiceUpdateParams.none(), @@ -343,24 +345,24 @@ interface InvoiceServiceAsync { ): CompletableFuture> = update(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( invoiceId: String, params: InvoiceUpdateParams = InvoiceUpdateParams.none(), ): CompletableFuture> = update(invoiceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: InvoiceUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update(params: InvoiceUpdateParams): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( invoiceId: String, requestOptions: RequestOptions, @@ -374,19 +376,19 @@ interface InvoiceServiceAsync { fun list(): CompletableFuture> = list(InvoiceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: InvoiceListParams = InvoiceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: InvoiceListParams = InvoiceListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -399,7 +401,7 @@ interface InvoiceServiceAsync { fun fetch(invoiceId: String): CompletableFuture> = fetch(invoiceId, InvoiceFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( invoiceId: String, params: InvoiceFetchParams = InvoiceFetchParams.none(), @@ -407,24 +409,24 @@ interface InvoiceServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( invoiceId: String, params: InvoiceFetchParams = InvoiceFetchParams.none(), ): CompletableFuture> = fetch(invoiceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: InvoiceFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: InvoiceFetchParams): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( invoiceId: String, requestOptions: RequestOptions, @@ -440,7 +442,7 @@ interface InvoiceServiceAsync { ): CompletableFuture> = fetchUpcoming(params, RequestOptions.none()) - /** @see [fetchUpcoming] */ + /** @see fetchUpcoming */ fun fetchUpcoming( params: InvoiceFetchUpcomingParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -453,7 +455,7 @@ interface InvoiceServiceAsync { fun issue(invoiceId: String): CompletableFuture> = issue(invoiceId, InvoiceIssueParams.none()) - /** @see [issue] */ + /** @see issue */ fun issue( invoiceId: String, params: InvoiceIssueParams = InvoiceIssueParams.none(), @@ -461,24 +463,24 @@ interface InvoiceServiceAsync { ): CompletableFuture> = issue(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [issue] */ + /** @see issue */ fun issue( invoiceId: String, params: InvoiceIssueParams = InvoiceIssueParams.none(), ): CompletableFuture> = issue(invoiceId, params, RequestOptions.none()) - /** @see [issue] */ + /** @see issue */ fun issue( params: InvoiceIssueParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [issue] */ + /** @see issue */ fun issue(params: InvoiceIssueParams): CompletableFuture> = issue(params, RequestOptions.none()) - /** @see [issue] */ + /** @see issue */ fun issue( invoiceId: String, requestOptions: RequestOptions, @@ -495,7 +497,7 @@ interface InvoiceServiceAsync { ): CompletableFuture> = markPaid(invoiceId, params, RequestOptions.none()) - /** @see [markPaid] */ + /** @see markPaid */ fun markPaid( invoiceId: String, params: InvoiceMarkPaidParams, @@ -503,11 +505,11 @@ interface InvoiceServiceAsync { ): CompletableFuture> = markPaid(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [markPaid] */ + /** @see markPaid */ fun markPaid(params: InvoiceMarkPaidParams): CompletableFuture> = markPaid(params, RequestOptions.none()) - /** @see [markPaid] */ + /** @see markPaid */ fun markPaid( params: InvoiceMarkPaidParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -520,7 +522,7 @@ interface InvoiceServiceAsync { fun pay(invoiceId: String): CompletableFuture> = pay(invoiceId, InvoicePayParams.none()) - /** @see [pay] */ + /** @see pay */ fun pay( invoiceId: String, params: InvoicePayParams = InvoicePayParams.none(), @@ -528,24 +530,24 @@ interface InvoiceServiceAsync { ): CompletableFuture> = pay(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [pay] */ + /** @see pay */ fun pay( invoiceId: String, params: InvoicePayParams = InvoicePayParams.none(), ): CompletableFuture> = pay(invoiceId, params, RequestOptions.none()) - /** @see [pay] */ + /** @see pay */ fun pay( params: InvoicePayParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [pay] */ + /** @see pay */ fun pay(params: InvoicePayParams): CompletableFuture> = pay(params, RequestOptions.none()) - /** @see [pay] */ + /** @see pay */ fun pay( invoiceId: String, requestOptions: RequestOptions, @@ -559,7 +561,7 @@ interface InvoiceServiceAsync { fun voidInvoice(invoiceId: String): CompletableFuture> = voidInvoice(invoiceId, InvoiceVoidInvoiceParams.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( invoiceId: String, params: InvoiceVoidInvoiceParams = InvoiceVoidInvoiceParams.none(), @@ -567,25 +569,25 @@ interface InvoiceServiceAsync { ): CompletableFuture> = voidInvoice(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( invoiceId: String, params: InvoiceVoidInvoiceParams = InvoiceVoidInvoiceParams.none(), ): CompletableFuture> = voidInvoice(invoiceId, params, RequestOptions.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( params: InvoiceVoidInvoiceParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( params: InvoiceVoidInvoiceParams ): CompletableFuture> = voidInvoice(params, RequestOptions.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( invoiceId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/ItemServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/ItemServiceAsync.kt index ecd14f7e..6ba89b36 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/ItemServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/ItemServiceAsync.kt @@ -33,7 +33,7 @@ interface ItemServiceAsync { fun create(params: ItemCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ItemCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -42,107 +42,107 @@ interface ItemServiceAsync { /** This endpoint can be used to update properties on the Item. */ fun update(itemId: String): CompletableFuture = update(itemId, ItemUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( itemId: String, params: ItemUpdateParams = ItemUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture = update(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( itemId: String, params: ItemUpdateParams = ItemUpdateParams.none(), ): CompletableFuture = update(itemId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: ItemUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: ItemUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(itemId: String, requestOptions: RequestOptions): CompletableFuture = update(itemId, ItemUpdateParams.none(), requestOptions) /** This endpoint returns a list of all Items, ordered in descending order by creation time. */ fun list(): CompletableFuture = list(ItemListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ItemListParams = ItemListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list(params: ItemListParams = ItemListParams.none()): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(ItemListParams.none(), requestOptions) /** Archive item */ fun archive(itemId: String): CompletableFuture = archive(itemId, ItemArchiveParams.none()) - /** @see [archive] */ + /** @see archive */ fun archive( itemId: String, params: ItemArchiveParams = ItemArchiveParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture = archive(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [archive] */ + /** @see archive */ fun archive( itemId: String, params: ItemArchiveParams = ItemArchiveParams.none(), ): CompletableFuture = archive(itemId, params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive( params: ItemArchiveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [archive] */ + /** @see archive */ fun archive(params: ItemArchiveParams): CompletableFuture = archive(params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive(itemId: String, requestOptions: RequestOptions): CompletableFuture = archive(itemId, ItemArchiveParams.none(), requestOptions) /** This endpoint returns an item identified by its item_id. */ fun fetch(itemId: String): CompletableFuture = fetch(itemId, ItemFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( itemId: String, params: ItemFetchParams = ItemFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture = fetch(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( itemId: String, params: ItemFetchParams = ItemFetchParams.none(), ): CompletableFuture = fetch(itemId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: ItemFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: ItemFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(itemId: String, requestOptions: RequestOptions): CompletableFuture = fetch(itemId, ItemFetchParams.none(), requestOptions) @@ -163,7 +163,7 @@ interface ItemServiceAsync { fun create(params: ItemCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ItemCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -176,7 +176,7 @@ interface ItemServiceAsync { fun update(itemId: String): CompletableFuture> = update(itemId, ItemUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( itemId: String, params: ItemUpdateParams = ItemUpdateParams.none(), @@ -184,23 +184,23 @@ interface ItemServiceAsync { ): CompletableFuture> = update(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( itemId: String, params: ItemUpdateParams = ItemUpdateParams.none(), ): CompletableFuture> = update(itemId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: ItemUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update(params: ItemUpdateParams): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( itemId: String, requestOptions: RequestOptions, @@ -214,19 +214,19 @@ interface ItemServiceAsync { fun list(): CompletableFuture> = list(ItemListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ItemListParams = ItemListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: ItemListParams = ItemListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -239,7 +239,7 @@ interface ItemServiceAsync { fun archive(itemId: String): CompletableFuture> = archive(itemId, ItemArchiveParams.none()) - /** @see [archive] */ + /** @see archive */ fun archive( itemId: String, params: ItemArchiveParams = ItemArchiveParams.none(), @@ -247,23 +247,23 @@ interface ItemServiceAsync { ): CompletableFuture> = archive(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [archive] */ + /** @see archive */ fun archive( itemId: String, params: ItemArchiveParams = ItemArchiveParams.none(), ): CompletableFuture> = archive(itemId, params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive( params: ItemArchiveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [archive] */ + /** @see archive */ fun archive(params: ItemArchiveParams): CompletableFuture> = archive(params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive( itemId: String, requestOptions: RequestOptions, @@ -277,7 +277,7 @@ interface ItemServiceAsync { fun fetch(itemId: String): CompletableFuture> = fetch(itemId, ItemFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( itemId: String, params: ItemFetchParams = ItemFetchParams.none(), @@ -285,23 +285,23 @@ interface ItemServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( itemId: String, params: ItemFetchParams = ItemFetchParams.none(), ): CompletableFuture> = fetch(itemId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: ItemFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: ItemFetchParams): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( itemId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/MetricServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/MetricServiceAsync.kt index ffb3fbd1..7e15b6dc 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/MetricServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/MetricServiceAsync.kt @@ -36,7 +36,7 @@ interface MetricServiceAsync { fun create(params: MetricCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: MetricCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -49,7 +49,7 @@ interface MetricServiceAsync { fun update(metricId: String): CompletableFuture = update(metricId, MetricUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( metricId: String, params: MetricUpdateParams = MetricUpdateParams.none(), @@ -57,23 +57,23 @@ interface MetricServiceAsync { ): CompletableFuture = update(params.toBuilder().metricId(metricId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( metricId: String, params: MetricUpdateParams = MetricUpdateParams.none(), ): CompletableFuture = update(metricId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: MetricUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: MetricUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( metricId: String, requestOptions: RequestOptions, @@ -87,18 +87,18 @@ interface MetricServiceAsync { */ fun list(): CompletableFuture = list(MetricListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: MetricListParams = MetricListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: MetricListParams = MetricListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(MetricListParams.none(), requestOptions) @@ -109,7 +109,7 @@ interface MetricServiceAsync { fun fetch(metricId: String): CompletableFuture = fetch(metricId, MetricFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( metricId: String, params: MetricFetchParams = MetricFetchParams.none(), @@ -117,23 +117,23 @@ interface MetricServiceAsync { ): CompletableFuture = fetch(params.toBuilder().metricId(metricId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( metricId: String, params: MetricFetchParams = MetricFetchParams.none(), ): CompletableFuture = fetch(metricId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: MetricFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: MetricFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(metricId: String, requestOptions: RequestOptions): CompletableFuture = fetch(metricId, MetricFetchParams.none(), requestOptions) @@ -158,7 +158,7 @@ interface MetricServiceAsync { fun create(params: MetricCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: MetricCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -171,7 +171,7 @@ interface MetricServiceAsync { fun update(metricId: String): CompletableFuture> = update(metricId, MetricUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( metricId: String, params: MetricUpdateParams = MetricUpdateParams.none(), @@ -179,24 +179,24 @@ interface MetricServiceAsync { ): CompletableFuture> = update(params.toBuilder().metricId(metricId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( metricId: String, params: MetricUpdateParams = MetricUpdateParams.none(), ): CompletableFuture> = update(metricId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: MetricUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update(params: MetricUpdateParams): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( metricId: String, requestOptions: RequestOptions, @@ -210,19 +210,19 @@ interface MetricServiceAsync { fun list(): CompletableFuture> = list(MetricListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: MetricListParams = MetricListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: MetricListParams = MetricListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -235,7 +235,7 @@ interface MetricServiceAsync { fun fetch(metricId: String): CompletableFuture> = fetch(metricId, MetricFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( metricId: String, params: MetricFetchParams = MetricFetchParams.none(), @@ -243,24 +243,24 @@ interface MetricServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().metricId(metricId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( metricId: String, params: MetricFetchParams = MetricFetchParams.none(), ): CompletableFuture> = fetch(metricId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: MetricFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: MetricFetchParams): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( metricId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/PlanServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/PlanServiceAsync.kt index 39b9d35c..e7d229b3 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/PlanServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/PlanServiceAsync.kt @@ -35,7 +35,7 @@ interface PlanServiceAsync { fun create(params: PlanCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: PlanCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -49,30 +49,30 @@ interface PlanServiceAsync { */ fun update(planId: String): CompletableFuture = update(planId, PlanUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( planId: String, params: PlanUpdateParams = PlanUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture = update(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( planId: String, params: PlanUpdateParams = PlanUpdateParams.none(), ): CompletableFuture = update(planId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PlanUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: PlanUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(planId: String, requestOptions: RequestOptions): CompletableFuture = update(planId, PlanUpdateParams.none(), requestOptions) @@ -84,17 +84,17 @@ interface PlanServiceAsync { */ fun list(): CompletableFuture = list(PlanListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: PlanListParams = PlanListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list(params: PlanListParams = PlanListParams.none()): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(PlanListParams.none(), requestOptions) @@ -118,30 +118,30 @@ interface PlanServiceAsync { */ fun fetch(planId: String): CompletableFuture = fetch(planId, PlanFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( planId: String, params: PlanFetchParams = PlanFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture = fetch(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( planId: String, params: PlanFetchParams = PlanFetchParams.none(), ): CompletableFuture = fetch(planId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PlanFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PlanFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(planId: String, requestOptions: RequestOptions): CompletableFuture = fetch(planId, PlanFetchParams.none(), requestOptions) @@ -164,7 +164,7 @@ interface PlanServiceAsync { fun create(params: PlanCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: PlanCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -177,7 +177,7 @@ interface PlanServiceAsync { fun update(planId: String): CompletableFuture> = update(planId, PlanUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( planId: String, params: PlanUpdateParams = PlanUpdateParams.none(), @@ -185,23 +185,23 @@ interface PlanServiceAsync { ): CompletableFuture> = update(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( planId: String, params: PlanUpdateParams = PlanUpdateParams.none(), ): CompletableFuture> = update(planId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PlanUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update(params: PlanUpdateParams): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( planId: String, requestOptions: RequestOptions, @@ -215,19 +215,19 @@ interface PlanServiceAsync { fun list(): CompletableFuture> = list(PlanListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: PlanListParams = PlanListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: PlanListParams = PlanListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -240,7 +240,7 @@ interface PlanServiceAsync { fun fetch(planId: String): CompletableFuture> = fetch(planId, PlanFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( planId: String, params: PlanFetchParams = PlanFetchParams.none(), @@ -248,23 +248,23 @@ interface PlanServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( planId: String, params: PlanFetchParams = PlanFetchParams.none(), ): CompletableFuture> = fetch(planId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PlanFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PlanFetchParams): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( planId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/PriceServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/PriceServiceAsync.kt index 8f59abf3..a1b0957b 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/PriceServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/PriceServiceAsync.kt @@ -52,7 +52,7 @@ interface PriceServiceAsync { fun create(params: PriceCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: PriceCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -65,7 +65,7 @@ interface PriceServiceAsync { fun update(priceId: String): CompletableFuture = update(priceId, PriceUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( priceId: String, params: PriceUpdateParams = PriceUpdateParams.none(), @@ -73,23 +73,23 @@ interface PriceServiceAsync { ): CompletableFuture = update(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( priceId: String, params: PriceUpdateParams = PriceUpdateParams.none(), ): CompletableFuture = update(priceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PriceUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: PriceUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(priceId: String, requestOptions: RequestOptions): CompletableFuture = update(priceId, PriceUpdateParams.none(), requestOptions) @@ -99,18 +99,18 @@ interface PriceServiceAsync { */ fun list(): CompletableFuture = list(PriceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: PriceListParams = PriceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: PriceListParams = PriceListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(PriceListParams.none(), requestOptions) @@ -141,7 +141,7 @@ interface PriceServiceAsync { params: PriceEvaluateParams, ): CompletableFuture = evaluate(priceId, params, RequestOptions.none()) - /** @see [evaluate] */ + /** @see evaluate */ fun evaluate( priceId: String, params: PriceEvaluateParams, @@ -149,11 +149,11 @@ interface PriceServiceAsync { ): CompletableFuture = evaluate(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [evaluate] */ + /** @see evaluate */ fun evaluate(params: PriceEvaluateParams): CompletableFuture = evaluate(params, RequestOptions.none()) - /** @see [evaluate] */ + /** @see evaluate */ fun evaluate( params: PriceEvaluateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -190,7 +190,7 @@ interface PriceServiceAsync { ): CompletableFuture = evaluateMultiple(params, RequestOptions.none()) - /** @see [evaluateMultiple] */ + /** @see evaluateMultiple */ fun evaluateMultiple( params: PriceEvaluateMultipleParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -218,7 +218,7 @@ interface PriceServiceAsync { ): CompletableFuture = evaluatePreviewEvents(params, RequestOptions.none()) - /** @see [evaluatePreviewEvents] */ + /** @see evaluatePreviewEvents */ fun evaluatePreviewEvents( params: PriceEvaluatePreviewEventsParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -227,30 +227,30 @@ interface PriceServiceAsync { /** This endpoint returns a price given an identifier. */ fun fetch(priceId: String): CompletableFuture = fetch(priceId, PriceFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( priceId: String, params: PriceFetchParams = PriceFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture = fetch(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( priceId: String, params: PriceFetchParams = PriceFetchParams.none(), ): CompletableFuture = fetch(priceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PriceFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PriceFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(priceId: String, requestOptions: RequestOptions): CompletableFuture = fetch(priceId, PriceFetchParams.none(), requestOptions) @@ -275,7 +275,7 @@ interface PriceServiceAsync { fun create(params: PriceCreateParams): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: PriceCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -288,7 +288,7 @@ interface PriceServiceAsync { fun update(priceId: String): CompletableFuture> = update(priceId, PriceUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( priceId: String, params: PriceUpdateParams = PriceUpdateParams.none(), @@ -296,24 +296,24 @@ interface PriceServiceAsync { ): CompletableFuture> = update(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( priceId: String, params: PriceUpdateParams = PriceUpdateParams.none(), ): CompletableFuture> = update(priceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PriceUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update(params: PriceUpdateParams): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( priceId: String, requestOptions: RequestOptions, @@ -327,19 +327,19 @@ interface PriceServiceAsync { fun list(): CompletableFuture> = list(PriceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: PriceListParams = PriceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: PriceListParams = PriceListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -355,7 +355,7 @@ interface PriceServiceAsync { ): CompletableFuture> = evaluate(priceId, params, RequestOptions.none()) - /** @see [evaluate] */ + /** @see evaluate */ fun evaluate( priceId: String, params: PriceEvaluateParams, @@ -363,13 +363,13 @@ interface PriceServiceAsync { ): CompletableFuture> = evaluate(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [evaluate] */ + /** @see evaluate */ fun evaluate( params: PriceEvaluateParams ): CompletableFuture> = evaluate(params, RequestOptions.none()) - /** @see [evaluate] */ + /** @see evaluate */ fun evaluate( params: PriceEvaluateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -384,7 +384,7 @@ interface PriceServiceAsync { ): CompletableFuture> = evaluateMultiple(params, RequestOptions.none()) - /** @see [evaluateMultiple] */ + /** @see evaluateMultiple */ fun evaluateMultiple( params: PriceEvaluateMultipleParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -399,7 +399,7 @@ interface PriceServiceAsync { ): CompletableFuture> = evaluatePreviewEvents(params, RequestOptions.none()) - /** @see [evaluatePreviewEvents] */ + /** @see evaluatePreviewEvents */ fun evaluatePreviewEvents( params: PriceEvaluatePreviewEventsParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -412,7 +412,7 @@ interface PriceServiceAsync { fun fetch(priceId: String): CompletableFuture> = fetch(priceId, PriceFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( priceId: String, params: PriceFetchParams = PriceFetchParams.none(), @@ -420,23 +420,23 @@ interface PriceServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( priceId: String, params: PriceFetchParams = PriceFetchParams.none(), ): CompletableFuture> = fetch(priceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PriceFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PriceFetchParams): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( priceId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/SubscriptionChangeServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/SubscriptionChangeServiceAsync.kt index 12b5b156..2e521201 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/SubscriptionChangeServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/SubscriptionChangeServiceAsync.kt @@ -43,7 +43,7 @@ interface SubscriptionChangeServiceAsync { ): CompletableFuture = retrieve(subscriptionChangeId, SubscriptionChangeRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( subscriptionChangeId: String, params: SubscriptionChangeRetrieveParams = SubscriptionChangeRetrieveParams.none(), @@ -54,26 +54,26 @@ interface SubscriptionChangeServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( subscriptionChangeId: String, params: SubscriptionChangeRetrieveParams = SubscriptionChangeRetrieveParams.none(), ): CompletableFuture = retrieve(subscriptionChangeId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: SubscriptionChangeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: SubscriptionChangeRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( subscriptionChangeId: String, requestOptions: RequestOptions, @@ -88,7 +88,7 @@ interface SubscriptionChangeServiceAsync { fun apply(subscriptionChangeId: String): CompletableFuture = apply(subscriptionChangeId, SubscriptionChangeApplyParams.none()) - /** @see [apply] */ + /** @see apply */ fun apply( subscriptionChangeId: String, params: SubscriptionChangeApplyParams = SubscriptionChangeApplyParams.none(), @@ -96,25 +96,25 @@ interface SubscriptionChangeServiceAsync { ): CompletableFuture = apply(params.toBuilder().subscriptionChangeId(subscriptionChangeId).build(), requestOptions) - /** @see [apply] */ + /** @see apply */ fun apply( subscriptionChangeId: String, params: SubscriptionChangeApplyParams = SubscriptionChangeApplyParams.none(), ): CompletableFuture = apply(subscriptionChangeId, params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ fun apply( params: SubscriptionChangeApplyParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [apply] */ + /** @see apply */ fun apply( params: SubscriptionChangeApplyParams ): CompletableFuture = apply(params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ fun apply( subscriptionChangeId: String, requestOptions: RequestOptions, @@ -129,7 +129,7 @@ interface SubscriptionChangeServiceAsync { fun cancel(subscriptionChangeId: String): CompletableFuture = cancel(subscriptionChangeId, SubscriptionChangeCancelParams.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionChangeId: String, params: SubscriptionChangeCancelParams = SubscriptionChangeCancelParams.none(), @@ -140,25 +140,25 @@ interface SubscriptionChangeServiceAsync { requestOptions, ) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionChangeId: String, params: SubscriptionChangeCancelParams = SubscriptionChangeCancelParams.none(), ): CompletableFuture = cancel(subscriptionChangeId, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: SubscriptionChangeCancelParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: SubscriptionChangeCancelParams ): CompletableFuture = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionChangeId: String, requestOptions: RequestOptions, @@ -189,7 +189,7 @@ interface SubscriptionChangeServiceAsync { ): CompletableFuture> = retrieve(subscriptionChangeId, SubscriptionChangeRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( subscriptionChangeId: String, params: SubscriptionChangeRetrieveParams = SubscriptionChangeRetrieveParams.none(), @@ -200,26 +200,26 @@ interface SubscriptionChangeServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( subscriptionChangeId: String, params: SubscriptionChangeRetrieveParams = SubscriptionChangeRetrieveParams.none(), ): CompletableFuture> = retrieve(subscriptionChangeId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: SubscriptionChangeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: SubscriptionChangeRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( subscriptionChangeId: String, requestOptions: RequestOptions, @@ -236,7 +236,7 @@ interface SubscriptionChangeServiceAsync { ): CompletableFuture> = apply(subscriptionChangeId, SubscriptionChangeApplyParams.none()) - /** @see [apply] */ + /** @see apply */ fun apply( subscriptionChangeId: String, params: SubscriptionChangeApplyParams = SubscriptionChangeApplyParams.none(), @@ -247,26 +247,26 @@ interface SubscriptionChangeServiceAsync { requestOptions, ) - /** @see [apply] */ + /** @see apply */ fun apply( subscriptionChangeId: String, params: SubscriptionChangeApplyParams = SubscriptionChangeApplyParams.none(), ): CompletableFuture> = apply(subscriptionChangeId, params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ fun apply( params: SubscriptionChangeApplyParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [apply] */ + /** @see apply */ fun apply( params: SubscriptionChangeApplyParams ): CompletableFuture> = apply(params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ fun apply( subscriptionChangeId: String, requestOptions: RequestOptions, @@ -283,7 +283,7 @@ interface SubscriptionChangeServiceAsync { ): CompletableFuture> = cancel(subscriptionChangeId, SubscriptionChangeCancelParams.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionChangeId: String, params: SubscriptionChangeCancelParams = SubscriptionChangeCancelParams.none(), @@ -294,26 +294,26 @@ interface SubscriptionChangeServiceAsync { requestOptions, ) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionChangeId: String, params: SubscriptionChangeCancelParams = SubscriptionChangeCancelParams.none(), ): CompletableFuture> = cancel(subscriptionChangeId, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: SubscriptionChangeCancelParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: SubscriptionChangeCancelParams ): CompletableFuture> = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionChangeId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/SubscriptionServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/SubscriptionServiceAsync.kt index 62f384c2..3856014f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/SubscriptionServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/SubscriptionServiceAsync.kt @@ -285,18 +285,18 @@ interface SubscriptionServiceAsync { */ fun create(): CompletableFuture = create(SubscriptionCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( params: SubscriptionCreateParams = SubscriptionCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [create] */ + /** @see create */ fun create( params: SubscriptionCreateParams = SubscriptionCreateParams.none() ): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create(requestOptions: RequestOptions): CompletableFuture = create(SubscriptionCreateParams.none(), requestOptions) @@ -307,7 +307,7 @@ interface SubscriptionServiceAsync { fun update(subscriptionId: String): CompletableFuture = update(subscriptionId, SubscriptionUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( subscriptionId: String, params: SubscriptionUpdateParams = SubscriptionUpdateParams.none(), @@ -315,23 +315,23 @@ interface SubscriptionServiceAsync { ): CompletableFuture = update(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( subscriptionId: String, params: SubscriptionUpdateParams = SubscriptionUpdateParams.none(), ): CompletableFuture = update(subscriptionId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: SubscriptionUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: SubscriptionUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( subscriptionId: String, requestOptions: RequestOptions, @@ -350,18 +350,18 @@ interface SubscriptionServiceAsync { */ fun list(): CompletableFuture = list(SubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: SubscriptionListParams = SubscriptionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: SubscriptionListParams = SubscriptionListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(SubscriptionListParams.none(), requestOptions) @@ -424,7 +424,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = cancel(subscriptionId, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionId: String, params: SubscriptionCancelParams, @@ -432,11 +432,11 @@ interface SubscriptionServiceAsync { ): CompletableFuture = cancel(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [cancel] */ + /** @see cancel */ fun cancel(params: SubscriptionCancelParams): CompletableFuture = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: SubscriptionCancelParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -449,7 +449,7 @@ interface SubscriptionServiceAsync { fun fetch(subscriptionId: String): CompletableFuture = fetch(subscriptionId, SubscriptionFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( subscriptionId: String, params: SubscriptionFetchParams = SubscriptionFetchParams.none(), @@ -457,23 +457,23 @@ interface SubscriptionServiceAsync { ): CompletableFuture = fetch(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( subscriptionId: String, params: SubscriptionFetchParams = SubscriptionFetchParams.none(), ): CompletableFuture = fetch(subscriptionId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: SubscriptionFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: SubscriptionFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( subscriptionId: String, requestOptions: RequestOptions, @@ -494,7 +494,7 @@ interface SubscriptionServiceAsync { fun fetchCosts(subscriptionId: String): CompletableFuture = fetchCosts(subscriptionId, SubscriptionFetchCostsParams.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( subscriptionId: String, params: SubscriptionFetchCostsParams = SubscriptionFetchCostsParams.none(), @@ -502,25 +502,25 @@ interface SubscriptionServiceAsync { ): CompletableFuture = fetchCosts(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( subscriptionId: String, params: SubscriptionFetchCostsParams = SubscriptionFetchCostsParams.none(), ): CompletableFuture = fetchCosts(subscriptionId, params, RequestOptions.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( params: SubscriptionFetchCostsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( params: SubscriptionFetchCostsParams ): CompletableFuture = fetchCosts(params, RequestOptions.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( subscriptionId: String, requestOptions: RequestOptions, @@ -537,7 +537,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = fetchSchedule(subscriptionId, SubscriptionFetchScheduleParams.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( subscriptionId: String, params: SubscriptionFetchScheduleParams = SubscriptionFetchScheduleParams.none(), @@ -545,26 +545,26 @@ interface SubscriptionServiceAsync { ): CompletableFuture = fetchSchedule(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( subscriptionId: String, params: SubscriptionFetchScheduleParams = SubscriptionFetchScheduleParams.none(), ): CompletableFuture = fetchSchedule(subscriptionId, params, RequestOptions.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( params: SubscriptionFetchScheduleParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( params: SubscriptionFetchScheduleParams ): CompletableFuture = fetchSchedule(params, RequestOptions.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( subscriptionId: String, requestOptions: RequestOptions, @@ -751,7 +751,7 @@ interface SubscriptionServiceAsync { fun fetchUsage(subscriptionId: String): CompletableFuture = fetchUsage(subscriptionId, SubscriptionFetchUsageParams.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( subscriptionId: String, params: SubscriptionFetchUsageParams = SubscriptionFetchUsageParams.none(), @@ -759,24 +759,24 @@ interface SubscriptionServiceAsync { ): CompletableFuture = fetchUsage(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( subscriptionId: String, params: SubscriptionFetchUsageParams = SubscriptionFetchUsageParams.none(), ): CompletableFuture = fetchUsage(subscriptionId, params, RequestOptions.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( params: SubscriptionFetchUsageParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage(params: SubscriptionFetchUsageParams): CompletableFuture = fetchUsage(params, RequestOptions.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( subscriptionId: String, requestOptions: RequestOptions, @@ -853,7 +853,7 @@ interface SubscriptionServiceAsync { fun priceIntervals(subscriptionId: String): CompletableFuture = priceIntervals(subscriptionId, SubscriptionPriceIntervalsParams.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( subscriptionId: String, params: SubscriptionPriceIntervalsParams = SubscriptionPriceIntervalsParams.none(), @@ -861,25 +861,25 @@ interface SubscriptionServiceAsync { ): CompletableFuture = priceIntervals(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( subscriptionId: String, params: SubscriptionPriceIntervalsParams = SubscriptionPriceIntervalsParams.none(), ): CompletableFuture = priceIntervals(subscriptionId, params, RequestOptions.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( params: SubscriptionPriceIntervalsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( params: SubscriptionPriceIntervalsParams ): CompletableFuture = priceIntervals(params, RequestOptions.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( subscriptionId: String, requestOptions: RequestOptions, @@ -893,7 +893,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = redeemCoupon(subscriptionId, params, RequestOptions.none()) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ fun redeemCoupon( subscriptionId: String, params: SubscriptionRedeemCouponParams, @@ -901,12 +901,12 @@ interface SubscriptionServiceAsync { ): CompletableFuture = redeemCoupon(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ fun redeemCoupon( params: SubscriptionRedeemCouponParams ): CompletableFuture = redeemCoupon(params, RequestOptions.none()) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ fun redeemCoupon( params: SubscriptionRedeemCouponParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1084,7 +1084,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = schedulePlanChange(subscriptionId, params, RequestOptions.none()) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ fun schedulePlanChange( subscriptionId: String, params: SubscriptionSchedulePlanChangeParams, @@ -1095,12 +1095,12 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ fun schedulePlanChange( params: SubscriptionSchedulePlanChangeParams ): CompletableFuture = schedulePlanChange(params, RequestOptions.none()) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ fun schedulePlanChange( params: SubscriptionSchedulePlanChangeParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1112,7 +1112,7 @@ interface SubscriptionServiceAsync { fun triggerPhase(subscriptionId: String): CompletableFuture = triggerPhase(subscriptionId, SubscriptionTriggerPhaseParams.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( subscriptionId: String, params: SubscriptionTriggerPhaseParams = SubscriptionTriggerPhaseParams.none(), @@ -1120,25 +1120,25 @@ interface SubscriptionServiceAsync { ): CompletableFuture = triggerPhase(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( subscriptionId: String, params: SubscriptionTriggerPhaseParams = SubscriptionTriggerPhaseParams.none(), ): CompletableFuture = triggerPhase(subscriptionId, params, RequestOptions.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( params: SubscriptionTriggerPhaseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( params: SubscriptionTriggerPhaseParams ): CompletableFuture = triggerPhase(params, RequestOptions.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( subscriptionId: String, requestOptions: RequestOptions, @@ -1155,7 +1155,7 @@ interface SubscriptionServiceAsync { fun unscheduleCancellation(subscriptionId: String): CompletableFuture = unscheduleCancellation(subscriptionId, SubscriptionUnscheduleCancellationParams.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( subscriptionId: String, params: SubscriptionUnscheduleCancellationParams = @@ -1167,7 +1167,7 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( subscriptionId: String, params: SubscriptionUnscheduleCancellationParams = @@ -1175,19 +1175,19 @@ interface SubscriptionServiceAsync { ): CompletableFuture = unscheduleCancellation(subscriptionId, params, RequestOptions.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( params: SubscriptionUnscheduleCancellationParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( params: SubscriptionUnscheduleCancellationParams ): CompletableFuture = unscheduleCancellation(params, RequestOptions.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( subscriptionId: String, requestOptions: RequestOptions, @@ -1210,7 +1210,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = unscheduleFixedFeeQuantityUpdates(subscriptionId, params, RequestOptions.none()) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ fun unscheduleFixedFeeQuantityUpdates( subscriptionId: String, params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams, @@ -1221,13 +1221,13 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ fun unscheduleFixedFeeQuantityUpdates( params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams ): CompletableFuture = unscheduleFixedFeeQuantityUpdates(params, RequestOptions.none()) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ fun unscheduleFixedFeeQuantityUpdates( params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1245,7 +1245,7 @@ interface SubscriptionServiceAsync { SubscriptionUnschedulePendingPlanChangesParams.none(), ) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( subscriptionId: String, params: SubscriptionUnschedulePendingPlanChangesParams = @@ -1257,7 +1257,7 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( subscriptionId: String, params: SubscriptionUnschedulePendingPlanChangesParams = @@ -1265,19 +1265,19 @@ interface SubscriptionServiceAsync { ): CompletableFuture = unschedulePendingPlanChanges(subscriptionId, params, RequestOptions.none()) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( params: SubscriptionUnschedulePendingPlanChangesParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( params: SubscriptionUnschedulePendingPlanChangesParams ): CompletableFuture = unschedulePendingPlanChanges(params, RequestOptions.none()) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( subscriptionId: String, requestOptions: RequestOptions, @@ -1308,7 +1308,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = updateFixedFeeQuantity(subscriptionId, params, RequestOptions.none()) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ fun updateFixedFeeQuantity( subscriptionId: String, params: SubscriptionUpdateFixedFeeQuantityParams, @@ -1319,13 +1319,13 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ fun updateFixedFeeQuantity( params: SubscriptionUpdateFixedFeeQuantityParams ): CompletableFuture = updateFixedFeeQuantity(params, RequestOptions.none()) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ fun updateFixedFeeQuantity( params: SubscriptionUpdateFixedFeeQuantityParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1355,7 +1355,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture = updateTrial(subscriptionId, params, RequestOptions.none()) - /** @see [updateTrial] */ + /** @see updateTrial */ fun updateTrial( subscriptionId: String, params: SubscriptionUpdateTrialParams, @@ -1363,11 +1363,11 @@ interface SubscriptionServiceAsync { ): CompletableFuture = updateTrial(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [updateTrial] */ + /** @see updateTrial */ fun updateTrial(params: SubscriptionUpdateTrialParams): CompletableFuture = updateTrial(params, RequestOptions.none()) - /** @see [updateTrial] */ + /** @see updateTrial */ fun updateTrial( params: SubscriptionUpdateTrialParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1395,19 +1395,19 @@ interface SubscriptionServiceAsync { fun create(): CompletableFuture> = create(SubscriptionCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( params: SubscriptionCreateParams = SubscriptionCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [create] */ + /** @see create */ fun create( params: SubscriptionCreateParams = SubscriptionCreateParams.none() ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( requestOptions: RequestOptions ): CompletableFuture> = @@ -1420,7 +1420,7 @@ interface SubscriptionServiceAsync { fun update(subscriptionId: String): CompletableFuture> = update(subscriptionId, SubscriptionUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( subscriptionId: String, params: SubscriptionUpdateParams = SubscriptionUpdateParams.none(), @@ -1428,25 +1428,25 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = update(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( subscriptionId: String, params: SubscriptionUpdateParams = SubscriptionUpdateParams.none(), ): CompletableFuture> = update(subscriptionId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: SubscriptionUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update( params: SubscriptionUpdateParams ): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( subscriptionId: String, requestOptions: RequestOptions, @@ -1460,19 +1460,19 @@ interface SubscriptionServiceAsync { fun list(): CompletableFuture> = list(SubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: SubscriptionListParams = SubscriptionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: SubscriptionListParams = SubscriptionListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -1488,7 +1488,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = cancel(subscriptionId, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionId: String, params: SubscriptionCancelParams, @@ -1496,13 +1496,13 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = cancel(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: SubscriptionCancelParams ): CompletableFuture> = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: SubscriptionCancelParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1515,7 +1515,7 @@ interface SubscriptionServiceAsync { fun fetch(subscriptionId: String): CompletableFuture> = fetch(subscriptionId, SubscriptionFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( subscriptionId: String, params: SubscriptionFetchParams = SubscriptionFetchParams.none(), @@ -1523,25 +1523,25 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( subscriptionId: String, params: SubscriptionFetchParams = SubscriptionFetchParams.none(), ): CompletableFuture> = fetch(subscriptionId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: SubscriptionFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: SubscriptionFetchParams ): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( subscriptionId: String, requestOptions: RequestOptions, @@ -1557,7 +1557,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = fetchCosts(subscriptionId, SubscriptionFetchCostsParams.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( subscriptionId: String, params: SubscriptionFetchCostsParams = SubscriptionFetchCostsParams.none(), @@ -1565,26 +1565,26 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = fetchCosts(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( subscriptionId: String, params: SubscriptionFetchCostsParams = SubscriptionFetchCostsParams.none(), ): CompletableFuture> = fetchCosts(subscriptionId, params, RequestOptions.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( params: SubscriptionFetchCostsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( params: SubscriptionFetchCostsParams ): CompletableFuture> = fetchCosts(params, RequestOptions.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( subscriptionId: String, requestOptions: RequestOptions, @@ -1600,7 +1600,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = fetchSchedule(subscriptionId, SubscriptionFetchScheduleParams.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( subscriptionId: String, params: SubscriptionFetchScheduleParams = SubscriptionFetchScheduleParams.none(), @@ -1608,26 +1608,26 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = fetchSchedule(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( subscriptionId: String, params: SubscriptionFetchScheduleParams = SubscriptionFetchScheduleParams.none(), ): CompletableFuture> = fetchSchedule(subscriptionId, params, RequestOptions.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( params: SubscriptionFetchScheduleParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( params: SubscriptionFetchScheduleParams ): CompletableFuture> = fetchSchedule(params, RequestOptions.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( subscriptionId: String, requestOptions: RequestOptions, @@ -1643,7 +1643,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = fetchUsage(subscriptionId, SubscriptionFetchUsageParams.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( subscriptionId: String, params: SubscriptionFetchUsageParams = SubscriptionFetchUsageParams.none(), @@ -1651,26 +1651,26 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = fetchUsage(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( subscriptionId: String, params: SubscriptionFetchUsageParams = SubscriptionFetchUsageParams.none(), ): CompletableFuture> = fetchUsage(subscriptionId, params, RequestOptions.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( params: SubscriptionFetchUsageParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( params: SubscriptionFetchUsageParams ): CompletableFuture> = fetchUsage(params, RequestOptions.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( subscriptionId: String, requestOptions: RequestOptions, @@ -1686,7 +1686,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = priceIntervals(subscriptionId, SubscriptionPriceIntervalsParams.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( subscriptionId: String, params: SubscriptionPriceIntervalsParams = SubscriptionPriceIntervalsParams.none(), @@ -1697,26 +1697,26 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( subscriptionId: String, params: SubscriptionPriceIntervalsParams = SubscriptionPriceIntervalsParams.none(), ): CompletableFuture> = priceIntervals(subscriptionId, params, RequestOptions.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( params: SubscriptionPriceIntervalsParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( params: SubscriptionPriceIntervalsParams ): CompletableFuture> = priceIntervals(params, RequestOptions.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( subscriptionId: String, requestOptions: RequestOptions, @@ -1733,7 +1733,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = redeemCoupon(subscriptionId, params, RequestOptions.none()) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ fun redeemCoupon( subscriptionId: String, params: SubscriptionRedeemCouponParams, @@ -1741,13 +1741,13 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = redeemCoupon(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ fun redeemCoupon( params: SubscriptionRedeemCouponParams ): CompletableFuture> = redeemCoupon(params, RequestOptions.none()) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ fun redeemCoupon( params: SubscriptionRedeemCouponParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1764,7 +1764,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = schedulePlanChange(subscriptionId, params, RequestOptions.none()) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ fun schedulePlanChange( subscriptionId: String, params: SubscriptionSchedulePlanChangeParams, @@ -1775,13 +1775,13 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ fun schedulePlanChange( params: SubscriptionSchedulePlanChangeParams ): CompletableFuture> = schedulePlanChange(params, RequestOptions.none()) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ fun schedulePlanChange( params: SubscriptionSchedulePlanChangeParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1796,7 +1796,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = triggerPhase(subscriptionId, SubscriptionTriggerPhaseParams.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( subscriptionId: String, params: SubscriptionTriggerPhaseParams = SubscriptionTriggerPhaseParams.none(), @@ -1804,26 +1804,26 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = triggerPhase(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( subscriptionId: String, params: SubscriptionTriggerPhaseParams = SubscriptionTriggerPhaseParams.none(), ): CompletableFuture> = triggerPhase(subscriptionId, params, RequestOptions.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( params: SubscriptionTriggerPhaseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( params: SubscriptionTriggerPhaseParams ): CompletableFuture> = triggerPhase(params, RequestOptions.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( subscriptionId: String, requestOptions: RequestOptions, @@ -1840,7 +1840,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = unscheduleCancellation(subscriptionId, SubscriptionUnscheduleCancellationParams.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( subscriptionId: String, params: SubscriptionUnscheduleCancellationParams = @@ -1852,7 +1852,7 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( subscriptionId: String, params: SubscriptionUnscheduleCancellationParams = @@ -1860,19 +1860,19 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = unscheduleCancellation(subscriptionId, params, RequestOptions.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( params: SubscriptionUnscheduleCancellationParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( params: SubscriptionUnscheduleCancellationParams ): CompletableFuture> = unscheduleCancellation(params, RequestOptions.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( subscriptionId: String, requestOptions: RequestOptions, @@ -1894,7 +1894,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = unscheduleFixedFeeQuantityUpdates(subscriptionId, params, RequestOptions.none()) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ fun unscheduleFixedFeeQuantityUpdates( subscriptionId: String, params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams, @@ -1905,13 +1905,13 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ fun unscheduleFixedFeeQuantityUpdates( params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams ): CompletableFuture> = unscheduleFixedFeeQuantityUpdates(params, RequestOptions.none()) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ fun unscheduleFixedFeeQuantityUpdates( params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1930,7 +1930,7 @@ interface SubscriptionServiceAsync { SubscriptionUnschedulePendingPlanChangesParams.none(), ) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( subscriptionId: String, params: SubscriptionUnschedulePendingPlanChangesParams = @@ -1942,7 +1942,7 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( subscriptionId: String, params: SubscriptionUnschedulePendingPlanChangesParams = @@ -1950,19 +1950,19 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = unschedulePendingPlanChanges(subscriptionId, params, RequestOptions.none()) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( params: SubscriptionUnschedulePendingPlanChangesParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( params: SubscriptionUnschedulePendingPlanChangesParams ): CompletableFuture> = unschedulePendingPlanChanges(params, RequestOptions.none()) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( subscriptionId: String, requestOptions: RequestOptions, @@ -1984,7 +1984,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = updateFixedFeeQuantity(subscriptionId, params, RequestOptions.none()) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ fun updateFixedFeeQuantity( subscriptionId: String, params: SubscriptionUpdateFixedFeeQuantityParams, @@ -1995,13 +1995,13 @@ interface SubscriptionServiceAsync { requestOptions, ) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ fun updateFixedFeeQuantity( params: SubscriptionUpdateFixedFeeQuantityParams ): CompletableFuture> = updateFixedFeeQuantity(params, RequestOptions.none()) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ fun updateFixedFeeQuantity( params: SubscriptionUpdateFixedFeeQuantityParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -2017,7 +2017,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = updateTrial(subscriptionId, params, RequestOptions.none()) - /** @see [updateTrial] */ + /** @see updateTrial */ fun updateTrial( subscriptionId: String, params: SubscriptionUpdateTrialParams, @@ -2025,13 +2025,13 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = updateTrial(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [updateTrial] */ + /** @see updateTrial */ fun updateTrial( params: SubscriptionUpdateTrialParams ): CompletableFuture> = updateTrial(params, RequestOptions.none()) - /** @see [updateTrial] */ + /** @see updateTrial */ fun updateTrial( params: SubscriptionUpdateTrialParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/TopLevelServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/TopLevelServiceAsync.kt index c1f036fd..5387314e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/TopLevelServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/TopLevelServiceAsync.kt @@ -34,18 +34,18 @@ interface TopLevelServiceAsync { */ fun ping(): CompletableFuture = ping(TopLevelPingParams.none()) - /** @see [ping] */ + /** @see ping */ fun ping( params: TopLevelPingParams = TopLevelPingParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [ping] */ + /** @see ping */ fun ping( params: TopLevelPingParams = TopLevelPingParams.none() ): CompletableFuture = ping(params, RequestOptions.none()) - /** @see [ping] */ + /** @see ping */ fun ping(requestOptions: RequestOptions): CompletableFuture = ping(TopLevelPingParams.none(), requestOptions) @@ -70,19 +70,19 @@ interface TopLevelServiceAsync { fun ping(): CompletableFuture> = ping(TopLevelPingParams.none()) - /** @see [ping] */ + /** @see ping */ fun ping( params: TopLevelPingParams = TopLevelPingParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [ping] */ + /** @see ping */ fun ping( params: TopLevelPingParams = TopLevelPingParams.none() ): CompletableFuture> = ping(params, RequestOptions.none()) - /** @see [ping] */ + /** @see ping */ fun ping( requestOptions: RequestOptions ): CompletableFuture> = diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/beta/ExternalPlanIdServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/beta/ExternalPlanIdServiceAsync.kt index eb64f2e3..e1ae6689 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/beta/ExternalPlanIdServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/beta/ExternalPlanIdServiceAsync.kt @@ -39,7 +39,7 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture = createPlanVersion(externalPlanId, params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( externalPlanId: String, params: BetaExternalPlanIdCreatePlanVersionParams, @@ -47,12 +47,12 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture = createPlanVersion(params.toBuilder().externalPlanId(externalPlanId).build(), requestOptions) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( params: BetaExternalPlanIdCreatePlanVersionParams ): CompletableFuture = createPlanVersion(params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( params: BetaExternalPlanIdCreatePlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -70,7 +70,7 @@ interface ExternalPlanIdServiceAsync { params: BetaExternalPlanIdFetchPlanVersionParams, ): CompletableFuture = fetchPlanVersion(version, params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( version: String, params: BetaExternalPlanIdFetchPlanVersionParams, @@ -78,12 +78,12 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture = fetchPlanVersion(params.toBuilder().version(version).build(), requestOptions) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( params: BetaExternalPlanIdFetchPlanVersionParams ): CompletableFuture = fetchPlanVersion(params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( params: BetaExternalPlanIdFetchPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -101,7 +101,7 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture = setDefaultPlanVersion(externalPlanId, params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( externalPlanId: String, params: BetaExternalPlanIdSetDefaultPlanVersionParams, @@ -112,12 +112,12 @@ interface ExternalPlanIdServiceAsync { requestOptions, ) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( params: BetaExternalPlanIdSetDefaultPlanVersionParams ): CompletableFuture = setDefaultPlanVersion(params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( params: BetaExternalPlanIdSetDefaultPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -149,7 +149,7 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture> = createPlanVersion(externalPlanId, params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( externalPlanId: String, params: BetaExternalPlanIdCreatePlanVersionParams, @@ -160,13 +160,13 @@ interface ExternalPlanIdServiceAsync { requestOptions, ) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( params: BetaExternalPlanIdCreatePlanVersionParams ): CompletableFuture> = createPlanVersion(params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( params: BetaExternalPlanIdCreatePlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -183,7 +183,7 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture> = fetchPlanVersion(version, params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( version: String, params: BetaExternalPlanIdFetchPlanVersionParams, @@ -191,13 +191,13 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture> = fetchPlanVersion(params.toBuilder().version(version).build(), requestOptions) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( params: BetaExternalPlanIdFetchPlanVersionParams ): CompletableFuture> = fetchPlanVersion(params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( params: BetaExternalPlanIdFetchPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -214,7 +214,7 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture> = setDefaultPlanVersion(externalPlanId, params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( externalPlanId: String, params: BetaExternalPlanIdSetDefaultPlanVersionParams, @@ -225,13 +225,13 @@ interface ExternalPlanIdServiceAsync { requestOptions, ) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( params: BetaExternalPlanIdSetDefaultPlanVersionParams ): CompletableFuture> = setDefaultPlanVersion(params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( params: BetaExternalPlanIdSetDefaultPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/coupons/SubscriptionServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/coupons/SubscriptionServiceAsync.kt index 90d38be3..30c2d43d 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/coupons/SubscriptionServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/coupons/SubscriptionServiceAsync.kt @@ -33,7 +33,7 @@ interface SubscriptionServiceAsync { fun list(couponId: String): CompletableFuture = list(couponId, CouponSubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( couponId: String, params: CouponSubscriptionListParams = CouponSubscriptionListParams.none(), @@ -41,25 +41,25 @@ interface SubscriptionServiceAsync { ): CompletableFuture = list(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( couponId: String, params: CouponSubscriptionListParams = CouponSubscriptionListParams.none(), ): CompletableFuture = list(couponId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CouponSubscriptionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CouponSubscriptionListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( couponId: String, requestOptions: RequestOptions, @@ -90,7 +90,7 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = list(couponId, CouponSubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( couponId: String, params: CouponSubscriptionListParams = CouponSubscriptionListParams.none(), @@ -98,26 +98,26 @@ interface SubscriptionServiceAsync { ): CompletableFuture> = list(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( couponId: String, params: CouponSubscriptionListParams = CouponSubscriptionListParams.none(), ): CompletableFuture> = list(couponId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CouponSubscriptionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CouponSubscriptionListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( couponId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/BalanceTransactionServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/BalanceTransactionServiceAsync.kt index 6cce09b2..8fa16a1f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/BalanceTransactionServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/BalanceTransactionServiceAsync.kt @@ -36,7 +36,7 @@ interface BalanceTransactionServiceAsync { ): CompletableFuture = create(customerId, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( customerId: String, params: CustomerBalanceTransactionCreateParams, @@ -44,13 +44,13 @@ interface BalanceTransactionServiceAsync { ): CompletableFuture = create(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create( params: CustomerBalanceTransactionCreateParams ): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CustomerBalanceTransactionCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -80,7 +80,7 @@ interface BalanceTransactionServiceAsync { fun list(customerId: String): CompletableFuture = list(customerId, CustomerBalanceTransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerBalanceTransactionListParams = CustomerBalanceTransactionListParams.none(), @@ -88,26 +88,26 @@ interface BalanceTransactionServiceAsync { ): CompletableFuture = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerBalanceTransactionListParams = CustomerBalanceTransactionListParams.none(), ): CompletableFuture = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerBalanceTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CustomerBalanceTransactionListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -139,7 +139,7 @@ interface BalanceTransactionServiceAsync { ): CompletableFuture> = create(customerId, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( customerId: String, params: CustomerBalanceTransactionCreateParams, @@ -147,13 +147,13 @@ interface BalanceTransactionServiceAsync { ): CompletableFuture> = create(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create( params: CustomerBalanceTransactionCreateParams ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CustomerBalanceTransactionCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -168,7 +168,7 @@ interface BalanceTransactionServiceAsync { ): CompletableFuture> = list(customerId, CustomerBalanceTransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerBalanceTransactionListParams = @@ -177,7 +177,7 @@ interface BalanceTransactionServiceAsync { ): CompletableFuture> = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerBalanceTransactionListParams = @@ -185,19 +185,19 @@ interface BalanceTransactionServiceAsync { ): CompletableFuture> = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerBalanceTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CustomerBalanceTransactionListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/CostServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/CostServiceAsync.kt index 1c075e4a..c5aecb4b 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/CostServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/CostServiceAsync.kt @@ -139,7 +139,7 @@ interface CostServiceAsync { fun list(customerId: String): CompletableFuture = list(customerId, CustomerCostListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCostListParams = CustomerCostListParams.none(), @@ -147,23 +147,23 @@ interface CostServiceAsync { ): CompletableFuture = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCostListParams = CustomerCostListParams.none(), ): CompletableFuture = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCostListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list(params: CustomerCostListParams): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -285,7 +285,7 @@ interface CostServiceAsync { ): CompletableFuture = listByExternalId(externalCustomerId, CustomerCostListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCostListByExternalIdParams = CustomerCostListByExternalIdParams.none(), @@ -296,26 +296,26 @@ interface CostServiceAsync { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCostListByExternalIdParams = CustomerCostListByExternalIdParams.none(), ): CompletableFuture = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCostListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCostListByExternalIdParams ): CompletableFuture = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -343,7 +343,7 @@ interface CostServiceAsync { fun list(customerId: String): CompletableFuture> = list(customerId, CustomerCostListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCostListParams = CustomerCostListParams.none(), @@ -351,26 +351,26 @@ interface CostServiceAsync { ): CompletableFuture> = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCostListParams = CustomerCostListParams.none(), ): CompletableFuture> = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCostListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CustomerCostListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -387,7 +387,7 @@ interface CostServiceAsync { ): CompletableFuture> = listByExternalId(externalCustomerId, CustomerCostListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCostListByExternalIdParams = CustomerCostListByExternalIdParams.none(), @@ -398,26 +398,26 @@ interface CostServiceAsync { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCostListByExternalIdParams = CustomerCostListByExternalIdParams.none(), ): CompletableFuture> = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCostListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCostListByExternalIdParams ): CompletableFuture> = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/CreditServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/CreditServiceAsync.kt index c7325b6b..59bc036a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/CreditServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/CreditServiceAsync.kt @@ -44,7 +44,7 @@ interface CreditServiceAsync { fun list(customerId: String): CompletableFuture = list(customerId, CustomerCreditListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditListParams = CustomerCreditListParams.none(), @@ -52,24 +52,24 @@ interface CreditServiceAsync { ): CompletableFuture = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditListParams = CustomerCreditListParams.none(), ): CompletableFuture = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list(params: CustomerCreditListParams): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -90,7 +90,7 @@ interface CreditServiceAsync { ): CompletableFuture = listByExternalId(externalCustomerId, CustomerCreditListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditListByExternalIdParams = CustomerCreditListByExternalIdParams.none(), @@ -101,26 +101,26 @@ interface CreditServiceAsync { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditListByExternalIdParams = CustomerCreditListByExternalIdParams.none(), ): CompletableFuture = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditListByExternalIdParams ): CompletableFuture = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -158,7 +158,7 @@ interface CreditServiceAsync { ): CompletableFuture> = list(customerId, CustomerCreditListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditListParams = CustomerCreditListParams.none(), @@ -166,26 +166,26 @@ interface CreditServiceAsync { ): CompletableFuture> = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditListParams = CustomerCreditListParams.none(), ): CompletableFuture> = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -202,7 +202,7 @@ interface CreditServiceAsync { ): CompletableFuture> = listByExternalId(externalCustomerId, CustomerCreditListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditListByExternalIdParams = @@ -214,7 +214,7 @@ interface CreditServiceAsync { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditListByExternalIdParams = @@ -222,19 +222,19 @@ interface CreditServiceAsync { ): CompletableFuture> = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditListByExternalIdParams ): CompletableFuture> = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/credits/LedgerServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/credits/LedgerServiceAsync.kt index 746db07b..fadef44d 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/credits/LedgerServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/credits/LedgerServiceAsync.kt @@ -112,7 +112,7 @@ interface LedgerServiceAsync { fun list(customerId: String): CompletableFuture = list(customerId, CustomerCreditLedgerListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditLedgerListParams = CustomerCreditLedgerListParams.none(), @@ -120,25 +120,25 @@ interface LedgerServiceAsync { ): CompletableFuture = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditLedgerListParams = CustomerCreditLedgerListParams.none(), ): CompletableFuture = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditLedgerListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditLedgerListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -254,7 +254,7 @@ interface LedgerServiceAsync { ): CompletableFuture = createEntry(customerId, params, RequestOptions.none()) - /** @see [createEntry] */ + /** @see createEntry */ fun createEntry( customerId: String, params: CustomerCreditLedgerCreateEntryParams, @@ -262,13 +262,13 @@ interface LedgerServiceAsync { ): CompletableFuture = createEntry(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [createEntry] */ + /** @see createEntry */ fun createEntry( params: CustomerCreditLedgerCreateEntryParams ): CompletableFuture = createEntry(params, RequestOptions.none()) - /** @see [createEntry] */ + /** @see createEntry */ fun createEntry( params: CustomerCreditLedgerCreateEntryParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -383,7 +383,7 @@ interface LedgerServiceAsync { ): CompletableFuture = createEntryByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ fun createEntryByExternalId( externalCustomerId: String, params: CustomerCreditLedgerCreateEntryByExternalIdParams, @@ -394,13 +394,13 @@ interface LedgerServiceAsync { requestOptions, ) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ fun createEntryByExternalId( params: CustomerCreditLedgerCreateEntryByExternalIdParams ): CompletableFuture = createEntryByExternalId(params, RequestOptions.none()) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ fun createEntryByExternalId( params: CustomerCreditLedgerCreateEntryByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -490,7 +490,7 @@ interface LedgerServiceAsync { ): CompletableFuture = listByExternalId(externalCustomerId, CustomerCreditLedgerListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditLedgerListByExternalIdParams = @@ -502,7 +502,7 @@ interface LedgerServiceAsync { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditLedgerListByExternalIdParams = @@ -510,19 +510,19 @@ interface LedgerServiceAsync { ): CompletableFuture = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditLedgerListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditLedgerListByExternalIdParams ): CompletableFuture = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -556,7 +556,7 @@ interface LedgerServiceAsync { ): CompletableFuture> = list(customerId, CustomerCreditLedgerListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditLedgerListParams = CustomerCreditLedgerListParams.none(), @@ -564,26 +564,26 @@ interface LedgerServiceAsync { ): CompletableFuture> = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditLedgerListParams = CustomerCreditLedgerListParams.none(), ): CompletableFuture> = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditLedgerListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditLedgerListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -600,7 +600,7 @@ interface LedgerServiceAsync { ): CompletableFuture> = createEntry(customerId, params, RequestOptions.none()) - /** @see [createEntry] */ + /** @see createEntry */ fun createEntry( customerId: String, params: CustomerCreditLedgerCreateEntryParams, @@ -608,13 +608,13 @@ interface LedgerServiceAsync { ): CompletableFuture> = createEntry(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [createEntry] */ + /** @see createEntry */ fun createEntry( params: CustomerCreditLedgerCreateEntryParams ): CompletableFuture> = createEntry(params, RequestOptions.none()) - /** @see [createEntry] */ + /** @see createEntry */ fun createEntry( params: CustomerCreditLedgerCreateEntryParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -631,7 +631,7 @@ interface LedgerServiceAsync { ): CompletableFuture> = createEntryByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ fun createEntryByExternalId( externalCustomerId: String, params: CustomerCreditLedgerCreateEntryByExternalIdParams, @@ -642,13 +642,13 @@ interface LedgerServiceAsync { requestOptions, ) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ fun createEntryByExternalId( params: CustomerCreditLedgerCreateEntryByExternalIdParams ): CompletableFuture> = createEntryByExternalId(params, RequestOptions.none()) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ fun createEntryByExternalId( params: CustomerCreditLedgerCreateEntryByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -664,7 +664,7 @@ interface LedgerServiceAsync { ): CompletableFuture> = listByExternalId(externalCustomerId, CustomerCreditLedgerListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditLedgerListByExternalIdParams = @@ -676,7 +676,7 @@ interface LedgerServiceAsync { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditLedgerListByExternalIdParams = @@ -684,19 +684,19 @@ interface LedgerServiceAsync { ): CompletableFuture> = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditLedgerListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditLedgerListByExternalIdParams ): CompletableFuture> = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/credits/TopUpServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/credits/TopUpServiceAsync.kt index b03d49f5..6134a4dc 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/credits/TopUpServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/customers/credits/TopUpServiceAsync.kt @@ -47,7 +47,7 @@ interface TopUpServiceAsync { ): CompletableFuture = create(customerId, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( customerId: String, params: CustomerCreditTopUpCreateParams, @@ -55,12 +55,12 @@ interface TopUpServiceAsync { ): CompletableFuture = create(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create( params: CustomerCreditTopUpCreateParams ): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CustomerCreditTopUpCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -70,7 +70,7 @@ interface TopUpServiceAsync { fun list(customerId: String): CompletableFuture = list(customerId, CustomerCreditTopUpListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditTopUpListParams = CustomerCreditTopUpListParams.none(), @@ -78,25 +78,25 @@ interface TopUpServiceAsync { ): CompletableFuture = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditTopUpListParams = CustomerCreditTopUpListParams.none(), ): CompletableFuture = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditTopUpListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditTopUpListParams ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -110,7 +110,7 @@ interface TopUpServiceAsync { fun delete(topUpId: String, params: CustomerCreditTopUpDeleteParams): CompletableFuture = delete(topUpId, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( topUpId: String, params: CustomerCreditTopUpDeleteParams, @@ -118,11 +118,11 @@ interface TopUpServiceAsync { ): CompletableFuture = delete(params.toBuilder().topUpId(topUpId).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete(params: CustomerCreditTopUpDeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: CustomerCreditTopUpDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -142,7 +142,7 @@ interface TopUpServiceAsync { ): CompletableFuture = createByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [createByExternalId] */ + /** @see createByExternalId */ fun createByExternalId( externalCustomerId: String, params: CustomerCreditTopUpCreateByExternalIdParams, @@ -153,13 +153,13 @@ interface TopUpServiceAsync { requestOptions, ) - /** @see [createByExternalId] */ + /** @see createByExternalId */ fun createByExternalId( params: CustomerCreditTopUpCreateByExternalIdParams ): CompletableFuture = createByExternalId(params, RequestOptions.none()) - /** @see [createByExternalId] */ + /** @see createByExternalId */ fun createByExternalId( params: CustomerCreditTopUpCreateByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -174,7 +174,7 @@ interface TopUpServiceAsync { params: CustomerCreditTopUpDeleteByExternalIdParams, ): CompletableFuture = deleteByExternalId(topUpId, params, RequestOptions.none()) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ fun deleteByExternalId( topUpId: String, params: CustomerCreditTopUpDeleteByExternalIdParams, @@ -182,12 +182,12 @@ interface TopUpServiceAsync { ): CompletableFuture = deleteByExternalId(params.toBuilder().topUpId(topUpId).build(), requestOptions) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ fun deleteByExternalId( params: CustomerCreditTopUpDeleteByExternalIdParams ): CompletableFuture = deleteByExternalId(params, RequestOptions.none()) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ fun deleteByExternalId( params: CustomerCreditTopUpDeleteByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -199,7 +199,7 @@ interface TopUpServiceAsync { ): CompletableFuture = listByExternalId(externalCustomerId, CustomerCreditTopUpListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditTopUpListByExternalIdParams = @@ -211,7 +211,7 @@ interface TopUpServiceAsync { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditTopUpListByExternalIdParams = @@ -219,19 +219,19 @@ interface TopUpServiceAsync { ): CompletableFuture = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditTopUpListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditTopUpListByExternalIdParams ): CompletableFuture = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -264,7 +264,7 @@ interface TopUpServiceAsync { ): CompletableFuture> = create(customerId, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( customerId: String, params: CustomerCreditTopUpCreateParams, @@ -272,13 +272,13 @@ interface TopUpServiceAsync { ): CompletableFuture> = create(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create( params: CustomerCreditTopUpCreateParams ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CustomerCreditTopUpCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -293,7 +293,7 @@ interface TopUpServiceAsync { ): CompletableFuture> = list(customerId, CustomerCreditTopUpListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditTopUpListParams = CustomerCreditTopUpListParams.none(), @@ -301,26 +301,26 @@ interface TopUpServiceAsync { ): CompletableFuture> = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditTopUpListParams = CustomerCreditTopUpListParams.none(), ): CompletableFuture> = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditTopUpListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditTopUpListParams ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -337,7 +337,7 @@ interface TopUpServiceAsync { params: CustomerCreditTopUpDeleteParams, ): CompletableFuture = delete(topUpId, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( topUpId: String, params: CustomerCreditTopUpDeleteParams, @@ -345,11 +345,11 @@ interface TopUpServiceAsync { ): CompletableFuture = delete(params.toBuilder().topUpId(topUpId).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete(params: CustomerCreditTopUpDeleteParams): CompletableFuture = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: CustomerCreditTopUpDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -366,7 +366,7 @@ interface TopUpServiceAsync { ): CompletableFuture> = createByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [createByExternalId] */ + /** @see createByExternalId */ fun createByExternalId( externalCustomerId: String, params: CustomerCreditTopUpCreateByExternalIdParams, @@ -377,13 +377,13 @@ interface TopUpServiceAsync { requestOptions, ) - /** @see [createByExternalId] */ + /** @see createByExternalId */ fun createByExternalId( params: CustomerCreditTopUpCreateByExternalIdParams ): CompletableFuture> = createByExternalId(params, RequestOptions.none()) - /** @see [createByExternalId] */ + /** @see createByExternalId */ fun createByExternalId( params: CustomerCreditTopUpCreateByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -400,7 +400,7 @@ interface TopUpServiceAsync { ): CompletableFuture = deleteByExternalId(topUpId, params, RequestOptions.none()) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ fun deleteByExternalId( topUpId: String, params: CustomerCreditTopUpDeleteByExternalIdParams, @@ -408,12 +408,12 @@ interface TopUpServiceAsync { ): CompletableFuture = deleteByExternalId(params.toBuilder().topUpId(topUpId).build(), requestOptions) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ fun deleteByExternalId( params: CustomerCreditTopUpDeleteByExternalIdParams ): CompletableFuture = deleteByExternalId(params, RequestOptions.none()) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ fun deleteByExternalId( params: CustomerCreditTopUpDeleteByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -429,7 +429,7 @@ interface TopUpServiceAsync { ): CompletableFuture> = listByExternalId(externalCustomerId, CustomerCreditTopUpListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditTopUpListByExternalIdParams = @@ -441,7 +441,7 @@ interface TopUpServiceAsync { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditTopUpListByExternalIdParams = @@ -449,19 +449,19 @@ interface TopUpServiceAsync { ): CompletableFuture> = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditTopUpListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditTopUpListByExternalIdParams ): CompletableFuture> = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/dimensionalPriceGroups/ExternalDimensionalPriceGroupIdServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/dimensionalPriceGroups/ExternalDimensionalPriceGroupIdServiceAsync.kt index feccd338..eac0b24a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/dimensionalPriceGroups/ExternalDimensionalPriceGroupIdServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/dimensionalPriceGroups/ExternalDimensionalPriceGroupIdServiceAsync.kt @@ -35,7 +35,7 @@ interface ExternalDimensionalPriceGroupIdServiceAsync { DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams.none(), ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalDimensionalPriceGroupId: String, params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams = @@ -50,7 +50,7 @@ interface ExternalDimensionalPriceGroupIdServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalDimensionalPriceGroupId: String, params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams = @@ -58,18 +58,18 @@ interface ExternalDimensionalPriceGroupIdServiceAsync { ): CompletableFuture = retrieve(externalDimensionalPriceGroupId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams ): CompletableFuture = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalDimensionalPriceGroupId: String, requestOptions: RequestOptions, @@ -108,7 +108,7 @@ interface ExternalDimensionalPriceGroupIdServiceAsync { DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams.none(), ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalDimensionalPriceGroupId: String, params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams = @@ -123,7 +123,7 @@ interface ExternalDimensionalPriceGroupIdServiceAsync { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalDimensionalPriceGroupId: String, params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams = @@ -131,19 +131,19 @@ interface ExternalDimensionalPriceGroupIdServiceAsync { ): CompletableFuture> = retrieve(externalDimensionalPriceGroupId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams ): CompletableFuture> = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalDimensionalPriceGroupId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/events/BackfillServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/events/BackfillServiceAsync.kt index ae906f69..7a10f783 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/events/BackfillServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/events/BackfillServiceAsync.kt @@ -65,7 +65,7 @@ interface BackfillServiceAsync { fun create(params: EventBackfillCreateParams): CompletableFuture = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: EventBackfillCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -81,18 +81,18 @@ interface BackfillServiceAsync { */ fun list(): CompletableFuture = list(EventBackfillListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventBackfillListParams = EventBackfillListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [list] */ + /** @see list */ fun list( params: EventBackfillListParams = EventBackfillListParams.none() ): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CompletableFuture = list(EventBackfillListParams.none(), requestOptions) @@ -104,7 +104,7 @@ interface BackfillServiceAsync { fun close(backfillId: String): CompletableFuture = close(backfillId, EventBackfillCloseParams.none()) - /** @see [close] */ + /** @see close */ fun close( backfillId: String, params: EventBackfillCloseParams = EventBackfillCloseParams.none(), @@ -112,24 +112,24 @@ interface BackfillServiceAsync { ): CompletableFuture = close(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [close] */ + /** @see close */ fun close( backfillId: String, params: EventBackfillCloseParams = EventBackfillCloseParams.none(), ): CompletableFuture = close(backfillId, params, RequestOptions.none()) - /** @see [close] */ + /** @see close */ fun close( params: EventBackfillCloseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [close] */ + /** @see close */ fun close(params: EventBackfillCloseParams): CompletableFuture = close(params, RequestOptions.none()) - /** @see [close] */ + /** @see close */ fun close( backfillId: String, requestOptions: RequestOptions, @@ -140,7 +140,7 @@ interface BackfillServiceAsync { fun fetch(backfillId: String): CompletableFuture = fetch(backfillId, EventBackfillFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( backfillId: String, params: EventBackfillFetchParams = EventBackfillFetchParams.none(), @@ -148,24 +148,24 @@ interface BackfillServiceAsync { ): CompletableFuture = fetch(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( backfillId: String, params: EventBackfillFetchParams = EventBackfillFetchParams.none(), ): CompletableFuture = fetch(backfillId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: EventBackfillFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: EventBackfillFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( backfillId: String, requestOptions: RequestOptions, @@ -183,7 +183,7 @@ interface BackfillServiceAsync { fun revert(backfillId: String): CompletableFuture = revert(backfillId, EventBackfillRevertParams.none()) - /** @see [revert] */ + /** @see revert */ fun revert( backfillId: String, params: EventBackfillRevertParams = EventBackfillRevertParams.none(), @@ -191,24 +191,24 @@ interface BackfillServiceAsync { ): CompletableFuture = revert(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [revert] */ + /** @see revert */ fun revert( backfillId: String, params: EventBackfillRevertParams = EventBackfillRevertParams.none(), ): CompletableFuture = revert(backfillId, params, RequestOptions.none()) - /** @see [revert] */ + /** @see revert */ fun revert( params: EventBackfillRevertParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [revert] */ + /** @see revert */ fun revert(params: EventBackfillRevertParams): CompletableFuture = revert(params, RequestOptions.none()) - /** @see [revert] */ + /** @see revert */ fun revert( backfillId: String, requestOptions: RequestOptions, @@ -238,7 +238,7 @@ interface BackfillServiceAsync { ): CompletableFuture> = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: EventBackfillCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -251,19 +251,19 @@ interface BackfillServiceAsync { fun list(): CompletableFuture> = list(EventBackfillListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventBackfillListParams = EventBackfillListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [list] */ + /** @see list */ fun list( params: EventBackfillListParams = EventBackfillListParams.none() ): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( requestOptions: RequestOptions ): CompletableFuture> = @@ -278,7 +278,7 @@ interface BackfillServiceAsync { ): CompletableFuture> = close(backfillId, EventBackfillCloseParams.none()) - /** @see [close] */ + /** @see close */ fun close( backfillId: String, params: EventBackfillCloseParams = EventBackfillCloseParams.none(), @@ -286,26 +286,26 @@ interface BackfillServiceAsync { ): CompletableFuture> = close(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [close] */ + /** @see close */ fun close( backfillId: String, params: EventBackfillCloseParams = EventBackfillCloseParams.none(), ): CompletableFuture> = close(backfillId, params, RequestOptions.none()) - /** @see [close] */ + /** @see close */ fun close( params: EventBackfillCloseParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [close] */ + /** @see close */ fun close( params: EventBackfillCloseParams ): CompletableFuture> = close(params, RequestOptions.none()) - /** @see [close] */ + /** @see close */ fun close( backfillId: String, requestOptions: RequestOptions, @@ -321,7 +321,7 @@ interface BackfillServiceAsync { ): CompletableFuture> = fetch(backfillId, EventBackfillFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( backfillId: String, params: EventBackfillFetchParams = EventBackfillFetchParams.none(), @@ -329,26 +329,26 @@ interface BackfillServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( backfillId: String, params: EventBackfillFetchParams = EventBackfillFetchParams.none(), ): CompletableFuture> = fetch(backfillId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: EventBackfillFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: EventBackfillFetchParams ): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( backfillId: String, requestOptions: RequestOptions, @@ -364,7 +364,7 @@ interface BackfillServiceAsync { ): CompletableFuture> = revert(backfillId, EventBackfillRevertParams.none()) - /** @see [revert] */ + /** @see revert */ fun revert( backfillId: String, params: EventBackfillRevertParams = EventBackfillRevertParams.none(), @@ -372,26 +372,26 @@ interface BackfillServiceAsync { ): CompletableFuture> = revert(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [revert] */ + /** @see revert */ fun revert( backfillId: String, params: EventBackfillRevertParams = EventBackfillRevertParams.none(), ): CompletableFuture> = revert(backfillId, params, RequestOptions.none()) - /** @see [revert] */ + /** @see revert */ fun revert( params: EventBackfillRevertParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [revert] */ + /** @see revert */ fun revert( params: EventBackfillRevertParams ): CompletableFuture> = revert(params, RequestOptions.none()) - /** @see [revert] */ + /** @see revert */ fun revert( backfillId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/events/VolumeServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/events/VolumeServiceAsync.kt index 928b18c1..fcea1072 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/events/VolumeServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/events/VolumeServiceAsync.kt @@ -40,7 +40,7 @@ interface VolumeServiceAsync { fun list(params: EventVolumeListParams): CompletableFuture = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventVolumeListParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -67,7 +67,7 @@ interface VolumeServiceAsync { fun list(params: EventVolumeListParams): CompletableFuture> = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventVolumeListParams, requestOptions: RequestOptions = RequestOptions.none(), diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/plans/ExternalPlanIdServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/plans/ExternalPlanIdServiceAsync.kt index 1aa504ea..efa6ba5b 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/plans/ExternalPlanIdServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/plans/ExternalPlanIdServiceAsync.kt @@ -34,7 +34,7 @@ interface ExternalPlanIdServiceAsync { fun update(otherExternalPlanId: String): CompletableFuture = update(otherExternalPlanId, PlanExternalPlanIdUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( otherExternalPlanId: String, params: PlanExternalPlanIdUpdateParams = PlanExternalPlanIdUpdateParams.none(), @@ -42,23 +42,23 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture = update(params.toBuilder().otherExternalPlanId(otherExternalPlanId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( otherExternalPlanId: String, params: PlanExternalPlanIdUpdateParams = PlanExternalPlanIdUpdateParams.none(), ): CompletableFuture = update(otherExternalPlanId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PlanExternalPlanIdUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: PlanExternalPlanIdUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( otherExternalPlanId: String, requestOptions: RequestOptions, @@ -85,7 +85,7 @@ interface ExternalPlanIdServiceAsync { fun fetch(externalPlanId: String): CompletableFuture = fetch(externalPlanId, PlanExternalPlanIdFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPlanId: String, params: PlanExternalPlanIdFetchParams = PlanExternalPlanIdFetchParams.none(), @@ -93,23 +93,23 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture = fetch(params.toBuilder().externalPlanId(externalPlanId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPlanId: String, params: PlanExternalPlanIdFetchParams = PlanExternalPlanIdFetchParams.none(), ): CompletableFuture = fetch(externalPlanId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PlanExternalPlanIdFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PlanExternalPlanIdFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(externalPlanId: String, requestOptions: RequestOptions): CompletableFuture = fetch(externalPlanId, PlanExternalPlanIdFetchParams.none(), requestOptions) @@ -135,7 +135,7 @@ interface ExternalPlanIdServiceAsync { fun update(otherExternalPlanId: String): CompletableFuture> = update(otherExternalPlanId, PlanExternalPlanIdUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( otherExternalPlanId: String, params: PlanExternalPlanIdUpdateParams = PlanExternalPlanIdUpdateParams.none(), @@ -146,25 +146,25 @@ interface ExternalPlanIdServiceAsync { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update( otherExternalPlanId: String, params: PlanExternalPlanIdUpdateParams = PlanExternalPlanIdUpdateParams.none(), ): CompletableFuture> = update(otherExternalPlanId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PlanExternalPlanIdUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update( params: PlanExternalPlanIdUpdateParams ): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( otherExternalPlanId: String, requestOptions: RequestOptions, @@ -178,7 +178,7 @@ interface ExternalPlanIdServiceAsync { fun fetch(externalPlanId: String): CompletableFuture> = fetch(externalPlanId, PlanExternalPlanIdFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPlanId: String, params: PlanExternalPlanIdFetchParams = PlanExternalPlanIdFetchParams.none(), @@ -186,24 +186,24 @@ interface ExternalPlanIdServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().externalPlanId(externalPlanId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPlanId: String, params: PlanExternalPlanIdFetchParams = PlanExternalPlanIdFetchParams.none(), ): CompletableFuture> = fetch(externalPlanId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PlanExternalPlanIdFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PlanExternalPlanIdFetchParams): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPlanId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/prices/ExternalPriceIdServiceAsync.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/prices/ExternalPriceIdServiceAsync.kt index a16ac073..34498064 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/async/prices/ExternalPriceIdServiceAsync.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/async/prices/ExternalPriceIdServiceAsync.kt @@ -32,7 +32,7 @@ interface ExternalPriceIdServiceAsync { fun update(externalPriceId: String): CompletableFuture = update(externalPriceId, PriceExternalPriceIdUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( externalPriceId: String, params: PriceExternalPriceIdUpdateParams = PriceExternalPriceIdUpdateParams.none(), @@ -40,23 +40,23 @@ interface ExternalPriceIdServiceAsync { ): CompletableFuture = update(params.toBuilder().externalPriceId(externalPriceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( externalPriceId: String, params: PriceExternalPriceIdUpdateParams = PriceExternalPriceIdUpdateParams.none(), ): CompletableFuture = update(externalPriceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PriceExternalPriceIdUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [update] */ + /** @see update */ fun update(params: PriceExternalPriceIdUpdateParams): CompletableFuture = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(externalPriceId: String, requestOptions: RequestOptions): CompletableFuture = update(externalPriceId, PriceExternalPriceIdUpdateParams.none(), requestOptions) @@ -68,7 +68,7 @@ interface ExternalPriceIdServiceAsync { fun fetch(externalPriceId: String): CompletableFuture = fetch(externalPriceId, PriceExternalPriceIdFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPriceId: String, params: PriceExternalPriceIdFetchParams = PriceExternalPriceIdFetchParams.none(), @@ -76,23 +76,23 @@ interface ExternalPriceIdServiceAsync { ): CompletableFuture = fetch(params.toBuilder().externalPriceId(externalPriceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPriceId: String, params: PriceExternalPriceIdFetchParams = PriceExternalPriceIdFetchParams.none(), ): CompletableFuture = fetch(externalPriceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PriceExternalPriceIdFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PriceExternalPriceIdFetchParams): CompletableFuture = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(externalPriceId: String, requestOptions: RequestOptions): CompletableFuture = fetch(externalPriceId, PriceExternalPriceIdFetchParams.none(), requestOptions) @@ -118,7 +118,7 @@ interface ExternalPriceIdServiceAsync { fun update(externalPriceId: String): CompletableFuture> = update(externalPriceId, PriceExternalPriceIdUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( externalPriceId: String, params: PriceExternalPriceIdUpdateParams = PriceExternalPriceIdUpdateParams.none(), @@ -126,25 +126,25 @@ interface ExternalPriceIdServiceAsync { ): CompletableFuture> = update(params.toBuilder().externalPriceId(externalPriceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( externalPriceId: String, params: PriceExternalPriceIdUpdateParams = PriceExternalPriceIdUpdateParams.none(), ): CompletableFuture> = update(externalPriceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PriceExternalPriceIdUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [update] */ + /** @see update */ fun update( params: PriceExternalPriceIdUpdateParams ): CompletableFuture> = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( externalPriceId: String, requestOptions: RequestOptions, @@ -158,7 +158,7 @@ interface ExternalPriceIdServiceAsync { fun fetch(externalPriceId: String): CompletableFuture> = fetch(externalPriceId, PriceExternalPriceIdFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPriceId: String, params: PriceExternalPriceIdFetchParams = PriceExternalPriceIdFetchParams.none(), @@ -166,25 +166,25 @@ interface ExternalPriceIdServiceAsync { ): CompletableFuture> = fetch(params.toBuilder().externalPriceId(externalPriceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPriceId: String, params: PriceExternalPriceIdFetchParams = PriceExternalPriceIdFetchParams.none(), ): CompletableFuture> = fetch(externalPriceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PriceExternalPriceIdFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CompletableFuture> - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PriceExternalPriceIdFetchParams ): CompletableFuture> = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPriceId: String, requestOptions: RequestOptions, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/AlertService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/AlertService.kt index db684a61..d9c8d598 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/AlertService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/AlertService.kt @@ -35,27 +35,27 @@ interface AlertService { /** This endpoint retrieves an alert by its ID. */ fun retrieve(alertId: String): Alert = retrieve(alertId, AlertRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( alertId: String, params: AlertRetrieveParams = AlertRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Alert = retrieve(params.toBuilder().alertId(alertId).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(alertId: String, params: AlertRetrieveParams = AlertRetrieveParams.none()): Alert = retrieve(alertId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: AlertRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): Alert - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: AlertRetrieveParams): Alert = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(alertId: String, requestOptions: RequestOptions): Alert = retrieve(alertId, AlertRetrieveParams.none(), requestOptions) @@ -63,7 +63,7 @@ interface AlertService { fun update(alertConfigurationId: String, params: AlertUpdateParams): Alert = update(alertConfigurationId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( alertConfigurationId: String, params: AlertUpdateParams, @@ -74,10 +74,10 @@ interface AlertService { requestOptions, ) - /** @see [update] */ + /** @see update */ fun update(params: AlertUpdateParams): Alert = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: AlertUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -96,17 +96,17 @@ interface AlertService { */ fun list(): AlertListPage = list(AlertListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: AlertListParams = AlertListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): AlertListPage - /** @see [list] */ + /** @see list */ fun list(params: AlertListParams = AlertListParams.none()): AlertListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): AlertListPage = list(AlertListParams.none(), requestOptions) @@ -121,18 +121,18 @@ interface AlertService { fun createForCustomer(customerId: String, params: AlertCreateForCustomerParams): Alert = createForCustomer(customerId, params, RequestOptions.none()) - /** @see [createForCustomer] */ + /** @see createForCustomer */ fun createForCustomer( customerId: String, params: AlertCreateForCustomerParams, requestOptions: RequestOptions = RequestOptions.none(), ): Alert = createForCustomer(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [createForCustomer] */ + /** @see createForCustomer */ fun createForCustomer(params: AlertCreateForCustomerParams): Alert = createForCustomer(params, RequestOptions.none()) - /** @see [createForCustomer] */ + /** @see createForCustomer */ fun createForCustomer( params: AlertCreateForCustomerParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -151,7 +151,7 @@ interface AlertService { params: AlertCreateForExternalCustomerParams, ): Alert = createForExternalCustomer(externalCustomerId, params, RequestOptions.none()) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ fun createForExternalCustomer( externalCustomerId: String, params: AlertCreateForExternalCustomerParams, @@ -162,11 +162,11 @@ interface AlertService { requestOptions, ) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ fun createForExternalCustomer(params: AlertCreateForExternalCustomerParams): Alert = createForExternalCustomer(params, RequestOptions.none()) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ fun createForExternalCustomer( params: AlertCreateForExternalCustomerParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -189,7 +189,7 @@ interface AlertService { params: AlertCreateForSubscriptionParams, ): Alert = createForSubscription(subscriptionId, params, RequestOptions.none()) - /** @see [createForSubscription] */ + /** @see createForSubscription */ fun createForSubscription( subscriptionId: String, params: AlertCreateForSubscriptionParams, @@ -200,11 +200,11 @@ interface AlertService { requestOptions, ) - /** @see [createForSubscription] */ + /** @see createForSubscription */ fun createForSubscription(params: AlertCreateForSubscriptionParams): Alert = createForSubscription(params, RequestOptions.none()) - /** @see [createForSubscription] */ + /** @see createForSubscription */ fun createForSubscription( params: AlertCreateForSubscriptionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -218,7 +218,7 @@ interface AlertService { fun disable(alertConfigurationId: String): Alert = disable(alertConfigurationId, AlertDisableParams.none()) - /** @see [disable] */ + /** @see disable */ fun disable( alertConfigurationId: String, params: AlertDisableParams = AlertDisableParams.none(), @@ -229,22 +229,22 @@ interface AlertService { requestOptions, ) - /** @see [disable] */ + /** @see disable */ fun disable( alertConfigurationId: String, params: AlertDisableParams = AlertDisableParams.none(), ): Alert = disable(alertConfigurationId, params, RequestOptions.none()) - /** @see [disable] */ + /** @see disable */ fun disable( params: AlertDisableParams, requestOptions: RequestOptions = RequestOptions.none(), ): Alert - /** @see [disable] */ + /** @see disable */ fun disable(params: AlertDisableParams): Alert = disable(params, RequestOptions.none()) - /** @see [disable] */ + /** @see disable */ fun disable(alertConfigurationId: String, requestOptions: RequestOptions): Alert = disable(alertConfigurationId, AlertDisableParams.none(), requestOptions) @@ -256,7 +256,7 @@ interface AlertService { fun enable(alertConfigurationId: String): Alert = enable(alertConfigurationId, AlertEnableParams.none()) - /** @see [enable] */ + /** @see enable */ fun enable( alertConfigurationId: String, params: AlertEnableParams = AlertEnableParams.none(), @@ -267,22 +267,22 @@ interface AlertService { requestOptions, ) - /** @see [enable] */ + /** @see enable */ fun enable( alertConfigurationId: String, params: AlertEnableParams = AlertEnableParams.none(), ): Alert = enable(alertConfigurationId, params, RequestOptions.none()) - /** @see [enable] */ + /** @see enable */ fun enable( params: AlertEnableParams, requestOptions: RequestOptions = RequestOptions.none(), ): Alert - /** @see [enable] */ + /** @see enable */ fun enable(params: AlertEnableParams): Alert = enable(params, RequestOptions.none()) - /** @see [enable] */ + /** @see enable */ fun enable(alertConfigurationId: String, requestOptions: RequestOptions): Alert = enable(alertConfigurationId, AlertEnableParams.none(), requestOptions) @@ -304,7 +304,7 @@ interface AlertService { fun retrieve(alertId: String): HttpResponseFor = retrieve(alertId, AlertRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( alertId: String, @@ -313,26 +313,26 @@ interface AlertService { ): HttpResponseFor = retrieve(params.toBuilder().alertId(alertId).build(), requestOptions) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( alertId: String, params: AlertRetrieveParams = AlertRetrieveParams.none(), ): HttpResponseFor = retrieve(alertId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: AlertRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(params: AlertRetrieveParams): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve(alertId: String, requestOptions: RequestOptions): HttpResponseFor = retrieve(alertId, AlertRetrieveParams.none(), requestOptions) @@ -347,7 +347,7 @@ interface AlertService { params: AlertUpdateParams, ): HttpResponseFor = update(alertConfigurationId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( alertConfigurationId: String, @@ -359,12 +359,12 @@ interface AlertService { requestOptions, ) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: AlertUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: AlertUpdateParams, @@ -377,19 +377,19 @@ interface AlertService { */ @MustBeClosed fun list(): HttpResponseFor = list(AlertListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: AlertListParams = AlertListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(params: AlertListParams = AlertListParams.none()): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(AlertListParams.none(), requestOptions) @@ -404,7 +404,7 @@ interface AlertService { params: AlertCreateForCustomerParams, ): HttpResponseFor = createForCustomer(customerId, params, RequestOptions.none()) - /** @see [createForCustomer] */ + /** @see createForCustomer */ @MustBeClosed fun createForCustomer( customerId: String, @@ -413,12 +413,12 @@ interface AlertService { ): HttpResponseFor = createForCustomer(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [createForCustomer] */ + /** @see createForCustomer */ @MustBeClosed fun createForCustomer(params: AlertCreateForCustomerParams): HttpResponseFor = createForCustomer(params, RequestOptions.none()) - /** @see [createForCustomer] */ + /** @see createForCustomer */ @MustBeClosed fun createForCustomer( params: AlertCreateForCustomerParams, @@ -437,7 +437,7 @@ interface AlertService { ): HttpResponseFor = createForExternalCustomer(externalCustomerId, params, RequestOptions.none()) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ @MustBeClosed fun createForExternalCustomer( externalCustomerId: String, @@ -449,13 +449,13 @@ interface AlertService { requestOptions, ) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ @MustBeClosed fun createForExternalCustomer( params: AlertCreateForExternalCustomerParams ): HttpResponseFor = createForExternalCustomer(params, RequestOptions.none()) - /** @see [createForExternalCustomer] */ + /** @see createForExternalCustomer */ @MustBeClosed fun createForExternalCustomer( params: AlertCreateForExternalCustomerParams, @@ -473,7 +473,7 @@ interface AlertService { ): HttpResponseFor = createForSubscription(subscriptionId, params, RequestOptions.none()) - /** @see [createForSubscription] */ + /** @see createForSubscription */ @MustBeClosed fun createForSubscription( subscriptionId: String, @@ -485,13 +485,13 @@ interface AlertService { requestOptions, ) - /** @see [createForSubscription] */ + /** @see createForSubscription */ @MustBeClosed fun createForSubscription( params: AlertCreateForSubscriptionParams ): HttpResponseFor = createForSubscription(params, RequestOptions.none()) - /** @see [createForSubscription] */ + /** @see createForSubscription */ @MustBeClosed fun createForSubscription( params: AlertCreateForSubscriptionParams, @@ -506,7 +506,7 @@ interface AlertService { fun disable(alertConfigurationId: String): HttpResponseFor = disable(alertConfigurationId, AlertDisableParams.none()) - /** @see [disable] */ + /** @see disable */ @MustBeClosed fun disable( alertConfigurationId: String, @@ -518,26 +518,26 @@ interface AlertService { requestOptions, ) - /** @see [disable] */ + /** @see disable */ @MustBeClosed fun disable( alertConfigurationId: String, params: AlertDisableParams = AlertDisableParams.none(), ): HttpResponseFor = disable(alertConfigurationId, params, RequestOptions.none()) - /** @see [disable] */ + /** @see disable */ @MustBeClosed fun disable( params: AlertDisableParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [disable] */ + /** @see disable */ @MustBeClosed fun disable(params: AlertDisableParams): HttpResponseFor = disable(params, RequestOptions.none()) - /** @see [disable] */ + /** @see disable */ @MustBeClosed fun disable( alertConfigurationId: String, @@ -553,7 +553,7 @@ interface AlertService { fun enable(alertConfigurationId: String): HttpResponseFor = enable(alertConfigurationId, AlertEnableParams.none()) - /** @see [enable] */ + /** @see enable */ @MustBeClosed fun enable( alertConfigurationId: String, @@ -565,26 +565,26 @@ interface AlertService { requestOptions, ) - /** @see [enable] */ + /** @see enable */ @MustBeClosed fun enable( alertConfigurationId: String, params: AlertEnableParams = AlertEnableParams.none(), ): HttpResponseFor = enable(alertConfigurationId, params, RequestOptions.none()) - /** @see [enable] */ + /** @see enable */ @MustBeClosed fun enable( params: AlertEnableParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [enable] */ + /** @see enable */ @MustBeClosed fun enable(params: AlertEnableParams): HttpResponseFor = enable(params, RequestOptions.none()) - /** @see [enable] */ + /** @see enable */ @MustBeClosed fun enable( alertConfigurationId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/BetaService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/BetaService.kt index 9ac9ebfc..b25a5918 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/BetaService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/BetaService.kt @@ -39,18 +39,18 @@ interface BetaService { fun createPlanVersion(planId: String, params: BetaCreatePlanVersionParams): PlanVersion = createPlanVersion(planId, params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( planId: String, params: BetaCreatePlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), ): PlanVersion = createPlanVersion(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion(params: BetaCreatePlanVersionParams): PlanVersion = createPlanVersion(params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( params: BetaCreatePlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -66,18 +66,18 @@ interface BetaService { fun fetchPlanVersion(version: String, params: BetaFetchPlanVersionParams): PlanVersion = fetchPlanVersion(version, params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( version: String, params: BetaFetchPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), ): PlanVersion = fetchPlanVersion(params.toBuilder().version(version).build(), requestOptions) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion(params: BetaFetchPlanVersionParams): PlanVersion = fetchPlanVersion(params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( params: BetaFetchPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -92,18 +92,18 @@ interface BetaService { fun setDefaultPlanVersion(planId: String, params: BetaSetDefaultPlanVersionParams): Plan = setDefaultPlanVersion(planId, params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( planId: String, params: BetaSetDefaultPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), ): Plan = setDefaultPlanVersion(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion(params: BetaSetDefaultPlanVersionParams): Plan = setDefaultPlanVersion(params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( params: BetaSetDefaultPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -131,7 +131,7 @@ interface BetaService { params: BetaCreatePlanVersionParams, ): HttpResponseFor = createPlanVersion(planId, params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ @MustBeClosed fun createPlanVersion( planId: String, @@ -140,12 +140,12 @@ interface BetaService { ): HttpResponseFor = createPlanVersion(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ @MustBeClosed fun createPlanVersion(params: BetaCreatePlanVersionParams): HttpResponseFor = createPlanVersion(params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ @MustBeClosed fun createPlanVersion( params: BetaCreatePlanVersionParams, @@ -162,7 +162,7 @@ interface BetaService { params: BetaFetchPlanVersionParams, ): HttpResponseFor = fetchPlanVersion(version, params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ @MustBeClosed fun fetchPlanVersion( version: String, @@ -171,12 +171,12 @@ interface BetaService { ): HttpResponseFor = fetchPlanVersion(params.toBuilder().version(version).build(), requestOptions) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ @MustBeClosed fun fetchPlanVersion(params: BetaFetchPlanVersionParams): HttpResponseFor = fetchPlanVersion(params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ @MustBeClosed fun fetchPlanVersion( params: BetaFetchPlanVersionParams, @@ -193,7 +193,7 @@ interface BetaService { params: BetaSetDefaultPlanVersionParams, ): HttpResponseFor = setDefaultPlanVersion(planId, params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ @MustBeClosed fun setDefaultPlanVersion( planId: String, @@ -202,12 +202,12 @@ interface BetaService { ): HttpResponseFor = setDefaultPlanVersion(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ @MustBeClosed fun setDefaultPlanVersion(params: BetaSetDefaultPlanVersionParams): HttpResponseFor = setDefaultPlanVersion(params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ @MustBeClosed fun setDefaultPlanVersion( params: BetaSetDefaultPlanVersionParams, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CouponService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CouponService.kt index 336beba4..c634fc7f 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CouponService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CouponService.kt @@ -37,7 +37,7 @@ interface CouponService { */ fun create(params: CouponCreateParams): Coupon = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CouponCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -53,17 +53,17 @@ interface CouponService { */ fun list(): CouponListPage = list(CouponListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CouponListParams = CouponListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CouponListPage - /** @see [list] */ + /** @see list */ fun list(params: CouponListParams = CouponListParams.none()): CouponListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CouponListPage = list(CouponListParams.none(), requestOptions) @@ -74,29 +74,29 @@ interface CouponService { */ fun archive(couponId: String): Coupon = archive(couponId, CouponArchiveParams.none()) - /** @see [archive] */ + /** @see archive */ fun archive( couponId: String, params: CouponArchiveParams = CouponArchiveParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Coupon = archive(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [archive] */ + /** @see archive */ fun archive( couponId: String, params: CouponArchiveParams = CouponArchiveParams.none(), ): Coupon = archive(couponId, params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive( params: CouponArchiveParams, requestOptions: RequestOptions = RequestOptions.none(), ): Coupon - /** @see [archive] */ + /** @see archive */ fun archive(params: CouponArchiveParams): Coupon = archive(params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive(couponId: String, requestOptions: RequestOptions): Coupon = archive(couponId, CouponArchiveParams.none(), requestOptions) @@ -106,27 +106,27 @@ interface CouponService { */ fun fetch(couponId: String): Coupon = fetch(couponId, CouponFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( couponId: String, params: CouponFetchParams = CouponFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Coupon = fetch(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch(couponId: String, params: CouponFetchParams = CouponFetchParams.none()): Coupon = fetch(couponId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: CouponFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): Coupon - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: CouponFetchParams): Coupon = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(couponId: String, requestOptions: RequestOptions): Coupon = fetch(couponId, CouponFetchParams.none(), requestOptions) @@ -150,7 +150,7 @@ interface CouponService { fun create(params: CouponCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: CouponCreateParams, @@ -163,20 +163,20 @@ interface CouponService { */ @MustBeClosed fun list(): HttpResponseFor = list(CouponListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CouponListParams = CouponListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CouponListParams = CouponListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(CouponListParams.none(), requestOptions) @@ -189,7 +189,7 @@ interface CouponService { fun archive(couponId: String): HttpResponseFor = archive(couponId, CouponArchiveParams.none()) - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive( couponId: String, @@ -198,26 +198,26 @@ interface CouponService { ): HttpResponseFor = archive(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive( couponId: String, params: CouponArchiveParams = CouponArchiveParams.none(), ): HttpResponseFor = archive(couponId, params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive( params: CouponArchiveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive(params: CouponArchiveParams): HttpResponseFor = archive(params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive(couponId: String, requestOptions: RequestOptions): HttpResponseFor = archive(couponId, CouponArchiveParams.none(), requestOptions) @@ -230,7 +230,7 @@ interface CouponService { fun fetch(couponId: String): HttpResponseFor = fetch(couponId, CouponFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( couponId: String, @@ -239,26 +239,26 @@ interface CouponService { ): HttpResponseFor = fetch(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( couponId: String, params: CouponFetchParams = CouponFetchParams.none(), ): HttpResponseFor = fetch(couponId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: CouponFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: CouponFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(couponId: String, requestOptions: RequestOptions): HttpResponseFor = fetch(couponId, CouponFetchParams.none(), requestOptions) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CreditNoteService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CreditNoteService.kt index c6db53bc..f63a1991 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CreditNoteService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CreditNoteService.kt @@ -52,7 +52,7 @@ interface CreditNoteService { */ fun create(params: CreditNoteCreateParams): CreditNote = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CreditNoteCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -65,17 +65,17 @@ interface CreditNoteService { */ fun list(): CreditNoteListPage = list(CreditNoteListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CreditNoteListParams = CreditNoteListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CreditNoteListPage - /** @see [list] */ + /** @see list */ fun list(params: CreditNoteListParams = CreditNoteListParams.none()): CreditNoteListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CreditNoteListPage = list(CreditNoteListParams.none(), requestOptions) @@ -85,29 +85,29 @@ interface CreditNoteService { */ fun fetch(creditNoteId: String): CreditNote = fetch(creditNoteId, CreditNoteFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( creditNoteId: String, params: CreditNoteFetchParams = CreditNoteFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CreditNote = fetch(params.toBuilder().creditNoteId(creditNoteId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( creditNoteId: String, params: CreditNoteFetchParams = CreditNoteFetchParams.none(), ): CreditNote = fetch(creditNoteId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: CreditNoteFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): CreditNote - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: CreditNoteFetchParams): CreditNote = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(creditNoteId: String, requestOptions: RequestOptions): CreditNote = fetch(creditNoteId, CreditNoteFetchParams.none(), requestOptions) @@ -131,7 +131,7 @@ interface CreditNoteService { fun create(params: CreditNoteCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: CreditNoteCreateParams, @@ -145,20 +145,20 @@ interface CreditNoteService { @MustBeClosed fun list(): HttpResponseFor = list(CreditNoteListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CreditNoteListParams = CreditNoteListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CreditNoteListParams = CreditNoteListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(CreditNoteListParams.none(), requestOptions) @@ -171,7 +171,7 @@ interface CreditNoteService { fun fetch(creditNoteId: String): HttpResponseFor = fetch(creditNoteId, CreditNoteFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( creditNoteId: String, @@ -180,26 +180,26 @@ interface CreditNoteService { ): HttpResponseFor = fetch(params.toBuilder().creditNoteId(creditNoteId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( creditNoteId: String, params: CreditNoteFetchParams = CreditNoteFetchParams.none(), ): HttpResponseFor = fetch(creditNoteId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: CreditNoteFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: CreditNoteFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( creditNoteId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CustomerService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CustomerService.kt index 814ec983..d5886aae 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CustomerService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/CustomerService.kt @@ -58,7 +58,7 @@ interface CustomerService { */ fun create(params: CustomerCreateParams): Customer = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CustomerCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -72,29 +72,29 @@ interface CustomerService { */ fun update(customerId: String): Customer = update(customerId, CustomerUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( customerId: String, params: CustomerUpdateParams = CustomerUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Customer = update(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( customerId: String, params: CustomerUpdateParams = CustomerUpdateParams.none(), ): Customer = update(customerId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: CustomerUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Customer - /** @see [update] */ + /** @see update */ fun update(params: CustomerUpdateParams): Customer = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(customerId: String, requestOptions: RequestOptions): Customer = update(customerId, CustomerUpdateParams.none(), requestOptions) @@ -107,17 +107,17 @@ interface CustomerService { */ fun list(): CustomerListPage = list(CustomerListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerListParams = CustomerListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): CustomerListPage - /** @see [list] */ + /** @see list */ fun list(params: CustomerListParams = CustomerListParams.none()): CustomerListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): CustomerListPage = list(CustomerListParams.none(), requestOptions) @@ -135,24 +135,24 @@ interface CustomerService { */ fun delete(customerId: String) = delete(customerId, CustomerDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ fun delete( customerId: String, params: CustomerDeleteParams = CustomerDeleteParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ) = delete(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete(customerId: String, params: CustomerDeleteParams = CustomerDeleteParams.none()) = delete(customerId, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete(params: CustomerDeleteParams, requestOptions: RequestOptions = RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete(params: CustomerDeleteParams) = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete(customerId: String, requestOptions: RequestOptions) = delete(customerId, CustomerDeleteParams.none(), requestOptions) @@ -165,29 +165,29 @@ interface CustomerService { */ fun fetch(customerId: String): Customer = fetch(customerId, CustomerFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( customerId: String, params: CustomerFetchParams = CustomerFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Customer = fetch(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( customerId: String, params: CustomerFetchParams = CustomerFetchParams.none(), ): Customer = fetch(customerId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: CustomerFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): Customer - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: CustomerFetchParams): Customer = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(customerId: String, requestOptions: RequestOptions): Customer = fetch(customerId, CustomerFetchParams.none(), requestOptions) @@ -201,7 +201,7 @@ interface CustomerService { fun fetchByExternalId(externalCustomerId: String): Customer = fetchByExternalId(externalCustomerId, CustomerFetchByExternalIdParams.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( externalCustomerId: String, params: CustomerFetchByExternalIdParams = CustomerFetchByExternalIdParams.none(), @@ -212,23 +212,23 @@ interface CustomerService { requestOptions, ) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( externalCustomerId: String, params: CustomerFetchByExternalIdParams = CustomerFetchByExternalIdParams.none(), ): Customer = fetchByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId( params: CustomerFetchByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): Customer - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId(params: CustomerFetchByExternalIdParams): Customer = fetchByExternalId(params, RequestOptions.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ fun fetchByExternalId(externalCustomerId: String, requestOptions: RequestOptions): Customer = fetchByExternalId( externalCustomerId, @@ -250,7 +250,7 @@ interface CustomerService { CustomerSyncPaymentMethodsFromGatewayParams.none(), ) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( customerId: String, params: CustomerSyncPaymentMethodsFromGatewayParams = @@ -262,24 +262,24 @@ interface CustomerService { requestOptions, ) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( customerId: String, params: CustomerSyncPaymentMethodsFromGatewayParams = CustomerSyncPaymentMethodsFromGatewayParams.none(), ) = syncPaymentMethodsFromGateway(customerId, params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway( params: CustomerSyncPaymentMethodsFromGatewayParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway(params: CustomerSyncPaymentMethodsFromGatewayParams) = syncPaymentMethodsFromGateway(params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ fun syncPaymentMethodsFromGateway(customerId: String, requestOptions: RequestOptions) = syncPaymentMethodsFromGateway( customerId, @@ -301,7 +301,7 @@ interface CustomerService { CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams.none(), ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams = @@ -313,7 +313,7 @@ interface CustomerService { requestOptions, ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams = @@ -325,18 +325,18 @@ interface CustomerService { RequestOptions.none(), ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams, requestOptions: RequestOptions = RequestOptions.none(), ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams ) = syncPaymentMethodsFromGatewayByExternalCustomerId(params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, requestOptions: RequestOptions, @@ -355,30 +355,30 @@ interface CustomerService { fun updateByExternalId(id: String): Customer = updateByExternalId(id, CustomerUpdateByExternalIdParams.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( id: String, params: CustomerUpdateByExternalIdParams = CustomerUpdateByExternalIdParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Customer = updateByExternalId(params.toBuilder().id(id).build(), requestOptions) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( id: String, params: CustomerUpdateByExternalIdParams = CustomerUpdateByExternalIdParams.none(), ): Customer = updateByExternalId(id, params, RequestOptions.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId( params: CustomerUpdateByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): Customer - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId(params: CustomerUpdateByExternalIdParams): Customer = updateByExternalId(params, RequestOptions.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ fun updateByExternalId(id: String, requestOptions: RequestOptions): Customer = updateByExternalId(id, CustomerUpdateByExternalIdParams.none(), requestOptions) @@ -406,7 +406,7 @@ interface CustomerService { fun create(params: CustomerCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: CustomerCreateParams, @@ -421,7 +421,7 @@ interface CustomerService { fun update(customerId: String): HttpResponseFor = update(customerId, CustomerUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( customerId: String, @@ -430,26 +430,26 @@ interface CustomerService { ): HttpResponseFor = update(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( customerId: String, params: CustomerUpdateParams = CustomerUpdateParams.none(), ): HttpResponseFor = update(customerId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: CustomerUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: CustomerUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(customerId: String, requestOptions: RequestOptions): HttpResponseFor = update(customerId, CustomerUpdateParams.none(), requestOptions) @@ -461,20 +461,20 @@ interface CustomerService { @MustBeClosed fun list(): HttpResponseFor = list(CustomerListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerListParams = CustomerListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerListParams = CustomerListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(CustomerListParams.none(), requestOptions) @@ -487,7 +487,7 @@ interface CustomerService { fun delete(customerId: String): HttpResponse = delete(customerId, CustomerDeleteParams.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( customerId: String, @@ -495,26 +495,26 @@ interface CustomerService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse = delete(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( customerId: String, params: CustomerDeleteParams = CustomerDeleteParams.none(), ): HttpResponse = delete(customerId, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( params: CustomerDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete(params: CustomerDeleteParams): HttpResponse = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete(customerId: String, requestOptions: RequestOptions): HttpResponse = delete(customerId, CustomerDeleteParams.none(), requestOptions) @@ -527,7 +527,7 @@ interface CustomerService { fun fetch(customerId: String): HttpResponseFor = fetch(customerId, CustomerFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( customerId: String, @@ -536,26 +536,26 @@ interface CustomerService { ): HttpResponseFor = fetch(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( customerId: String, params: CustomerFetchParams = CustomerFetchParams.none(), ): HttpResponseFor = fetch(customerId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: CustomerFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: CustomerFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(customerId: String, requestOptions: RequestOptions): HttpResponseFor = fetch(customerId, CustomerFetchParams.none(), requestOptions) @@ -569,7 +569,7 @@ interface CustomerService { fun fetchByExternalId(externalCustomerId: String): HttpResponseFor = fetchByExternalId(externalCustomerId, CustomerFetchByExternalIdParams.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ @MustBeClosed fun fetchByExternalId( externalCustomerId: String, @@ -581,7 +581,7 @@ interface CustomerService { requestOptions, ) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ @MustBeClosed fun fetchByExternalId( externalCustomerId: String, @@ -589,19 +589,19 @@ interface CustomerService { ): HttpResponseFor = fetchByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ @MustBeClosed fun fetchByExternalId( params: CustomerFetchByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ @MustBeClosed fun fetchByExternalId(params: CustomerFetchByExternalIdParams): HttpResponseFor = fetchByExternalId(params, RequestOptions.none()) - /** @see [fetchByExternalId] */ + /** @see fetchByExternalId */ @MustBeClosed fun fetchByExternalId( externalCustomerId: String, @@ -625,7 +625,7 @@ interface CustomerService { CustomerSyncPaymentMethodsFromGatewayParams.none(), ) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ @MustBeClosed fun syncPaymentMethodsFromGateway( customerId: String, @@ -638,7 +638,7 @@ interface CustomerService { requestOptions, ) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ @MustBeClosed fun syncPaymentMethodsFromGateway( customerId: String, @@ -646,20 +646,20 @@ interface CustomerService { CustomerSyncPaymentMethodsFromGatewayParams.none(), ): HttpResponse = syncPaymentMethodsFromGateway(customerId, params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ @MustBeClosed fun syncPaymentMethodsFromGateway( params: CustomerSyncPaymentMethodsFromGatewayParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ @MustBeClosed fun syncPaymentMethodsFromGateway( params: CustomerSyncPaymentMethodsFromGatewayParams ): HttpResponse = syncPaymentMethodsFromGateway(params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGateway] */ + /** @see syncPaymentMethodsFromGateway */ @MustBeClosed fun syncPaymentMethodsFromGateway( customerId: String, @@ -686,7 +686,7 @@ interface CustomerService { CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams.none(), ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ @MustBeClosed fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, @@ -699,7 +699,7 @@ interface CustomerService { requestOptions, ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ @MustBeClosed fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, @@ -712,21 +712,21 @@ interface CustomerService { RequestOptions.none(), ) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ @MustBeClosed fun syncPaymentMethodsFromGatewayByExternalCustomerId( params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ @MustBeClosed fun syncPaymentMethodsFromGatewayByExternalCustomerId( params: CustomerSyncPaymentMethodsFromGatewayByExternalCustomerIdParams ): HttpResponse = syncPaymentMethodsFromGatewayByExternalCustomerId(params, RequestOptions.none()) - /** @see [syncPaymentMethodsFromGatewayByExternalCustomerId] */ + /** @see syncPaymentMethodsFromGatewayByExternalCustomerId */ @MustBeClosed fun syncPaymentMethodsFromGatewayByExternalCustomerId( externalCustomerId: String, @@ -747,7 +747,7 @@ interface CustomerService { fun updateByExternalId(id: String): HttpResponseFor = updateByExternalId(id, CustomerUpdateByExternalIdParams.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ @MustBeClosed fun updateByExternalId( id: String, @@ -756,27 +756,27 @@ interface CustomerService { ): HttpResponseFor = updateByExternalId(params.toBuilder().id(id).build(), requestOptions) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ @MustBeClosed fun updateByExternalId( id: String, params: CustomerUpdateByExternalIdParams = CustomerUpdateByExternalIdParams.none(), ): HttpResponseFor = updateByExternalId(id, params, RequestOptions.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ @MustBeClosed fun updateByExternalId( params: CustomerUpdateByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ @MustBeClosed fun updateByExternalId( params: CustomerUpdateByExternalIdParams ): HttpResponseFor = updateByExternalId(params, RequestOptions.none()) - /** @see [updateByExternalId] */ + /** @see updateByExternalId */ @MustBeClosed fun updateByExternalId( id: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/DimensionalPriceGroupService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/DimensionalPriceGroupService.kt index 5089a753..a8eb3fa6 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/DimensionalPriceGroupService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/DimensionalPriceGroupService.kt @@ -42,7 +42,7 @@ interface DimensionalPriceGroupService { fun create(params: DimensionalPriceGroupCreateParams): DimensionalPriceGroup = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: DimensionalPriceGroupCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -52,7 +52,7 @@ interface DimensionalPriceGroupService { fun retrieve(dimensionalPriceGroupId: String): DimensionalPriceGroup = retrieve(dimensionalPriceGroupId, DimensionalPriceGroupRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( dimensionalPriceGroupId: String, params: DimensionalPriceGroupRetrieveParams = DimensionalPriceGroupRetrieveParams.none(), @@ -63,23 +63,23 @@ interface DimensionalPriceGroupService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( dimensionalPriceGroupId: String, params: DimensionalPriceGroupRetrieveParams = DimensionalPriceGroupRetrieveParams.none(), ): DimensionalPriceGroup = retrieve(dimensionalPriceGroupId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): DimensionalPriceGroup - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: DimensionalPriceGroupRetrieveParams): DimensionalPriceGroup = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( dimensionalPriceGroupId: String, requestOptions: RequestOptions, @@ -93,18 +93,18 @@ interface DimensionalPriceGroupService { /** List dimensional price groups */ fun list(): DimensionalPriceGroupListPage = list(DimensionalPriceGroupListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: DimensionalPriceGroupListParams = DimensionalPriceGroupListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): DimensionalPriceGroupListPage - /** @see [list] */ + /** @see list */ fun list( params: DimensionalPriceGroupListParams = DimensionalPriceGroupListParams.none() ): DimensionalPriceGroupListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): DimensionalPriceGroupListPage = list(DimensionalPriceGroupListParams.none(), requestOptions) @@ -135,7 +135,7 @@ interface DimensionalPriceGroupService { params: DimensionalPriceGroupCreateParams ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: DimensionalPriceGroupCreateParams, @@ -151,7 +151,7 @@ interface DimensionalPriceGroupService { fun retrieve(dimensionalPriceGroupId: String): HttpResponseFor = retrieve(dimensionalPriceGroupId, DimensionalPriceGroupRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( dimensionalPriceGroupId: String, @@ -164,7 +164,7 @@ interface DimensionalPriceGroupService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( dimensionalPriceGroupId: String, @@ -172,20 +172,20 @@ interface DimensionalPriceGroupService { ): HttpResponseFor = retrieve(dimensionalPriceGroupId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: DimensionalPriceGroupRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: DimensionalPriceGroupRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( dimensionalPriceGroupId: String, @@ -205,20 +205,20 @@ interface DimensionalPriceGroupService { fun list(): HttpResponseFor = list(DimensionalPriceGroupListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: DimensionalPriceGroupListParams = DimensionalPriceGroupListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: DimensionalPriceGroupListParams = DimensionalPriceGroupListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(DimensionalPriceGroupListParams.none(), requestOptions) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/EventService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/EventService.kt index 2666af73..9d7aa5ee 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/EventService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/EventService.kt @@ -80,18 +80,18 @@ interface EventService { fun update(eventId: String, params: EventUpdateParams): EventUpdateResponse = update(eventId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( eventId: String, params: EventUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): EventUpdateResponse = update(params.toBuilder().eventId(eventId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update(params: EventUpdateParams): EventUpdateResponse = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: EventUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -136,7 +136,7 @@ interface EventService { fun deprecate(eventId: String): EventDeprecateResponse = deprecate(eventId, EventDeprecateParams.none()) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( eventId: String, params: EventDeprecateParams = EventDeprecateParams.none(), @@ -144,23 +144,23 @@ interface EventService { ): EventDeprecateResponse = deprecate(params.toBuilder().eventId(eventId).build(), requestOptions) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( eventId: String, params: EventDeprecateParams = EventDeprecateParams.none(), ): EventDeprecateResponse = deprecate(eventId, params, RequestOptions.none()) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate( params: EventDeprecateParams, requestOptions: RequestOptions = RequestOptions.none(), ): EventDeprecateResponse - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate(params: EventDeprecateParams): EventDeprecateResponse = deprecate(params, RequestOptions.none()) - /** @see [deprecate] */ + /** @see deprecate */ fun deprecate(eventId: String, requestOptions: RequestOptions): EventDeprecateResponse = deprecate(eventId, EventDeprecateParams.none(), requestOptions) @@ -358,7 +358,7 @@ interface EventService { fun ingest(params: EventIngestParams): EventIngestResponse = ingest(params, RequestOptions.none()) - /** @see [ingest] */ + /** @see ingest */ fun ingest( params: EventIngestParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -383,7 +383,7 @@ interface EventService { fun search(params: EventSearchParams): EventSearchResponse = search(params, RequestOptions.none()) - /** @see [search] */ + /** @see search */ fun search( params: EventSearchParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -413,7 +413,7 @@ interface EventService { params: EventUpdateParams, ): HttpResponseFor = update(eventId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( eventId: String, @@ -422,12 +422,12 @@ interface EventService { ): HttpResponseFor = update(params.toBuilder().eventId(eventId).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: EventUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: EventUpdateParams, @@ -442,7 +442,7 @@ interface EventService { fun deprecate(eventId: String): HttpResponseFor = deprecate(eventId, EventDeprecateParams.none()) - /** @see [deprecate] */ + /** @see deprecate */ @MustBeClosed fun deprecate( eventId: String, @@ -451,7 +451,7 @@ interface EventService { ): HttpResponseFor = deprecate(params.toBuilder().eventId(eventId).build(), requestOptions) - /** @see [deprecate] */ + /** @see deprecate */ @MustBeClosed fun deprecate( eventId: String, @@ -459,19 +459,19 @@ interface EventService { ): HttpResponseFor = deprecate(eventId, params, RequestOptions.none()) - /** @see [deprecate] */ + /** @see deprecate */ @MustBeClosed fun deprecate( params: EventDeprecateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [deprecate] */ + /** @see deprecate */ @MustBeClosed fun deprecate(params: EventDeprecateParams): HttpResponseFor = deprecate(params, RequestOptions.none()) - /** @see [deprecate] */ + /** @see deprecate */ @MustBeClosed fun deprecate( eventId: String, @@ -487,7 +487,7 @@ interface EventService { fun ingest(params: EventIngestParams): HttpResponseFor = ingest(params, RequestOptions.none()) - /** @see [ingest] */ + /** @see ingest */ @MustBeClosed fun ingest( params: EventIngestParams, @@ -502,7 +502,7 @@ interface EventService { fun search(params: EventSearchParams): HttpResponseFor = search(params, RequestOptions.none()) - /** @see [search] */ + /** @see search */ @MustBeClosed fun search( params: EventSearchParams, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/InvoiceLineItemService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/InvoiceLineItemService.kt index 3940b943..84ef5652 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/InvoiceLineItemService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/InvoiceLineItemService.kt @@ -31,7 +31,7 @@ interface InvoiceLineItemService { fun create(params: InvoiceLineItemCreateParams): InvoiceLineItemCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: InvoiceLineItemCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -61,7 +61,7 @@ interface InvoiceLineItemService { params: InvoiceLineItemCreateParams ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: InvoiceLineItemCreateParams, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/InvoiceService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/InvoiceService.kt index 4f372335..b08fe22e 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/InvoiceService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/InvoiceService.kt @@ -37,43 +37,45 @@ interface InvoiceService { /** This endpoint is used to create a one-off invoice for a customer. */ fun create(params: InvoiceCreateParams): Invoice = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: InvoiceCreateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Invoice /** - * This endpoint allows you to update the `metadata` property on an invoice. If you pass null - * for the metadata value, it will clear any existing metadata for that invoice. + * This endpoint allows you to update the `metadata`, `net_terms`, and `due_date` properties on + * an invoice. If you pass null for the metadata value, it will clear any existing metadata for + * that invoice. * - * `metadata` can be modified regardless of invoice state. + * `metadata` can be modified regardless of invoice state. `net_terms` and `due_date` can only + * be modified if the invoice is in a `draft` state. */ fun update(invoiceId: String): Invoice = update(invoiceId, InvoiceUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( invoiceId: String, params: InvoiceUpdateParams = InvoiceUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Invoice = update(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( invoiceId: String, params: InvoiceUpdateParams = InvoiceUpdateParams.none(), ): Invoice = update(invoiceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: InvoiceUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Invoice - /** @see [update] */ + /** @see update */ fun update(params: InvoiceUpdateParams): Invoice = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(invoiceId: String, requestOptions: RequestOptions): Invoice = update(invoiceId, InvoiceUpdateParams.none(), requestOptions) @@ -93,17 +95,17 @@ interface InvoiceService { */ fun list(): InvoiceListPage = list(InvoiceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: InvoiceListParams = InvoiceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): InvoiceListPage - /** @see [list] */ + /** @see list */ fun list(params: InvoiceListParams = InvoiceListParams.none()): InvoiceListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): InvoiceListPage = list(InvoiceListParams.none(), requestOptions) @@ -112,27 +114,27 @@ interface InvoiceService { */ fun fetch(invoiceId: String): Invoice = fetch(invoiceId, InvoiceFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( invoiceId: String, params: InvoiceFetchParams = InvoiceFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Invoice = fetch(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch(invoiceId: String, params: InvoiceFetchParams = InvoiceFetchParams.none()): Invoice = fetch(invoiceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: InvoiceFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): Invoice - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: InvoiceFetchParams): Invoice = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(invoiceId: String, requestOptions: RequestOptions): Invoice = fetch(invoiceId, InvoiceFetchParams.none(), requestOptions) @@ -143,7 +145,7 @@ interface InvoiceService { fun fetchUpcoming(params: InvoiceFetchUpcomingParams): InvoiceFetchUpcomingResponse = fetchUpcoming(params, RequestOptions.none()) - /** @see [fetchUpcoming] */ + /** @see fetchUpcoming */ fun fetchUpcoming( params: InvoiceFetchUpcomingParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -158,27 +160,27 @@ interface InvoiceService { */ fun issue(invoiceId: String): Invoice = issue(invoiceId, InvoiceIssueParams.none()) - /** @see [issue] */ + /** @see issue */ fun issue( invoiceId: String, params: InvoiceIssueParams = InvoiceIssueParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Invoice = issue(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [issue] */ + /** @see issue */ fun issue(invoiceId: String, params: InvoiceIssueParams = InvoiceIssueParams.none()): Invoice = issue(invoiceId, params, RequestOptions.none()) - /** @see [issue] */ + /** @see issue */ fun issue( params: InvoiceIssueParams, requestOptions: RequestOptions = RequestOptions.none(), ): Invoice - /** @see [issue] */ + /** @see issue */ fun issue(params: InvoiceIssueParams): Invoice = issue(params, RequestOptions.none()) - /** @see [issue] */ + /** @see issue */ fun issue(invoiceId: String, requestOptions: RequestOptions): Invoice = issue(invoiceId, InvoiceIssueParams.none(), requestOptions) @@ -189,17 +191,17 @@ interface InvoiceService { fun markPaid(invoiceId: String, params: InvoiceMarkPaidParams): Invoice = markPaid(invoiceId, params, RequestOptions.none()) - /** @see [markPaid] */ + /** @see markPaid */ fun markPaid( invoiceId: String, params: InvoiceMarkPaidParams, requestOptions: RequestOptions = RequestOptions.none(), ): Invoice = markPaid(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [markPaid] */ + /** @see markPaid */ fun markPaid(params: InvoiceMarkPaidParams): Invoice = markPaid(params, RequestOptions.none()) - /** @see [markPaid] */ + /** @see markPaid */ fun markPaid( params: InvoiceMarkPaidParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -211,27 +213,27 @@ interface InvoiceService { */ fun pay(invoiceId: String): Invoice = pay(invoiceId, InvoicePayParams.none()) - /** @see [pay] */ + /** @see pay */ fun pay( invoiceId: String, params: InvoicePayParams = InvoicePayParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Invoice = pay(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [pay] */ + /** @see pay */ fun pay(invoiceId: String, params: InvoicePayParams = InvoicePayParams.none()): Invoice = pay(invoiceId, params, RequestOptions.none()) - /** @see [pay] */ + /** @see pay */ fun pay( params: InvoicePayParams, requestOptions: RequestOptions = RequestOptions.none(), ): Invoice - /** @see [pay] */ + /** @see pay */ fun pay(params: InvoicePayParams): Invoice = pay(params, RequestOptions.none()) - /** @see [pay] */ + /** @see pay */ fun pay(invoiceId: String, requestOptions: RequestOptions): Invoice = pay(invoiceId, InvoicePayParams.none(), requestOptions) @@ -250,30 +252,30 @@ interface InvoiceService { fun voidInvoice(invoiceId: String): Invoice = voidInvoice(invoiceId, InvoiceVoidInvoiceParams.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( invoiceId: String, params: InvoiceVoidInvoiceParams = InvoiceVoidInvoiceParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Invoice = voidInvoice(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( invoiceId: String, params: InvoiceVoidInvoiceParams = InvoiceVoidInvoiceParams.none(), ): Invoice = voidInvoice(invoiceId, params, RequestOptions.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice( params: InvoiceVoidInvoiceParams, requestOptions: RequestOptions = RequestOptions.none(), ): Invoice - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice(params: InvoiceVoidInvoiceParams): Invoice = voidInvoice(params, RequestOptions.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ fun voidInvoice(invoiceId: String, requestOptions: RequestOptions): Invoice = voidInvoice(invoiceId, InvoiceVoidInvoiceParams.none(), requestOptions) @@ -295,7 +297,7 @@ interface InvoiceService { fun create(params: InvoiceCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: InvoiceCreateParams, @@ -310,7 +312,7 @@ interface InvoiceService { fun update(invoiceId: String): HttpResponseFor = update(invoiceId, InvoiceUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( invoiceId: String, @@ -319,26 +321,26 @@ interface InvoiceService { ): HttpResponseFor = update(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( invoiceId: String, params: InvoiceUpdateParams = InvoiceUpdateParams.none(), ): HttpResponseFor = update(invoiceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: InvoiceUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: InvoiceUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(invoiceId: String, requestOptions: RequestOptions): HttpResponseFor = update(invoiceId, InvoiceUpdateParams.none(), requestOptions) @@ -349,20 +351,20 @@ interface InvoiceService { */ @MustBeClosed fun list(): HttpResponseFor = list(InvoiceListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: InvoiceListParams = InvoiceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: InvoiceListParams = InvoiceListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(InvoiceListParams.none(), requestOptions) @@ -375,7 +377,7 @@ interface InvoiceService { fun fetch(invoiceId: String): HttpResponseFor = fetch(invoiceId, InvoiceFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( invoiceId: String, @@ -384,26 +386,26 @@ interface InvoiceService { ): HttpResponseFor = fetch(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( invoiceId: String, params: InvoiceFetchParams = InvoiceFetchParams.none(), ): HttpResponseFor = fetch(invoiceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: InvoiceFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: InvoiceFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(invoiceId: String, requestOptions: RequestOptions): HttpResponseFor = fetch(invoiceId, InvoiceFetchParams.none(), requestOptions) @@ -418,7 +420,7 @@ interface InvoiceService { ): HttpResponseFor = fetchUpcoming(params, RequestOptions.none()) - /** @see [fetchUpcoming] */ + /** @see fetchUpcoming */ @MustBeClosed fun fetchUpcoming( params: InvoiceFetchUpcomingParams, @@ -433,7 +435,7 @@ interface InvoiceService { fun issue(invoiceId: String): HttpResponseFor = issue(invoiceId, InvoiceIssueParams.none()) - /** @see [issue] */ + /** @see issue */ @MustBeClosed fun issue( invoiceId: String, @@ -442,26 +444,26 @@ interface InvoiceService { ): HttpResponseFor = issue(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [issue] */ + /** @see issue */ @MustBeClosed fun issue( invoiceId: String, params: InvoiceIssueParams = InvoiceIssueParams.none(), ): HttpResponseFor = issue(invoiceId, params, RequestOptions.none()) - /** @see [issue] */ + /** @see issue */ @MustBeClosed fun issue( params: InvoiceIssueParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [issue] */ + /** @see issue */ @MustBeClosed fun issue(params: InvoiceIssueParams): HttpResponseFor = issue(params, RequestOptions.none()) - /** @see [issue] */ + /** @see issue */ @MustBeClosed fun issue(invoiceId: String, requestOptions: RequestOptions): HttpResponseFor = issue(invoiceId, InvoiceIssueParams.none(), requestOptions) @@ -474,7 +476,7 @@ interface InvoiceService { fun markPaid(invoiceId: String, params: InvoiceMarkPaidParams): HttpResponseFor = markPaid(invoiceId, params, RequestOptions.none()) - /** @see [markPaid] */ + /** @see markPaid */ @MustBeClosed fun markPaid( invoiceId: String, @@ -483,12 +485,12 @@ interface InvoiceService { ): HttpResponseFor = markPaid(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [markPaid] */ + /** @see markPaid */ @MustBeClosed fun markPaid(params: InvoiceMarkPaidParams): HttpResponseFor = markPaid(params, RequestOptions.none()) - /** @see [markPaid] */ + /** @see markPaid */ @MustBeClosed fun markPaid( params: InvoiceMarkPaidParams, @@ -503,7 +505,7 @@ interface InvoiceService { fun pay(invoiceId: String): HttpResponseFor = pay(invoiceId, InvoicePayParams.none()) - /** @see [pay] */ + /** @see pay */ @MustBeClosed fun pay( invoiceId: String, @@ -512,26 +514,26 @@ interface InvoiceService { ): HttpResponseFor = pay(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [pay] */ + /** @see pay */ @MustBeClosed fun pay( invoiceId: String, params: InvoicePayParams = InvoicePayParams.none(), ): HttpResponseFor = pay(invoiceId, params, RequestOptions.none()) - /** @see [pay] */ + /** @see pay */ @MustBeClosed fun pay( params: InvoicePayParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [pay] */ + /** @see pay */ @MustBeClosed fun pay(params: InvoicePayParams): HttpResponseFor = pay(params, RequestOptions.none()) - /** @see [pay] */ + /** @see pay */ @MustBeClosed fun pay(invoiceId: String, requestOptions: RequestOptions): HttpResponseFor = pay(invoiceId, InvoicePayParams.none(), requestOptions) @@ -544,7 +546,7 @@ interface InvoiceService { fun voidInvoice(invoiceId: String): HttpResponseFor = voidInvoice(invoiceId, InvoiceVoidInvoiceParams.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ @MustBeClosed fun voidInvoice( invoiceId: String, @@ -553,26 +555,26 @@ interface InvoiceService { ): HttpResponseFor = voidInvoice(params.toBuilder().invoiceId(invoiceId).build(), requestOptions) - /** @see [voidInvoice] */ + /** @see voidInvoice */ @MustBeClosed fun voidInvoice( invoiceId: String, params: InvoiceVoidInvoiceParams = InvoiceVoidInvoiceParams.none(), ): HttpResponseFor = voidInvoice(invoiceId, params, RequestOptions.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ @MustBeClosed fun voidInvoice( params: InvoiceVoidInvoiceParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [voidInvoice] */ + /** @see voidInvoice */ @MustBeClosed fun voidInvoice(params: InvoiceVoidInvoiceParams): HttpResponseFor = voidInvoice(params, RequestOptions.none()) - /** @see [voidInvoice] */ + /** @see voidInvoice */ @MustBeClosed fun voidInvoice( invoiceId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/ItemService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/ItemService.kt index 57f466f6..44484d71 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/ItemService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/ItemService.kt @@ -32,7 +32,7 @@ interface ItemService { /** This endpoint is used to create an [Item](/core-concepts#item). */ fun create(params: ItemCreateParams): Item = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: ItemCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -41,95 +41,95 @@ interface ItemService { /** This endpoint can be used to update properties on the Item. */ fun update(itemId: String): Item = update(itemId, ItemUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( itemId: String, params: ItemUpdateParams = ItemUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Item = update(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update(itemId: String, params: ItemUpdateParams = ItemUpdateParams.none()): Item = update(itemId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: ItemUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Item - /** @see [update] */ + /** @see update */ fun update(params: ItemUpdateParams): Item = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(itemId: String, requestOptions: RequestOptions): Item = update(itemId, ItemUpdateParams.none(), requestOptions) /** This endpoint returns a list of all Items, ordered in descending order by creation time. */ fun list(): ItemListPage = list(ItemListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: ItemListParams = ItemListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): ItemListPage - /** @see [list] */ + /** @see list */ fun list(params: ItemListParams = ItemListParams.none()): ItemListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): ItemListPage = list(ItemListParams.none(), requestOptions) /** Archive item */ fun archive(itemId: String): Item = archive(itemId, ItemArchiveParams.none()) - /** @see [archive] */ + /** @see archive */ fun archive( itemId: String, params: ItemArchiveParams = ItemArchiveParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Item = archive(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [archive] */ + /** @see archive */ fun archive(itemId: String, params: ItemArchiveParams = ItemArchiveParams.none()): Item = archive(itemId, params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive( params: ItemArchiveParams, requestOptions: RequestOptions = RequestOptions.none(), ): Item - /** @see [archive] */ + /** @see archive */ fun archive(params: ItemArchiveParams): Item = archive(params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ fun archive(itemId: String, requestOptions: RequestOptions): Item = archive(itemId, ItemArchiveParams.none(), requestOptions) /** This endpoint returns an item identified by its item_id. */ fun fetch(itemId: String): Item = fetch(itemId, ItemFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( itemId: String, params: ItemFetchParams = ItemFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Item = fetch(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch(itemId: String, params: ItemFetchParams = ItemFetchParams.none()): Item = fetch(itemId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: ItemFetchParams, requestOptions: RequestOptions = RequestOptions.none()): Item - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: ItemFetchParams): Item = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(itemId: String, requestOptions: RequestOptions): Item = fetch(itemId, ItemFetchParams.none(), requestOptions) @@ -151,7 +151,7 @@ interface ItemService { fun create(params: ItemCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: ItemCreateParams, @@ -165,7 +165,7 @@ interface ItemService { @MustBeClosed fun update(itemId: String): HttpResponseFor = update(itemId, ItemUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( itemId: String, @@ -173,26 +173,26 @@ interface ItemService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor = update(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( itemId: String, params: ItemUpdateParams = ItemUpdateParams.none(), ): HttpResponseFor = update(itemId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: ItemUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: ItemUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(itemId: String, requestOptions: RequestOptions): HttpResponseFor = update(itemId, ItemUpdateParams.none(), requestOptions) @@ -203,19 +203,19 @@ interface ItemService { */ @MustBeClosed fun list(): HttpResponseFor = list(ItemListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: ItemListParams = ItemListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(params: ItemListParams = ItemListParams.none()): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(ItemListParams.none(), requestOptions) @@ -228,7 +228,7 @@ interface ItemService { fun archive(itemId: String): HttpResponseFor = archive(itemId, ItemArchiveParams.none()) - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive( itemId: String, @@ -237,26 +237,26 @@ interface ItemService { ): HttpResponseFor = archive(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive( itemId: String, params: ItemArchiveParams = ItemArchiveParams.none(), ): HttpResponseFor = archive(itemId, params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive( params: ItemArchiveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive(params: ItemArchiveParams): HttpResponseFor = archive(params, RequestOptions.none()) - /** @see [archive] */ + /** @see archive */ @MustBeClosed fun archive(itemId: String, requestOptions: RequestOptions): HttpResponseFor = archive(itemId, ItemArchiveParams.none(), requestOptions) @@ -268,7 +268,7 @@ interface ItemService { @MustBeClosed fun fetch(itemId: String): HttpResponseFor = fetch(itemId, ItemFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( itemId: String, @@ -276,26 +276,26 @@ interface ItemService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor = fetch(params.toBuilder().itemId(itemId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( itemId: String, params: ItemFetchParams = ItemFetchParams.none(), ): HttpResponseFor = fetch(itemId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: ItemFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: ItemFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(itemId: String, requestOptions: RequestOptions): HttpResponseFor = fetch(itemId, ItemFetchParams.none(), requestOptions) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/MetricService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/MetricService.kt index 89adc779..27b8d753 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/MetricService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/MetricService.kt @@ -35,7 +35,7 @@ interface MetricService { */ fun create(params: MetricCreateParams): BillableMetric = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: MetricCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -47,29 +47,29 @@ interface MetricService { */ fun update(metricId: String): BillableMetric = update(metricId, MetricUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( metricId: String, params: MetricUpdateParams = MetricUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): BillableMetric = update(params.toBuilder().metricId(metricId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( metricId: String, params: MetricUpdateParams = MetricUpdateParams.none(), ): BillableMetric = update(metricId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: MetricUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): BillableMetric - /** @see [update] */ + /** @see update */ fun update(params: MetricUpdateParams): BillableMetric = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(metricId: String, requestOptions: RequestOptions): BillableMetric = update(metricId, MetricUpdateParams.none(), requestOptions) @@ -80,17 +80,17 @@ interface MetricService { */ fun list(): MetricListPage = list(MetricListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: MetricListParams = MetricListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): MetricListPage - /** @see [list] */ + /** @see list */ fun list(params: MetricListParams = MetricListParams.none()): MetricListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): MetricListPage = list(MetricListParams.none(), requestOptions) @@ -100,29 +100,29 @@ interface MetricService { */ fun fetch(metricId: String): BillableMetric = fetch(metricId, MetricFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( metricId: String, params: MetricFetchParams = MetricFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): BillableMetric = fetch(params.toBuilder().metricId(metricId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( metricId: String, params: MetricFetchParams = MetricFetchParams.none(), ): BillableMetric = fetch(metricId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: MetricFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): BillableMetric - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: MetricFetchParams): BillableMetric = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(metricId: String, requestOptions: RequestOptions): BillableMetric = fetch(metricId, MetricFetchParams.none(), requestOptions) @@ -144,7 +144,7 @@ interface MetricService { fun create(params: MetricCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: MetricCreateParams, @@ -159,7 +159,7 @@ interface MetricService { fun update(metricId: String): HttpResponseFor = update(metricId, MetricUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( metricId: String, @@ -168,26 +168,26 @@ interface MetricService { ): HttpResponseFor = update(params.toBuilder().metricId(metricId).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( metricId: String, params: MetricUpdateParams = MetricUpdateParams.none(), ): HttpResponseFor = update(metricId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: MetricUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: MetricUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( metricId: String, @@ -201,20 +201,20 @@ interface MetricService { */ @MustBeClosed fun list(): HttpResponseFor = list(MetricListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: MetricListParams = MetricListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: MetricListParams = MetricListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(MetricListParams.none(), requestOptions) @@ -227,7 +227,7 @@ interface MetricService { fun fetch(metricId: String): HttpResponseFor = fetch(metricId, MetricFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( metricId: String, @@ -236,26 +236,26 @@ interface MetricService { ): HttpResponseFor = fetch(params.toBuilder().metricId(metricId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( metricId: String, params: MetricFetchParams = MetricFetchParams.none(), ): HttpResponseFor = fetch(metricId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: MetricFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: MetricFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( metricId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/PlanService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/PlanService.kt index a361bcde..8635f9ee 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/PlanService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/PlanService.kt @@ -34,7 +34,7 @@ interface PlanService { /** This endpoint allows creation of plans including their prices. */ fun create(params: PlanCreateParams): Plan = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: PlanCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -48,27 +48,27 @@ interface PlanService { */ fun update(planId: String): Plan = update(planId, PlanUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( planId: String, params: PlanUpdateParams = PlanUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Plan = update(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update(planId: String, params: PlanUpdateParams = PlanUpdateParams.none()): Plan = update(planId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PlanUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Plan - /** @see [update] */ + /** @see update */ fun update(params: PlanUpdateParams): Plan = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(planId: String, requestOptions: RequestOptions): Plan = update(planId, PlanUpdateParams.none(), requestOptions) @@ -80,17 +80,17 @@ interface PlanService { */ fun list(): PlanListPage = list(PlanListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: PlanListParams = PlanListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): PlanListPage - /** @see [list] */ + /** @see list */ fun list(params: PlanListParams = PlanListParams.none()): PlanListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): PlanListPage = list(PlanListParams.none(), requestOptions) @@ -114,24 +114,24 @@ interface PlanService { */ fun fetch(planId: String): Plan = fetch(planId, PlanFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( planId: String, params: PlanFetchParams = PlanFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Plan = fetch(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch(planId: String, params: PlanFetchParams = PlanFetchParams.none()): Plan = fetch(planId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PlanFetchParams, requestOptions: RequestOptions = RequestOptions.none()): Plan - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PlanFetchParams): Plan = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(planId: String, requestOptions: RequestOptions): Plan = fetch(planId, PlanFetchParams.none(), requestOptions) @@ -155,7 +155,7 @@ interface PlanService { fun create(params: PlanCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: PlanCreateParams, @@ -169,7 +169,7 @@ interface PlanService { @MustBeClosed fun update(planId: String): HttpResponseFor = update(planId, PlanUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( planId: String, @@ -177,26 +177,26 @@ interface PlanService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor = update(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( planId: String, params: PlanUpdateParams = PlanUpdateParams.none(), ): HttpResponseFor = update(planId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: PlanUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: PlanUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(planId: String, requestOptions: RequestOptions): HttpResponseFor = update(planId, PlanUpdateParams.none(), requestOptions) @@ -207,19 +207,19 @@ interface PlanService { */ @MustBeClosed fun list(): HttpResponseFor = list(PlanListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: PlanListParams = PlanListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(params: PlanListParams = PlanListParams.none()): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(PlanListParams.none(), requestOptions) @@ -231,7 +231,7 @@ interface PlanService { @MustBeClosed fun fetch(planId: String): HttpResponseFor = fetch(planId, PlanFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( planId: String, @@ -239,26 +239,26 @@ interface PlanService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor = fetch(params.toBuilder().planId(planId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( planId: String, params: PlanFetchParams = PlanFetchParams.none(), ): HttpResponseFor = fetch(planId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: PlanFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: PlanFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(planId: String, requestOptions: RequestOptions): HttpResponseFor = fetch(planId, PlanFetchParams.none(), requestOptions) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/PriceService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/PriceService.kt index 7e98683e..15877052 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/PriceService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/PriceService.kt @@ -51,7 +51,7 @@ interface PriceService { */ fun create(params: PriceCreateParams): Price = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: PriceCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -63,27 +63,27 @@ interface PriceService { */ fun update(priceId: String): Price = update(priceId, PriceUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( priceId: String, params: PriceUpdateParams = PriceUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Price = update(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update(priceId: String, params: PriceUpdateParams = PriceUpdateParams.none()): Price = update(priceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PriceUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Price - /** @see [update] */ + /** @see update */ fun update(params: PriceUpdateParams): Price = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(priceId: String, requestOptions: RequestOptions): Price = update(priceId, PriceUpdateParams.none(), requestOptions) @@ -93,17 +93,17 @@ interface PriceService { */ fun list(): PriceListPage = list(PriceListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: PriceListParams = PriceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): PriceListPage - /** @see [list] */ + /** @see list */ fun list(params: PriceListParams = PriceListParams.none()): PriceListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): PriceListPage = list(PriceListParams.none(), requestOptions) @@ -132,18 +132,18 @@ interface PriceService { fun evaluate(priceId: String, params: PriceEvaluateParams): PriceEvaluateResponse = evaluate(priceId, params, RequestOptions.none()) - /** @see [evaluate] */ + /** @see evaluate */ fun evaluate( priceId: String, params: PriceEvaluateParams, requestOptions: RequestOptions = RequestOptions.none(), ): PriceEvaluateResponse = evaluate(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [evaluate] */ + /** @see evaluate */ fun evaluate(params: PriceEvaluateParams): PriceEvaluateResponse = evaluate(params, RequestOptions.none()) - /** @see [evaluate] */ + /** @see evaluate */ fun evaluate( params: PriceEvaluateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -178,7 +178,7 @@ interface PriceService { fun evaluateMultiple(params: PriceEvaluateMultipleParams): PriceEvaluateMultipleResponse = evaluateMultiple(params, RequestOptions.none()) - /** @see [evaluateMultiple] */ + /** @see evaluateMultiple */ fun evaluateMultiple( params: PriceEvaluateMultipleParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -205,7 +205,7 @@ interface PriceService { params: PriceEvaluatePreviewEventsParams ): PriceEvaluatePreviewEventsResponse = evaluatePreviewEvents(params, RequestOptions.none()) - /** @see [evaluatePreviewEvents] */ + /** @see evaluatePreviewEvents */ fun evaluatePreviewEvents( params: PriceEvaluatePreviewEventsParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -214,27 +214,27 @@ interface PriceService { /** This endpoint returns a price given an identifier. */ fun fetch(priceId: String): Price = fetch(priceId, PriceFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( priceId: String, params: PriceFetchParams = PriceFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Price = fetch(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch(priceId: String, params: PriceFetchParams = PriceFetchParams.none()): Price = fetch(priceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PriceFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): Price - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PriceFetchParams): Price = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(priceId: String, requestOptions: RequestOptions): Price = fetch(priceId, PriceFetchParams.none(), requestOptions) @@ -258,7 +258,7 @@ interface PriceService { fun create(params: PriceCreateParams): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: PriceCreateParams, @@ -273,7 +273,7 @@ interface PriceService { fun update(priceId: String): HttpResponseFor = update(priceId, PriceUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( priceId: String, @@ -282,26 +282,26 @@ interface PriceService { ): HttpResponseFor = update(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( priceId: String, params: PriceUpdateParams = PriceUpdateParams.none(), ): HttpResponseFor = update(priceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: PriceUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: PriceUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(priceId: String, requestOptions: RequestOptions): HttpResponseFor = update(priceId, PriceUpdateParams.none(), requestOptions) @@ -312,19 +312,19 @@ interface PriceService { */ @MustBeClosed fun list(): HttpResponseFor = list(PriceListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: PriceListParams = PriceListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(params: PriceListParams = PriceListParams.none()): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(PriceListParams.none(), requestOptions) @@ -339,7 +339,7 @@ interface PriceService { params: PriceEvaluateParams, ): HttpResponseFor = evaluate(priceId, params, RequestOptions.none()) - /** @see [evaluate] */ + /** @see evaluate */ @MustBeClosed fun evaluate( priceId: String, @@ -348,12 +348,12 @@ interface PriceService { ): HttpResponseFor = evaluate(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [evaluate] */ + /** @see evaluate */ @MustBeClosed fun evaluate(params: PriceEvaluateParams): HttpResponseFor = evaluate(params, RequestOptions.none()) - /** @see [evaluate] */ + /** @see evaluate */ @MustBeClosed fun evaluate( params: PriceEvaluateParams, @@ -370,7 +370,7 @@ interface PriceService { ): HttpResponseFor = evaluateMultiple(params, RequestOptions.none()) - /** @see [evaluateMultiple] */ + /** @see evaluateMultiple */ @MustBeClosed fun evaluateMultiple( params: PriceEvaluateMultipleParams, @@ -387,7 +387,7 @@ interface PriceService { ): HttpResponseFor = evaluatePreviewEvents(params, RequestOptions.none()) - /** @see [evaluatePreviewEvents] */ + /** @see evaluatePreviewEvents */ @MustBeClosed fun evaluatePreviewEvents( params: PriceEvaluatePreviewEventsParams, @@ -401,7 +401,7 @@ interface PriceService { @MustBeClosed fun fetch(priceId: String): HttpResponseFor = fetch(priceId, PriceFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( priceId: String, @@ -410,26 +410,26 @@ interface PriceService { ): HttpResponseFor = fetch(params.toBuilder().priceId(priceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( priceId: String, params: PriceFetchParams = PriceFetchParams.none(), ): HttpResponseFor = fetch(priceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: PriceFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: PriceFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(priceId: String, requestOptions: RequestOptions): HttpResponseFor = fetch(priceId, PriceFetchParams.none(), requestOptions) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/SubscriptionChangeService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/SubscriptionChangeService.kt index 55908a18..00048af8 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/SubscriptionChangeService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/SubscriptionChangeService.kt @@ -41,7 +41,7 @@ interface SubscriptionChangeService { fun retrieve(subscriptionChangeId: String): SubscriptionChangeRetrieveResponse = retrieve(subscriptionChangeId, SubscriptionChangeRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( subscriptionChangeId: String, params: SubscriptionChangeRetrieveParams = SubscriptionChangeRetrieveParams.none(), @@ -52,24 +52,24 @@ interface SubscriptionChangeService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( subscriptionChangeId: String, params: SubscriptionChangeRetrieveParams = SubscriptionChangeRetrieveParams.none(), ): SubscriptionChangeRetrieveResponse = retrieve(subscriptionChangeId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: SubscriptionChangeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): SubscriptionChangeRetrieveResponse - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve(params: SubscriptionChangeRetrieveParams): SubscriptionChangeRetrieveResponse = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( subscriptionChangeId: String, requestOptions: RequestOptions, @@ -84,7 +84,7 @@ interface SubscriptionChangeService { fun apply(subscriptionChangeId: String): SubscriptionChangeApplyResponse = apply(subscriptionChangeId, SubscriptionChangeApplyParams.none()) - /** @see [apply] */ + /** @see apply */ fun apply( subscriptionChangeId: String, params: SubscriptionChangeApplyParams = SubscriptionChangeApplyParams.none(), @@ -92,23 +92,23 @@ interface SubscriptionChangeService { ): SubscriptionChangeApplyResponse = apply(params.toBuilder().subscriptionChangeId(subscriptionChangeId).build(), requestOptions) - /** @see [apply] */ + /** @see apply */ fun apply( subscriptionChangeId: String, params: SubscriptionChangeApplyParams = SubscriptionChangeApplyParams.none(), ): SubscriptionChangeApplyResponse = apply(subscriptionChangeId, params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ fun apply( params: SubscriptionChangeApplyParams, requestOptions: RequestOptions = RequestOptions.none(), ): SubscriptionChangeApplyResponse - /** @see [apply] */ + /** @see apply */ fun apply(params: SubscriptionChangeApplyParams): SubscriptionChangeApplyResponse = apply(params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ fun apply( subscriptionChangeId: String, requestOptions: RequestOptions, @@ -123,7 +123,7 @@ interface SubscriptionChangeService { fun cancel(subscriptionChangeId: String): SubscriptionChangeCancelResponse = cancel(subscriptionChangeId, SubscriptionChangeCancelParams.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionChangeId: String, params: SubscriptionChangeCancelParams = SubscriptionChangeCancelParams.none(), @@ -134,24 +134,24 @@ interface SubscriptionChangeService { requestOptions, ) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionChangeId: String, params: SubscriptionChangeCancelParams = SubscriptionChangeCancelParams.none(), ): SubscriptionChangeCancelResponse = cancel(subscriptionChangeId, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: SubscriptionChangeCancelParams, requestOptions: RequestOptions = RequestOptions.none(), ): SubscriptionChangeCancelResponse - /** @see [cancel] */ + /** @see cancel */ fun cancel(params: SubscriptionChangeCancelParams): SubscriptionChangeCancelResponse = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionChangeId: String, requestOptions: RequestOptions, @@ -183,7 +183,7 @@ interface SubscriptionChangeService { ): HttpResponseFor = retrieve(subscriptionChangeId, SubscriptionChangeRetrieveParams.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( subscriptionChangeId: String, @@ -195,7 +195,7 @@ interface SubscriptionChangeService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( subscriptionChangeId: String, @@ -203,21 +203,21 @@ interface SubscriptionChangeService { ): HttpResponseFor = retrieve(subscriptionChangeId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: SubscriptionChangeRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: SubscriptionChangeRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( subscriptionChangeId: String, @@ -234,7 +234,7 @@ interface SubscriptionChangeService { fun apply(subscriptionChangeId: String): HttpResponseFor = apply(subscriptionChangeId, SubscriptionChangeApplyParams.none()) - /** @see [apply] */ + /** @see apply */ @MustBeClosed fun apply( subscriptionChangeId: String, @@ -246,7 +246,7 @@ interface SubscriptionChangeService { requestOptions, ) - /** @see [apply] */ + /** @see apply */ @MustBeClosed fun apply( subscriptionChangeId: String, @@ -254,20 +254,20 @@ interface SubscriptionChangeService { ): HttpResponseFor = apply(subscriptionChangeId, params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @MustBeClosed fun apply( params: SubscriptionChangeApplyParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [apply] */ + /** @see apply */ @MustBeClosed fun apply( params: SubscriptionChangeApplyParams ): HttpResponseFor = apply(params, RequestOptions.none()) - /** @see [apply] */ + /** @see apply */ @MustBeClosed fun apply( subscriptionChangeId: String, @@ -286,7 +286,7 @@ interface SubscriptionChangeService { ): HttpResponseFor = cancel(subscriptionChangeId, SubscriptionChangeCancelParams.none()) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel( subscriptionChangeId: String, @@ -298,7 +298,7 @@ interface SubscriptionChangeService { requestOptions, ) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel( subscriptionChangeId: String, @@ -306,20 +306,20 @@ interface SubscriptionChangeService { ): HttpResponseFor = cancel(subscriptionChangeId, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel( params: SubscriptionChangeCancelParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel( params: SubscriptionChangeCancelParams ): HttpResponseFor = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel( subscriptionChangeId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/SubscriptionService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/SubscriptionService.kt index d8a373e3..6d6c33ec 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/SubscriptionService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/SubscriptionService.kt @@ -285,18 +285,18 @@ interface SubscriptionService { */ fun create(): MutatedSubscription = create(SubscriptionCreateParams.none()) - /** @see [create] */ + /** @see create */ fun create( params: SubscriptionCreateParams = SubscriptionCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): MutatedSubscription - /** @see [create] */ + /** @see create */ fun create( params: SubscriptionCreateParams = SubscriptionCreateParams.none() ): MutatedSubscription = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create(requestOptions: RequestOptions): MutatedSubscription = create(SubscriptionCreateParams.none(), requestOptions) @@ -307,7 +307,7 @@ interface SubscriptionService { fun update(subscriptionId: String): Subscription = update(subscriptionId, SubscriptionUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( subscriptionId: String, params: SubscriptionUpdateParams = SubscriptionUpdateParams.none(), @@ -315,23 +315,23 @@ interface SubscriptionService { ): Subscription = update(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( subscriptionId: String, params: SubscriptionUpdateParams = SubscriptionUpdateParams.none(), ): Subscription = update(subscriptionId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: SubscriptionUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Subscription - /** @see [update] */ + /** @see update */ fun update(params: SubscriptionUpdateParams): Subscription = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(subscriptionId: String, requestOptions: RequestOptions): Subscription = update(subscriptionId, SubscriptionUpdateParams.none(), requestOptions) @@ -347,17 +347,17 @@ interface SubscriptionService { */ fun list(): SubscriptionListPage = list(SubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: SubscriptionListParams = SubscriptionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): SubscriptionListPage - /** @see [list] */ + /** @see list */ fun list(params: SubscriptionListParams = SubscriptionListParams.none()): SubscriptionListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): SubscriptionListPage = list(SubscriptionListParams.none(), requestOptions) @@ -417,7 +417,7 @@ interface SubscriptionService { fun cancel(subscriptionId: String, params: SubscriptionCancelParams): MutatedSubscription = cancel(subscriptionId, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( subscriptionId: String, params: SubscriptionCancelParams, @@ -425,11 +425,11 @@ interface SubscriptionService { ): MutatedSubscription = cancel(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [cancel] */ + /** @see cancel */ fun cancel(params: SubscriptionCancelParams): MutatedSubscription = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ fun cancel( params: SubscriptionCancelParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -442,7 +442,7 @@ interface SubscriptionService { fun fetch(subscriptionId: String): Subscription = fetch(subscriptionId, SubscriptionFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( subscriptionId: String, params: SubscriptionFetchParams = SubscriptionFetchParams.none(), @@ -450,22 +450,22 @@ interface SubscriptionService { ): Subscription = fetch(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( subscriptionId: String, params: SubscriptionFetchParams = SubscriptionFetchParams.none(), ): Subscription = fetch(subscriptionId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: SubscriptionFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): Subscription - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: SubscriptionFetchParams): Subscription = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(subscriptionId: String, requestOptions: RequestOptions): Subscription = fetch(subscriptionId, SubscriptionFetchParams.none(), requestOptions) @@ -483,7 +483,7 @@ interface SubscriptionService { fun fetchCosts(subscriptionId: String): SubscriptionFetchCostsResponse = fetchCosts(subscriptionId, SubscriptionFetchCostsParams.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( subscriptionId: String, params: SubscriptionFetchCostsParams = SubscriptionFetchCostsParams.none(), @@ -491,23 +491,23 @@ interface SubscriptionService { ): SubscriptionFetchCostsResponse = fetchCosts(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( subscriptionId: String, params: SubscriptionFetchCostsParams = SubscriptionFetchCostsParams.none(), ): SubscriptionFetchCostsResponse = fetchCosts(subscriptionId, params, RequestOptions.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( params: SubscriptionFetchCostsParams, requestOptions: RequestOptions = RequestOptions.none(), ): SubscriptionFetchCostsResponse - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts(params: SubscriptionFetchCostsParams): SubscriptionFetchCostsResponse = fetchCosts(params, RequestOptions.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ fun fetchCosts( subscriptionId: String, requestOptions: RequestOptions, @@ -522,7 +522,7 @@ interface SubscriptionService { fun fetchSchedule(subscriptionId: String): SubscriptionFetchSchedulePage = fetchSchedule(subscriptionId, SubscriptionFetchScheduleParams.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( subscriptionId: String, params: SubscriptionFetchScheduleParams = SubscriptionFetchScheduleParams.none(), @@ -530,23 +530,23 @@ interface SubscriptionService { ): SubscriptionFetchSchedulePage = fetchSchedule(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( subscriptionId: String, params: SubscriptionFetchScheduleParams = SubscriptionFetchScheduleParams.none(), ): SubscriptionFetchSchedulePage = fetchSchedule(subscriptionId, params, RequestOptions.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( params: SubscriptionFetchScheduleParams, requestOptions: RequestOptions = RequestOptions.none(), ): SubscriptionFetchSchedulePage - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule(params: SubscriptionFetchScheduleParams): SubscriptionFetchSchedulePage = fetchSchedule(params, RequestOptions.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ fun fetchSchedule( subscriptionId: String, requestOptions: RequestOptions, @@ -733,7 +733,7 @@ interface SubscriptionService { fun fetchUsage(subscriptionId: String): SubscriptionUsage = fetchUsage(subscriptionId, SubscriptionFetchUsageParams.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( subscriptionId: String, params: SubscriptionFetchUsageParams = SubscriptionFetchUsageParams.none(), @@ -741,23 +741,23 @@ interface SubscriptionService { ): SubscriptionUsage = fetchUsage(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( subscriptionId: String, params: SubscriptionFetchUsageParams = SubscriptionFetchUsageParams.none(), ): SubscriptionUsage = fetchUsage(subscriptionId, params, RequestOptions.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage( params: SubscriptionFetchUsageParams, requestOptions: RequestOptions = RequestOptions.none(), ): SubscriptionUsage - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage(params: SubscriptionFetchUsageParams): SubscriptionUsage = fetchUsage(params, RequestOptions.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ fun fetchUsage(subscriptionId: String, requestOptions: RequestOptions): SubscriptionUsage = fetchUsage(subscriptionId, SubscriptionFetchUsageParams.none(), requestOptions) @@ -831,7 +831,7 @@ interface SubscriptionService { fun priceIntervals(subscriptionId: String): MutatedSubscription = priceIntervals(subscriptionId, SubscriptionPriceIntervalsParams.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( subscriptionId: String, params: SubscriptionPriceIntervalsParams = SubscriptionPriceIntervalsParams.none(), @@ -839,23 +839,23 @@ interface SubscriptionService { ): MutatedSubscription = priceIntervals(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( subscriptionId: String, params: SubscriptionPriceIntervalsParams = SubscriptionPriceIntervalsParams.none(), ): MutatedSubscription = priceIntervals(subscriptionId, params, RequestOptions.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( params: SubscriptionPriceIntervalsParams, requestOptions: RequestOptions = RequestOptions.none(), ): MutatedSubscription - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals(params: SubscriptionPriceIntervalsParams): MutatedSubscription = priceIntervals(params, RequestOptions.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ fun priceIntervals( subscriptionId: String, requestOptions: RequestOptions, @@ -868,7 +868,7 @@ interface SubscriptionService { params: SubscriptionRedeemCouponParams, ): MutatedSubscription = redeemCoupon(subscriptionId, params, RequestOptions.none()) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ fun redeemCoupon( subscriptionId: String, params: SubscriptionRedeemCouponParams, @@ -876,11 +876,11 @@ interface SubscriptionService { ): MutatedSubscription = redeemCoupon(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ fun redeemCoupon(params: SubscriptionRedeemCouponParams): MutatedSubscription = redeemCoupon(params, RequestOptions.none()) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ fun redeemCoupon( params: SubscriptionRedeemCouponParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1057,7 +1057,7 @@ interface SubscriptionService { params: SubscriptionSchedulePlanChangeParams, ): MutatedSubscription = schedulePlanChange(subscriptionId, params, RequestOptions.none()) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ fun schedulePlanChange( subscriptionId: String, params: SubscriptionSchedulePlanChangeParams, @@ -1068,11 +1068,11 @@ interface SubscriptionService { requestOptions, ) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ fun schedulePlanChange(params: SubscriptionSchedulePlanChangeParams): MutatedSubscription = schedulePlanChange(params, RequestOptions.none()) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ fun schedulePlanChange( params: SubscriptionSchedulePlanChangeParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1084,7 +1084,7 @@ interface SubscriptionService { fun triggerPhase(subscriptionId: String): MutatedSubscription = triggerPhase(subscriptionId, SubscriptionTriggerPhaseParams.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( subscriptionId: String, params: SubscriptionTriggerPhaseParams = SubscriptionTriggerPhaseParams.none(), @@ -1092,23 +1092,23 @@ interface SubscriptionService { ): MutatedSubscription = triggerPhase(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( subscriptionId: String, params: SubscriptionTriggerPhaseParams = SubscriptionTriggerPhaseParams.none(), ): MutatedSubscription = triggerPhase(subscriptionId, params, RequestOptions.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase( params: SubscriptionTriggerPhaseParams, requestOptions: RequestOptions = RequestOptions.none(), ): MutatedSubscription - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase(params: SubscriptionTriggerPhaseParams): MutatedSubscription = triggerPhase(params, RequestOptions.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ fun triggerPhase(subscriptionId: String, requestOptions: RequestOptions): MutatedSubscription = triggerPhase(subscriptionId, SubscriptionTriggerPhaseParams.none(), requestOptions) @@ -1122,7 +1122,7 @@ interface SubscriptionService { fun unscheduleCancellation(subscriptionId: String): MutatedSubscription = unscheduleCancellation(subscriptionId, SubscriptionUnscheduleCancellationParams.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( subscriptionId: String, params: SubscriptionUnscheduleCancellationParams = @@ -1134,25 +1134,25 @@ interface SubscriptionService { requestOptions, ) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( subscriptionId: String, params: SubscriptionUnscheduleCancellationParams = SubscriptionUnscheduleCancellationParams.none(), ): MutatedSubscription = unscheduleCancellation(subscriptionId, params, RequestOptions.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( params: SubscriptionUnscheduleCancellationParams, requestOptions: RequestOptions = RequestOptions.none(), ): MutatedSubscription - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( params: SubscriptionUnscheduleCancellationParams ): MutatedSubscription = unscheduleCancellation(params, RequestOptions.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ fun unscheduleCancellation( subscriptionId: String, requestOptions: RequestOptions, @@ -1175,7 +1175,7 @@ interface SubscriptionService { ): MutatedSubscription = unscheduleFixedFeeQuantityUpdates(subscriptionId, params, RequestOptions.none()) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ fun unscheduleFixedFeeQuantityUpdates( subscriptionId: String, params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams, @@ -1186,12 +1186,12 @@ interface SubscriptionService { requestOptions, ) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ fun unscheduleFixedFeeQuantityUpdates( params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams ): MutatedSubscription = unscheduleFixedFeeQuantityUpdates(params, RequestOptions.none()) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ fun unscheduleFixedFeeQuantityUpdates( params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1207,7 +1207,7 @@ interface SubscriptionService { SubscriptionUnschedulePendingPlanChangesParams.none(), ) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( subscriptionId: String, params: SubscriptionUnschedulePendingPlanChangesParams = @@ -1219,7 +1219,7 @@ interface SubscriptionService { requestOptions, ) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( subscriptionId: String, params: SubscriptionUnschedulePendingPlanChangesParams = @@ -1227,18 +1227,18 @@ interface SubscriptionService { ): MutatedSubscription = unschedulePendingPlanChanges(subscriptionId, params, RequestOptions.none()) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( params: SubscriptionUnschedulePendingPlanChangesParams, requestOptions: RequestOptions = RequestOptions.none(), ): MutatedSubscription - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( params: SubscriptionUnschedulePendingPlanChangesParams ): MutatedSubscription = unschedulePendingPlanChanges(params, RequestOptions.none()) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ fun unschedulePendingPlanChanges( subscriptionId: String, requestOptions: RequestOptions, @@ -1268,7 +1268,7 @@ interface SubscriptionService { params: SubscriptionUpdateFixedFeeQuantityParams, ): MutatedSubscription = updateFixedFeeQuantity(subscriptionId, params, RequestOptions.none()) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ fun updateFixedFeeQuantity( subscriptionId: String, params: SubscriptionUpdateFixedFeeQuantityParams, @@ -1279,12 +1279,12 @@ interface SubscriptionService { requestOptions, ) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ fun updateFixedFeeQuantity( params: SubscriptionUpdateFixedFeeQuantityParams ): MutatedSubscription = updateFixedFeeQuantity(params, RequestOptions.none()) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ fun updateFixedFeeQuantity( params: SubscriptionUpdateFixedFeeQuantityParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1313,7 +1313,7 @@ interface SubscriptionService { params: SubscriptionUpdateTrialParams, ): MutatedSubscription = updateTrial(subscriptionId, params, RequestOptions.none()) - /** @see [updateTrial] */ + /** @see updateTrial */ fun updateTrial( subscriptionId: String, params: SubscriptionUpdateTrialParams, @@ -1321,11 +1321,11 @@ interface SubscriptionService { ): MutatedSubscription = updateTrial(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [updateTrial] */ + /** @see updateTrial */ fun updateTrial(params: SubscriptionUpdateTrialParams): MutatedSubscription = updateTrial(params, RequestOptions.none()) - /** @see [updateTrial] */ + /** @see updateTrial */ fun updateTrial( params: SubscriptionUpdateTrialParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -1352,20 +1352,20 @@ interface SubscriptionService { @MustBeClosed fun create(): HttpResponseFor = create(SubscriptionCreateParams.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: SubscriptionCreateParams = SubscriptionCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: SubscriptionCreateParams = SubscriptionCreateParams.none() ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create(requestOptions: RequestOptions): HttpResponseFor = create(SubscriptionCreateParams.none(), requestOptions) @@ -1378,7 +1378,7 @@ interface SubscriptionService { fun update(subscriptionId: String): HttpResponseFor = update(subscriptionId, SubscriptionUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( subscriptionId: String, @@ -1387,26 +1387,26 @@ interface SubscriptionService { ): HttpResponseFor = update(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( subscriptionId: String, params: SubscriptionUpdateParams = SubscriptionUpdateParams.none(), ): HttpResponseFor = update(subscriptionId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: SubscriptionUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: SubscriptionUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( subscriptionId: String, @@ -1421,20 +1421,20 @@ interface SubscriptionService { @MustBeClosed fun list(): HttpResponseFor = list(SubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: SubscriptionListParams = SubscriptionListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: SubscriptionListParams = SubscriptionListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(SubscriptionListParams.none(), requestOptions) @@ -1450,7 +1450,7 @@ interface SubscriptionService { ): HttpResponseFor = cancel(subscriptionId, params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel( subscriptionId: String, @@ -1459,12 +1459,12 @@ interface SubscriptionService { ): HttpResponseFor = cancel(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel(params: SubscriptionCancelParams): HttpResponseFor = cancel(params, RequestOptions.none()) - /** @see [cancel] */ + /** @see cancel */ @MustBeClosed fun cancel( params: SubscriptionCancelParams, @@ -1479,7 +1479,7 @@ interface SubscriptionService { fun fetch(subscriptionId: String): HttpResponseFor = fetch(subscriptionId, SubscriptionFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( subscriptionId: String, @@ -1488,26 +1488,26 @@ interface SubscriptionService { ): HttpResponseFor = fetch(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( subscriptionId: String, params: SubscriptionFetchParams = SubscriptionFetchParams.none(), ): HttpResponseFor = fetch(subscriptionId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: SubscriptionFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: SubscriptionFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( subscriptionId: String, @@ -1523,7 +1523,7 @@ interface SubscriptionService { fun fetchCosts(subscriptionId: String): HttpResponseFor = fetchCosts(subscriptionId, SubscriptionFetchCostsParams.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ @MustBeClosed fun fetchCosts( subscriptionId: String, @@ -1532,7 +1532,7 @@ interface SubscriptionService { ): HttpResponseFor = fetchCosts(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchCosts] */ + /** @see fetchCosts */ @MustBeClosed fun fetchCosts( subscriptionId: String, @@ -1540,21 +1540,21 @@ interface SubscriptionService { ): HttpResponseFor = fetchCosts(subscriptionId, params, RequestOptions.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ @MustBeClosed fun fetchCosts( params: SubscriptionFetchCostsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetchCosts] */ + /** @see fetchCosts */ @MustBeClosed fun fetchCosts( params: SubscriptionFetchCostsParams ): HttpResponseFor = fetchCosts(params, RequestOptions.none()) - /** @see [fetchCosts] */ + /** @see fetchCosts */ @MustBeClosed fun fetchCosts( subscriptionId: String, @@ -1570,7 +1570,7 @@ interface SubscriptionService { fun fetchSchedule(subscriptionId: String): HttpResponseFor = fetchSchedule(subscriptionId, SubscriptionFetchScheduleParams.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ @MustBeClosed fun fetchSchedule( subscriptionId: String, @@ -1579,7 +1579,7 @@ interface SubscriptionService { ): HttpResponseFor = fetchSchedule(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ @MustBeClosed fun fetchSchedule( subscriptionId: String, @@ -1587,21 +1587,21 @@ interface SubscriptionService { ): HttpResponseFor = fetchSchedule(subscriptionId, params, RequestOptions.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ @MustBeClosed fun fetchSchedule( params: SubscriptionFetchScheduleParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ @MustBeClosed fun fetchSchedule( params: SubscriptionFetchScheduleParams ): HttpResponseFor = fetchSchedule(params, RequestOptions.none()) - /** @see [fetchSchedule] */ + /** @see fetchSchedule */ @MustBeClosed fun fetchSchedule( subscriptionId: String, @@ -1617,7 +1617,7 @@ interface SubscriptionService { fun fetchUsage(subscriptionId: String): HttpResponseFor = fetchUsage(subscriptionId, SubscriptionFetchUsageParams.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ @MustBeClosed fun fetchUsage( subscriptionId: String, @@ -1626,7 +1626,7 @@ interface SubscriptionService { ): HttpResponseFor = fetchUsage(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [fetchUsage] */ + /** @see fetchUsage */ @MustBeClosed fun fetchUsage( subscriptionId: String, @@ -1634,19 +1634,19 @@ interface SubscriptionService { ): HttpResponseFor = fetchUsage(subscriptionId, params, RequestOptions.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ @MustBeClosed fun fetchUsage( params: SubscriptionFetchUsageParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetchUsage] */ + /** @see fetchUsage */ @MustBeClosed fun fetchUsage(params: SubscriptionFetchUsageParams): HttpResponseFor = fetchUsage(params, RequestOptions.none()) - /** @see [fetchUsage] */ + /** @see fetchUsage */ @MustBeClosed fun fetchUsage( subscriptionId: String, @@ -1662,7 +1662,7 @@ interface SubscriptionService { fun priceIntervals(subscriptionId: String): HttpResponseFor = priceIntervals(subscriptionId, SubscriptionPriceIntervalsParams.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ @MustBeClosed fun priceIntervals( subscriptionId: String, @@ -1674,7 +1674,7 @@ interface SubscriptionService { requestOptions, ) - /** @see [priceIntervals] */ + /** @see priceIntervals */ @MustBeClosed fun priceIntervals( subscriptionId: String, @@ -1682,20 +1682,20 @@ interface SubscriptionService { ): HttpResponseFor = priceIntervals(subscriptionId, params, RequestOptions.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ @MustBeClosed fun priceIntervals( params: SubscriptionPriceIntervalsParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [priceIntervals] */ + /** @see priceIntervals */ @MustBeClosed fun priceIntervals( params: SubscriptionPriceIntervalsParams ): HttpResponseFor = priceIntervals(params, RequestOptions.none()) - /** @see [priceIntervals] */ + /** @see priceIntervals */ @MustBeClosed fun priceIntervals( subscriptionId: String, @@ -1714,7 +1714,7 @@ interface SubscriptionService { ): HttpResponseFor = redeemCoupon(subscriptionId, params, RequestOptions.none()) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ @MustBeClosed fun redeemCoupon( subscriptionId: String, @@ -1723,13 +1723,13 @@ interface SubscriptionService { ): HttpResponseFor = redeemCoupon(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ @MustBeClosed fun redeemCoupon( params: SubscriptionRedeemCouponParams ): HttpResponseFor = redeemCoupon(params, RequestOptions.none()) - /** @see [redeemCoupon] */ + /** @see redeemCoupon */ @MustBeClosed fun redeemCoupon( params: SubscriptionRedeemCouponParams, @@ -1748,7 +1748,7 @@ interface SubscriptionService { ): HttpResponseFor = schedulePlanChange(subscriptionId, params, RequestOptions.none()) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ @MustBeClosed fun schedulePlanChange( subscriptionId: String, @@ -1760,13 +1760,13 @@ interface SubscriptionService { requestOptions, ) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ @MustBeClosed fun schedulePlanChange( params: SubscriptionSchedulePlanChangeParams ): HttpResponseFor = schedulePlanChange(params, RequestOptions.none()) - /** @see [schedulePlanChange] */ + /** @see schedulePlanChange */ @MustBeClosed fun schedulePlanChange( params: SubscriptionSchedulePlanChangeParams, @@ -1781,7 +1781,7 @@ interface SubscriptionService { fun triggerPhase(subscriptionId: String): HttpResponseFor = triggerPhase(subscriptionId, SubscriptionTriggerPhaseParams.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ @MustBeClosed fun triggerPhase( subscriptionId: String, @@ -1790,7 +1790,7 @@ interface SubscriptionService { ): HttpResponseFor = triggerPhase(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [triggerPhase] */ + /** @see triggerPhase */ @MustBeClosed fun triggerPhase( subscriptionId: String, @@ -1798,20 +1798,20 @@ interface SubscriptionService { ): HttpResponseFor = triggerPhase(subscriptionId, params, RequestOptions.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ @MustBeClosed fun triggerPhase( params: SubscriptionTriggerPhaseParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [triggerPhase] */ + /** @see triggerPhase */ @MustBeClosed fun triggerPhase( params: SubscriptionTriggerPhaseParams ): HttpResponseFor = triggerPhase(params, RequestOptions.none()) - /** @see [triggerPhase] */ + /** @see triggerPhase */ @MustBeClosed fun triggerPhase( subscriptionId: String, @@ -1828,7 +1828,7 @@ interface SubscriptionService { fun unscheduleCancellation(subscriptionId: String): HttpResponseFor = unscheduleCancellation(subscriptionId, SubscriptionUnscheduleCancellationParams.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ @MustBeClosed fun unscheduleCancellation( subscriptionId: String, @@ -1841,7 +1841,7 @@ interface SubscriptionService { requestOptions, ) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ @MustBeClosed fun unscheduleCancellation( subscriptionId: String, @@ -1850,21 +1850,21 @@ interface SubscriptionService { ): HttpResponseFor = unscheduleCancellation(subscriptionId, params, RequestOptions.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ @MustBeClosed fun unscheduleCancellation( params: SubscriptionUnscheduleCancellationParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ @MustBeClosed fun unscheduleCancellation( params: SubscriptionUnscheduleCancellationParams ): HttpResponseFor = unscheduleCancellation(params, RequestOptions.none()) - /** @see [unscheduleCancellation] */ + /** @see unscheduleCancellation */ @MustBeClosed fun unscheduleCancellation( subscriptionId: String, @@ -1888,7 +1888,7 @@ interface SubscriptionService { ): HttpResponseFor = unscheduleFixedFeeQuantityUpdates(subscriptionId, params, RequestOptions.none()) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ @MustBeClosed fun unscheduleFixedFeeQuantityUpdates( subscriptionId: String, @@ -1900,14 +1900,14 @@ interface SubscriptionService { requestOptions, ) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ @MustBeClosed fun unscheduleFixedFeeQuantityUpdates( params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams ): HttpResponseFor = unscheduleFixedFeeQuantityUpdates(params, RequestOptions.none()) - /** @see [unscheduleFixedFeeQuantityUpdates] */ + /** @see unscheduleFixedFeeQuantityUpdates */ @MustBeClosed fun unscheduleFixedFeeQuantityUpdates( params: SubscriptionUnscheduleFixedFeeQuantityUpdatesParams, @@ -1928,7 +1928,7 @@ interface SubscriptionService { SubscriptionUnschedulePendingPlanChangesParams.none(), ) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ @MustBeClosed fun unschedulePendingPlanChanges( subscriptionId: String, @@ -1941,7 +1941,7 @@ interface SubscriptionService { requestOptions, ) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ @MustBeClosed fun unschedulePendingPlanChanges( subscriptionId: String, @@ -1950,21 +1950,21 @@ interface SubscriptionService { ): HttpResponseFor = unschedulePendingPlanChanges(subscriptionId, params, RequestOptions.none()) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ @MustBeClosed fun unschedulePendingPlanChanges( params: SubscriptionUnschedulePendingPlanChangesParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ @MustBeClosed fun unschedulePendingPlanChanges( params: SubscriptionUnschedulePendingPlanChangesParams ): HttpResponseFor = unschedulePendingPlanChanges(params, RequestOptions.none()) - /** @see [unschedulePendingPlanChanges] */ + /** @see unschedulePendingPlanChanges */ @MustBeClosed fun unschedulePendingPlanChanges( subscriptionId: String, @@ -1988,7 +1988,7 @@ interface SubscriptionService { ): HttpResponseFor = updateFixedFeeQuantity(subscriptionId, params, RequestOptions.none()) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ @MustBeClosed fun updateFixedFeeQuantity( subscriptionId: String, @@ -2000,14 +2000,14 @@ interface SubscriptionService { requestOptions, ) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ @MustBeClosed fun updateFixedFeeQuantity( params: SubscriptionUpdateFixedFeeQuantityParams ): HttpResponseFor = updateFixedFeeQuantity(params, RequestOptions.none()) - /** @see [updateFixedFeeQuantity] */ + /** @see updateFixedFeeQuantity */ @MustBeClosed fun updateFixedFeeQuantity( params: SubscriptionUpdateFixedFeeQuantityParams, @@ -2025,7 +2025,7 @@ interface SubscriptionService { ): HttpResponseFor = updateTrial(subscriptionId, params, RequestOptions.none()) - /** @see [updateTrial] */ + /** @see updateTrial */ @MustBeClosed fun updateTrial( subscriptionId: String, @@ -2034,13 +2034,13 @@ interface SubscriptionService { ): HttpResponseFor = updateTrial(params.toBuilder().subscriptionId(subscriptionId).build(), requestOptions) - /** @see [updateTrial] */ + /** @see updateTrial */ @MustBeClosed fun updateTrial( params: SubscriptionUpdateTrialParams ): HttpResponseFor = updateTrial(params, RequestOptions.none()) - /** @see [updateTrial] */ + /** @see updateTrial */ @MustBeClosed fun updateTrial( params: SubscriptionUpdateTrialParams, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/TopLevelService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/TopLevelService.kt index 6f0a99fb..0dd37b90 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/TopLevelService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/TopLevelService.kt @@ -34,17 +34,17 @@ interface TopLevelService { */ fun ping(): TopLevelPingResponse = ping(TopLevelPingParams.none()) - /** @see [ping] */ + /** @see ping */ fun ping( params: TopLevelPingParams = TopLevelPingParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): TopLevelPingResponse - /** @see [ping] */ + /** @see ping */ fun ping(params: TopLevelPingParams = TopLevelPingParams.none()): TopLevelPingResponse = ping(params, RequestOptions.none()) - /** @see [ping] */ + /** @see ping */ fun ping(requestOptions: RequestOptions): TopLevelPingResponse = ping(TopLevelPingParams.none(), requestOptions) @@ -65,20 +65,20 @@ interface TopLevelService { @MustBeClosed fun ping(): HttpResponseFor = ping(TopLevelPingParams.none()) - /** @see [ping] */ + /** @see ping */ @MustBeClosed fun ping( params: TopLevelPingParams = TopLevelPingParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [ping] */ + /** @see ping */ @MustBeClosed fun ping( params: TopLevelPingParams = TopLevelPingParams.none() ): HttpResponseFor = ping(params, RequestOptions.none()) - /** @see [ping] */ + /** @see ping */ @MustBeClosed fun ping(requestOptions: RequestOptions): HttpResponseFor = ping(TopLevelPingParams.none(), requestOptions) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/beta/ExternalPlanIdService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/beta/ExternalPlanIdService.kt index 121e2e8f..ae3c09ea 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/beta/ExternalPlanIdService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/beta/ExternalPlanIdService.kt @@ -38,7 +38,7 @@ interface ExternalPlanIdService { params: BetaExternalPlanIdCreatePlanVersionParams, ): PlanVersion = createPlanVersion(externalPlanId, params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( externalPlanId: String, params: BetaExternalPlanIdCreatePlanVersionParams, @@ -46,11 +46,11 @@ interface ExternalPlanIdService { ): PlanVersion = createPlanVersion(params.toBuilder().externalPlanId(externalPlanId).build(), requestOptions) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion(params: BetaExternalPlanIdCreatePlanVersionParams): PlanVersion = createPlanVersion(params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ fun createPlanVersion( params: BetaExternalPlanIdCreatePlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -68,18 +68,18 @@ interface ExternalPlanIdService { params: BetaExternalPlanIdFetchPlanVersionParams, ): PlanVersion = fetchPlanVersion(version, params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( version: String, params: BetaExternalPlanIdFetchPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), ): PlanVersion = fetchPlanVersion(params.toBuilder().version(version).build(), requestOptions) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion(params: BetaExternalPlanIdFetchPlanVersionParams): PlanVersion = fetchPlanVersion(params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ fun fetchPlanVersion( params: BetaExternalPlanIdFetchPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -96,7 +96,7 @@ interface ExternalPlanIdService { params: BetaExternalPlanIdSetDefaultPlanVersionParams, ): Plan = setDefaultPlanVersion(externalPlanId, params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( externalPlanId: String, params: BetaExternalPlanIdSetDefaultPlanVersionParams, @@ -107,11 +107,11 @@ interface ExternalPlanIdService { requestOptions, ) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion(params: BetaExternalPlanIdSetDefaultPlanVersionParams): Plan = setDefaultPlanVersion(params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ fun setDefaultPlanVersion( params: BetaExternalPlanIdSetDefaultPlanVersionParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -143,7 +143,7 @@ interface ExternalPlanIdService { ): HttpResponseFor = createPlanVersion(externalPlanId, params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ @MustBeClosed fun createPlanVersion( externalPlanId: String, @@ -155,13 +155,13 @@ interface ExternalPlanIdService { requestOptions, ) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ @MustBeClosed fun createPlanVersion( params: BetaExternalPlanIdCreatePlanVersionParams ): HttpResponseFor = createPlanVersion(params, RequestOptions.none()) - /** @see [createPlanVersion] */ + /** @see createPlanVersion */ @MustBeClosed fun createPlanVersion( params: BetaExternalPlanIdCreatePlanVersionParams, @@ -179,7 +179,7 @@ interface ExternalPlanIdService { params: BetaExternalPlanIdFetchPlanVersionParams, ): HttpResponseFor = fetchPlanVersion(version, params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ @MustBeClosed fun fetchPlanVersion( version: String, @@ -188,13 +188,13 @@ interface ExternalPlanIdService { ): HttpResponseFor = fetchPlanVersion(params.toBuilder().version(version).build(), requestOptions) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ @MustBeClosed fun fetchPlanVersion( params: BetaExternalPlanIdFetchPlanVersionParams ): HttpResponseFor = fetchPlanVersion(params, RequestOptions.none()) - /** @see [fetchPlanVersion] */ + /** @see fetchPlanVersion */ @MustBeClosed fun fetchPlanVersion( params: BetaExternalPlanIdFetchPlanVersionParams, @@ -213,7 +213,7 @@ interface ExternalPlanIdService { ): HttpResponseFor = setDefaultPlanVersion(externalPlanId, params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ @MustBeClosed fun setDefaultPlanVersion( externalPlanId: String, @@ -225,13 +225,13 @@ interface ExternalPlanIdService { requestOptions, ) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ @MustBeClosed fun setDefaultPlanVersion( params: BetaExternalPlanIdSetDefaultPlanVersionParams ): HttpResponseFor = setDefaultPlanVersion(params, RequestOptions.none()) - /** @see [setDefaultPlanVersion] */ + /** @see setDefaultPlanVersion */ @MustBeClosed fun setDefaultPlanVersion( params: BetaExternalPlanIdSetDefaultPlanVersionParams, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/coupons/SubscriptionService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/coupons/SubscriptionService.kt index 26a7aac4..3fbca7ce 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/coupons/SubscriptionService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/coupons/SubscriptionService.kt @@ -33,7 +33,7 @@ interface SubscriptionService { fun list(couponId: String): CouponSubscriptionListPage = list(couponId, CouponSubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( couponId: String, params: CouponSubscriptionListParams = CouponSubscriptionListParams.none(), @@ -41,23 +41,23 @@ interface SubscriptionService { ): CouponSubscriptionListPage = list(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( couponId: String, params: CouponSubscriptionListParams = CouponSubscriptionListParams.none(), ): CouponSubscriptionListPage = list(couponId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CouponSubscriptionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CouponSubscriptionListPage - /** @see [list] */ + /** @see list */ fun list(params: CouponSubscriptionListParams): CouponSubscriptionListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(couponId: String, requestOptions: RequestOptions): CouponSubscriptionListPage = list(couponId, CouponSubscriptionListParams.none(), requestOptions) @@ -83,7 +83,7 @@ interface SubscriptionService { fun list(couponId: String): HttpResponseFor = list(couponId, CouponSubscriptionListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( couponId: String, @@ -92,7 +92,7 @@ interface SubscriptionService { ): HttpResponseFor = list(params.toBuilder().couponId(couponId).build(), requestOptions) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( couponId: String, @@ -100,20 +100,20 @@ interface SubscriptionService { ): HttpResponseFor = list(couponId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CouponSubscriptionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CouponSubscriptionListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( couponId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/BalanceTransactionService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/BalanceTransactionService.kt index 8b812797..cd88ed57 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/BalanceTransactionService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/BalanceTransactionService.kt @@ -35,7 +35,7 @@ interface BalanceTransactionService { params: CustomerBalanceTransactionCreateParams, ): CustomerBalanceTransactionCreateResponse = create(customerId, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( customerId: String, params: CustomerBalanceTransactionCreateParams, @@ -43,12 +43,12 @@ interface BalanceTransactionService { ): CustomerBalanceTransactionCreateResponse = create(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create( params: CustomerBalanceTransactionCreateParams ): CustomerBalanceTransactionCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CustomerBalanceTransactionCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -78,7 +78,7 @@ interface BalanceTransactionService { fun list(customerId: String): CustomerBalanceTransactionListPage = list(customerId, CustomerBalanceTransactionListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerBalanceTransactionListParams = CustomerBalanceTransactionListParams.none(), @@ -86,23 +86,23 @@ interface BalanceTransactionService { ): CustomerBalanceTransactionListPage = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerBalanceTransactionListParams = CustomerBalanceTransactionListParams.none(), ): CustomerBalanceTransactionListPage = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerBalanceTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CustomerBalanceTransactionListPage - /** @see [list] */ + /** @see list */ fun list(params: CustomerBalanceTransactionListParams): CustomerBalanceTransactionListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, requestOptions: RequestOptions, @@ -135,7 +135,7 @@ interface BalanceTransactionService { ): HttpResponseFor = create(customerId, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( customerId: String, @@ -144,14 +144,14 @@ interface BalanceTransactionService { ): HttpResponseFor = create(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: CustomerBalanceTransactionCreateParams ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: CustomerBalanceTransactionCreateParams, @@ -166,7 +166,7 @@ interface BalanceTransactionService { fun list(customerId: String): HttpResponseFor = list(customerId, CustomerBalanceTransactionListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -176,7 +176,7 @@ interface BalanceTransactionService { ): HttpResponseFor = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -185,20 +185,20 @@ interface BalanceTransactionService { ): HttpResponseFor = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerBalanceTransactionListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerBalanceTransactionListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/CostService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/CostService.kt index 29ea8044..52cdcf9a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/CostService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/CostService.kt @@ -139,7 +139,7 @@ interface CostService { fun list(customerId: String): CustomerCostListResponse = list(customerId, CustomerCostListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCostListParams = CustomerCostListParams.none(), @@ -147,23 +147,23 @@ interface CostService { ): CustomerCostListResponse = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCostListParams = CustomerCostListParams.none(), ): CustomerCostListResponse = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCostListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CustomerCostListResponse - /** @see [list] */ + /** @see list */ fun list(params: CustomerCostListParams): CustomerCostListResponse = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(customerId: String, requestOptions: RequestOptions): CustomerCostListResponse = list(customerId, CustomerCostListParams.none(), requestOptions) @@ -280,7 +280,7 @@ interface CostService { fun listByExternalId(externalCustomerId: String): CustomerCostListByExternalIdResponse = listByExternalId(externalCustomerId, CustomerCostListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCostListByExternalIdParams = CustomerCostListByExternalIdParams.none(), @@ -291,25 +291,25 @@ interface CostService { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCostListByExternalIdParams = CustomerCostListByExternalIdParams.none(), ): CustomerCostListByExternalIdResponse = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCostListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CustomerCostListByExternalIdResponse - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCostListByExternalIdParams ): CustomerCostListByExternalIdResponse = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -338,7 +338,7 @@ interface CostService { fun list(customerId: String): HttpResponseFor = list(customerId, CustomerCostListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -347,7 +347,7 @@ interface CostService { ): HttpResponseFor = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -355,19 +355,19 @@ interface CostService { ): HttpResponseFor = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerCostListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(params: CustomerCostListParams): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -386,7 +386,7 @@ interface CostService { ): HttpResponseFor = listByExternalId(externalCustomerId, CustomerCostListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, @@ -398,7 +398,7 @@ interface CostService { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, @@ -406,21 +406,21 @@ interface CostService { ): HttpResponseFor = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( params: CustomerCostListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( params: CustomerCostListByExternalIdParams ): HttpResponseFor = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/CreditService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/CreditService.kt index 9bd94acd..3b33b59a 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/CreditService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/CreditService.kt @@ -44,7 +44,7 @@ interface CreditService { fun list(customerId: String): CustomerCreditListPage = list(customerId, CustomerCreditListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditListParams = CustomerCreditListParams.none(), @@ -52,23 +52,23 @@ interface CreditService { ): CustomerCreditListPage = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditListParams = CustomerCreditListParams.none(), ): CustomerCreditListPage = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CustomerCreditListPage - /** @see [list] */ + /** @see list */ fun list(params: CustomerCreditListParams): CustomerCreditListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(customerId: String, requestOptions: RequestOptions): CustomerCreditListPage = list(customerId, CustomerCreditListParams.none(), requestOptions) @@ -84,7 +84,7 @@ interface CreditService { fun listByExternalId(externalCustomerId: String): CustomerCreditListByExternalIdPage = listByExternalId(externalCustomerId, CustomerCreditListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditListByExternalIdParams = CustomerCreditListByExternalIdParams.none(), @@ -95,25 +95,25 @@ interface CreditService { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditListByExternalIdParams = CustomerCreditListByExternalIdParams.none(), ): CustomerCreditListByExternalIdPage = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CustomerCreditListByExternalIdPage - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditListByExternalIdParams ): CustomerCreditListByExternalIdPage = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -146,7 +146,7 @@ interface CreditService { fun list(customerId: String): HttpResponseFor = list(customerId, CustomerCreditListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -155,26 +155,26 @@ interface CreditService { ): HttpResponseFor = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, params: CustomerCreditListParams = CustomerCreditListParams.none(), ): HttpResponseFor = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerCreditListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(params: CustomerCreditListParams): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -193,7 +193,7 @@ interface CreditService { ): HttpResponseFor = listByExternalId(externalCustomerId, CustomerCreditListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, @@ -206,7 +206,7 @@ interface CreditService { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, @@ -215,21 +215,21 @@ interface CreditService { ): HttpResponseFor = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( params: CustomerCreditListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( params: CustomerCreditListByExternalIdParams ): HttpResponseFor = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/credits/LedgerService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/credits/LedgerService.kt index 39051901..d1cb5063 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/credits/LedgerService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/credits/LedgerService.kt @@ -112,7 +112,7 @@ interface LedgerService { fun list(customerId: String): CustomerCreditLedgerListPage = list(customerId, CustomerCreditLedgerListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditLedgerListParams = CustomerCreditLedgerListParams.none(), @@ -120,23 +120,23 @@ interface LedgerService { ): CustomerCreditLedgerListPage = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditLedgerListParams = CustomerCreditLedgerListParams.none(), ): CustomerCreditLedgerListPage = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditLedgerListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CustomerCreditLedgerListPage - /** @see [list] */ + /** @see list */ fun list(params: CustomerCreditLedgerListParams): CustomerCreditLedgerListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(customerId: String, requestOptions: RequestOptions): CustomerCreditLedgerListPage = list(customerId, CustomerCreditLedgerListParams.none(), requestOptions) @@ -249,7 +249,7 @@ interface LedgerService { ): CustomerCreditLedgerCreateEntryResponse = createEntry(customerId, params, RequestOptions.none()) - /** @see [createEntry] */ + /** @see createEntry */ fun createEntry( customerId: String, params: CustomerCreditLedgerCreateEntryParams, @@ -257,12 +257,12 @@ interface LedgerService { ): CustomerCreditLedgerCreateEntryResponse = createEntry(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [createEntry] */ + /** @see createEntry */ fun createEntry( params: CustomerCreditLedgerCreateEntryParams ): CustomerCreditLedgerCreateEntryResponse = createEntry(params, RequestOptions.none()) - /** @see [createEntry] */ + /** @see createEntry */ fun createEntry( params: CustomerCreditLedgerCreateEntryParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -377,7 +377,7 @@ interface LedgerService { ): CustomerCreditLedgerCreateEntryByExternalIdResponse = createEntryByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ fun createEntryByExternalId( externalCustomerId: String, params: CustomerCreditLedgerCreateEntryByExternalIdParams, @@ -388,13 +388,13 @@ interface LedgerService { requestOptions, ) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ fun createEntryByExternalId( params: CustomerCreditLedgerCreateEntryByExternalIdParams ): CustomerCreditLedgerCreateEntryByExternalIdResponse = createEntryByExternalId(params, RequestOptions.none()) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ fun createEntryByExternalId( params: CustomerCreditLedgerCreateEntryByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -482,7 +482,7 @@ interface LedgerService { fun listByExternalId(externalCustomerId: String): CustomerCreditLedgerListByExternalIdPage = listByExternalId(externalCustomerId, CustomerCreditLedgerListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditLedgerListByExternalIdParams = @@ -494,7 +494,7 @@ interface LedgerService { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditLedgerListByExternalIdParams = @@ -502,18 +502,18 @@ interface LedgerService { ): CustomerCreditLedgerListByExternalIdPage = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditLedgerListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CustomerCreditLedgerListByExternalIdPage - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditLedgerListByExternalIdParams ): CustomerCreditLedgerListByExternalIdPage = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -542,7 +542,7 @@ interface LedgerService { fun list(customerId: String): HttpResponseFor = list(customerId, CustomerCreditLedgerListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -551,7 +551,7 @@ interface LedgerService { ): HttpResponseFor = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -559,20 +559,20 @@ interface LedgerService { ): HttpResponseFor = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerCreditLedgerListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerCreditLedgerListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -591,7 +591,7 @@ interface LedgerService { ): HttpResponseFor = createEntry(customerId, params, RequestOptions.none()) - /** @see [createEntry] */ + /** @see createEntry */ @MustBeClosed fun createEntry( customerId: String, @@ -600,14 +600,14 @@ interface LedgerService { ): HttpResponseFor = createEntry(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [createEntry] */ + /** @see createEntry */ @MustBeClosed fun createEntry( params: CustomerCreditLedgerCreateEntryParams ): HttpResponseFor = createEntry(params, RequestOptions.none()) - /** @see [createEntry] */ + /** @see createEntry */ @MustBeClosed fun createEntry( params: CustomerCreditLedgerCreateEntryParams, @@ -626,7 +626,7 @@ interface LedgerService { ): HttpResponseFor = createEntryByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ @MustBeClosed fun createEntryByExternalId( externalCustomerId: String, @@ -638,14 +638,14 @@ interface LedgerService { requestOptions, ) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ @MustBeClosed fun createEntryByExternalId( params: CustomerCreditLedgerCreateEntryByExternalIdParams ): HttpResponseFor = createEntryByExternalId(params, RequestOptions.none()) - /** @see [createEntryByExternalId] */ + /** @see createEntryByExternalId */ @MustBeClosed fun createEntryByExternalId( params: CustomerCreditLedgerCreateEntryByExternalIdParams, @@ -663,7 +663,7 @@ interface LedgerService { ): HttpResponseFor = listByExternalId(externalCustomerId, CustomerCreditLedgerListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, @@ -676,7 +676,7 @@ interface LedgerService { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, @@ -685,21 +685,21 @@ interface LedgerService { ): HttpResponseFor = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( params: CustomerCreditLedgerListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( params: CustomerCreditLedgerListByExternalIdParams ): HttpResponseFor = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/credits/TopUpService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/credits/TopUpService.kt index 3d41ecb8..429b2af1 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/credits/TopUpService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/customers/credits/TopUpService.kt @@ -46,7 +46,7 @@ interface TopUpService { params: CustomerCreditTopUpCreateParams, ): CustomerCreditTopUpCreateResponse = create(customerId, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( customerId: String, params: CustomerCreditTopUpCreateParams, @@ -54,11 +54,11 @@ interface TopUpService { ): CustomerCreditTopUpCreateResponse = create(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [create] */ + /** @see create */ fun create(params: CustomerCreditTopUpCreateParams): CustomerCreditTopUpCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: CustomerCreditTopUpCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -68,7 +68,7 @@ interface TopUpService { fun list(customerId: String): CustomerCreditTopUpListPage = list(customerId, CustomerCreditTopUpListParams.none()) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditTopUpListParams = CustomerCreditTopUpListParams.none(), @@ -76,23 +76,23 @@ interface TopUpService { ): CustomerCreditTopUpListPage = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ fun list( customerId: String, params: CustomerCreditTopUpListParams = CustomerCreditTopUpListParams.none(), ): CustomerCreditTopUpListPage = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: CustomerCreditTopUpListParams, requestOptions: RequestOptions = RequestOptions.none(), ): CustomerCreditTopUpListPage - /** @see [list] */ + /** @see list */ fun list(params: CustomerCreditTopUpListParams): CustomerCreditTopUpListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(customerId: String, requestOptions: RequestOptions): CustomerCreditTopUpListPage = list(customerId, CustomerCreditTopUpListParams.none(), requestOptions) @@ -103,17 +103,17 @@ interface TopUpService { fun delete(topUpId: String, params: CustomerCreditTopUpDeleteParams) = delete(topUpId, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( topUpId: String, params: CustomerCreditTopUpDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), ) = delete(params.toBuilder().topUpId(topUpId).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ fun delete(params: CustomerCreditTopUpDeleteParams) = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ fun delete( params: CustomerCreditTopUpDeleteParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -133,7 +133,7 @@ interface TopUpService { ): CustomerCreditTopUpCreateByExternalIdResponse = createByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [createByExternalId] */ + /** @see createByExternalId */ fun createByExternalId( externalCustomerId: String, params: CustomerCreditTopUpCreateByExternalIdParams, @@ -144,13 +144,13 @@ interface TopUpService { requestOptions, ) - /** @see [createByExternalId] */ + /** @see createByExternalId */ fun createByExternalId( params: CustomerCreditTopUpCreateByExternalIdParams ): CustomerCreditTopUpCreateByExternalIdResponse = createByExternalId(params, RequestOptions.none()) - /** @see [createByExternalId] */ + /** @see createByExternalId */ fun createByExternalId( params: CustomerCreditTopUpCreateByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -163,18 +163,18 @@ interface TopUpService { fun deleteByExternalId(topUpId: String, params: CustomerCreditTopUpDeleteByExternalIdParams) = deleteByExternalId(topUpId, params, RequestOptions.none()) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ fun deleteByExternalId( topUpId: String, params: CustomerCreditTopUpDeleteByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ) = deleteByExternalId(params.toBuilder().topUpId(topUpId).build(), requestOptions) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ fun deleteByExternalId(params: CustomerCreditTopUpDeleteByExternalIdParams) = deleteByExternalId(params, RequestOptions.none()) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ fun deleteByExternalId( params: CustomerCreditTopUpDeleteByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -184,7 +184,7 @@ interface TopUpService { fun listByExternalId(externalCustomerId: String): CustomerCreditTopUpListByExternalIdPage = listByExternalId(externalCustomerId, CustomerCreditTopUpListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditTopUpListByExternalIdParams = @@ -196,7 +196,7 @@ interface TopUpService { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, params: CustomerCreditTopUpListByExternalIdParams = @@ -204,18 +204,18 @@ interface TopUpService { ): CustomerCreditTopUpListByExternalIdPage = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditTopUpListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): CustomerCreditTopUpListByExternalIdPage - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( params: CustomerCreditTopUpListByExternalIdParams ): CustomerCreditTopUpListByExternalIdPage = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ fun listByExternalId( externalCustomerId: String, requestOptions: RequestOptions, @@ -247,7 +247,7 @@ interface TopUpService { ): HttpResponseFor = create(customerId, params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( customerId: String, @@ -256,14 +256,14 @@ interface TopUpService { ): HttpResponseFor = create(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: CustomerCreditTopUpCreateParams ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: CustomerCreditTopUpCreateParams, @@ -278,7 +278,7 @@ interface TopUpService { fun list(customerId: String): HttpResponseFor = list(customerId, CustomerCreditTopUpListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -287,7 +287,7 @@ interface TopUpService { ): HttpResponseFor = list(params.toBuilder().customerId(customerId).build(), requestOptions) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -295,20 +295,20 @@ interface TopUpService { ): HttpResponseFor = list(customerId, params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerCreditTopUpListParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: CustomerCreditTopUpListParams ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( customerId: String, @@ -325,7 +325,7 @@ interface TopUpService { fun delete(topUpId: String, params: CustomerCreditTopUpDeleteParams): HttpResponse = delete(topUpId, params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( topUpId: String, @@ -333,12 +333,12 @@ interface TopUpService { requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponse = delete(params.toBuilder().topUpId(topUpId).build(), requestOptions) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete(params: CustomerCreditTopUpDeleteParams): HttpResponse = delete(params, RequestOptions.none()) - /** @see [delete] */ + /** @see delete */ @MustBeClosed fun delete( params: CustomerCreditTopUpDeleteParams, @@ -357,7 +357,7 @@ interface TopUpService { ): HttpResponseFor = createByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [createByExternalId] */ + /** @see createByExternalId */ @MustBeClosed fun createByExternalId( externalCustomerId: String, @@ -369,14 +369,14 @@ interface TopUpService { requestOptions, ) - /** @see [createByExternalId] */ + /** @see createByExternalId */ @MustBeClosed fun createByExternalId( params: CustomerCreditTopUpCreateByExternalIdParams ): HttpResponseFor = createByExternalId(params, RequestOptions.none()) - /** @see [createByExternalId] */ + /** @see createByExternalId */ @MustBeClosed fun createByExternalId( params: CustomerCreditTopUpCreateByExternalIdParams, @@ -394,7 +394,7 @@ interface TopUpService { params: CustomerCreditTopUpDeleteByExternalIdParams, ): HttpResponse = deleteByExternalId(topUpId, params, RequestOptions.none()) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ @MustBeClosed fun deleteByExternalId( topUpId: String, @@ -403,12 +403,12 @@ interface TopUpService { ): HttpResponse = deleteByExternalId(params.toBuilder().topUpId(topUpId).build(), requestOptions) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ @MustBeClosed fun deleteByExternalId(params: CustomerCreditTopUpDeleteByExternalIdParams): HttpResponse = deleteByExternalId(params, RequestOptions.none()) - /** @see [deleteByExternalId] */ + /** @see deleteByExternalId */ @MustBeClosed fun deleteByExternalId( params: CustomerCreditTopUpDeleteByExternalIdParams, @@ -426,7 +426,7 @@ interface TopUpService { ): HttpResponseFor = listByExternalId(externalCustomerId, CustomerCreditTopUpListByExternalIdParams.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, @@ -439,7 +439,7 @@ interface TopUpService { requestOptions, ) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, @@ -448,21 +448,21 @@ interface TopUpService { ): HttpResponseFor = listByExternalId(externalCustomerId, params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( params: CustomerCreditTopUpListByExternalIdParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( params: CustomerCreditTopUpListByExternalIdParams ): HttpResponseFor = listByExternalId(params, RequestOptions.none()) - /** @see [listByExternalId] */ + /** @see listByExternalId */ @MustBeClosed fun listByExternalId( externalCustomerId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/dimensionalPriceGroups/ExternalDimensionalPriceGroupIdService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/dimensionalPriceGroups/ExternalDimensionalPriceGroupIdService.kt index 6f08adc0..52bab3a5 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/dimensionalPriceGroups/ExternalDimensionalPriceGroupIdService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/dimensionalPriceGroups/ExternalDimensionalPriceGroupIdService.kt @@ -33,7 +33,7 @@ interface ExternalDimensionalPriceGroupIdService { DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams.none(), ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalDimensionalPriceGroupId: String, params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams = @@ -48,7 +48,7 @@ interface ExternalDimensionalPriceGroupIdService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalDimensionalPriceGroupId: String, params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams = @@ -56,18 +56,18 @@ interface ExternalDimensionalPriceGroupIdService { ): DimensionalPriceGroup = retrieve(externalDimensionalPriceGroupId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): DimensionalPriceGroup - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams ): DimensionalPriceGroup = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ fun retrieve( externalDimensionalPriceGroupId: String, requestOptions: RequestOptions, @@ -107,7 +107,7 @@ interface ExternalDimensionalPriceGroupIdService { DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams.none(), ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( externalDimensionalPriceGroupId: String, @@ -123,7 +123,7 @@ interface ExternalDimensionalPriceGroupIdService { requestOptions, ) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( externalDimensionalPriceGroupId: String, @@ -132,20 +132,20 @@ interface ExternalDimensionalPriceGroupIdService { ): HttpResponseFor = retrieve(externalDimensionalPriceGroupId, params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( params: DimensionalPriceGroupExternalDimensionalPriceGroupIdRetrieveParams ): HttpResponseFor = retrieve(params, RequestOptions.none()) - /** @see [retrieve] */ + /** @see retrieve */ @MustBeClosed fun retrieve( externalDimensionalPriceGroupId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/events/BackfillService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/events/BackfillService.kt index 1bf135e8..2e2bacbb 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/events/BackfillService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/events/BackfillService.kt @@ -65,7 +65,7 @@ interface BackfillService { fun create(params: EventBackfillCreateParams): EventBackfillCreateResponse = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ fun create( params: EventBackfillCreateParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -81,18 +81,18 @@ interface BackfillService { */ fun list(): EventBackfillListPage = list(EventBackfillListParams.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventBackfillListParams = EventBackfillListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): EventBackfillListPage - /** @see [list] */ + /** @see list */ fun list( params: EventBackfillListParams = EventBackfillListParams.none() ): EventBackfillListPage = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list(requestOptions: RequestOptions): EventBackfillListPage = list(EventBackfillListParams.none(), requestOptions) @@ -104,7 +104,7 @@ interface BackfillService { fun close(backfillId: String): EventBackfillCloseResponse = close(backfillId, EventBackfillCloseParams.none()) - /** @see [close] */ + /** @see close */ fun close( backfillId: String, params: EventBackfillCloseParams = EventBackfillCloseParams.none(), @@ -112,23 +112,23 @@ interface BackfillService { ): EventBackfillCloseResponse = close(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [close] */ + /** @see close */ fun close( backfillId: String, params: EventBackfillCloseParams = EventBackfillCloseParams.none(), ): EventBackfillCloseResponse = close(backfillId, params, RequestOptions.none()) - /** @see [close] */ + /** @see close */ fun close( params: EventBackfillCloseParams, requestOptions: RequestOptions = RequestOptions.none(), ): EventBackfillCloseResponse - /** @see [close] */ + /** @see close */ fun close(params: EventBackfillCloseParams): EventBackfillCloseResponse = close(params, RequestOptions.none()) - /** @see [close] */ + /** @see close */ fun close(backfillId: String, requestOptions: RequestOptions): EventBackfillCloseResponse = close(backfillId, EventBackfillCloseParams.none(), requestOptions) @@ -136,7 +136,7 @@ interface BackfillService { fun fetch(backfillId: String): EventBackfillFetchResponse = fetch(backfillId, EventBackfillFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( backfillId: String, params: EventBackfillFetchParams = EventBackfillFetchParams.none(), @@ -144,23 +144,23 @@ interface BackfillService { ): EventBackfillFetchResponse = fetch(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( backfillId: String, params: EventBackfillFetchParams = EventBackfillFetchParams.none(), ): EventBackfillFetchResponse = fetch(backfillId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: EventBackfillFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): EventBackfillFetchResponse - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: EventBackfillFetchParams): EventBackfillFetchResponse = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(backfillId: String, requestOptions: RequestOptions): EventBackfillFetchResponse = fetch(backfillId, EventBackfillFetchParams.none(), requestOptions) @@ -175,7 +175,7 @@ interface BackfillService { fun revert(backfillId: String): EventBackfillRevertResponse = revert(backfillId, EventBackfillRevertParams.none()) - /** @see [revert] */ + /** @see revert */ fun revert( backfillId: String, params: EventBackfillRevertParams = EventBackfillRevertParams.none(), @@ -183,23 +183,23 @@ interface BackfillService { ): EventBackfillRevertResponse = revert(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [revert] */ + /** @see revert */ fun revert( backfillId: String, params: EventBackfillRevertParams = EventBackfillRevertParams.none(), ): EventBackfillRevertResponse = revert(backfillId, params, RequestOptions.none()) - /** @see [revert] */ + /** @see revert */ fun revert( params: EventBackfillRevertParams, requestOptions: RequestOptions = RequestOptions.none(), ): EventBackfillRevertResponse - /** @see [revert] */ + /** @see revert */ fun revert(params: EventBackfillRevertParams): EventBackfillRevertResponse = revert(params, RequestOptions.none()) - /** @see [revert] */ + /** @see revert */ fun revert(backfillId: String, requestOptions: RequestOptions): EventBackfillRevertResponse = revert(backfillId, EventBackfillRevertParams.none(), requestOptions) @@ -222,7 +222,7 @@ interface BackfillService { params: EventBackfillCreateParams ): HttpResponseFor = create(params, RequestOptions.none()) - /** @see [create] */ + /** @see create */ @MustBeClosed fun create( params: EventBackfillCreateParams, @@ -236,20 +236,20 @@ interface BackfillService { @MustBeClosed fun list(): HttpResponseFor = list(EventBackfillListParams.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: EventBackfillListParams = EventBackfillListParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: EventBackfillListParams = EventBackfillListParams.none() ): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list(requestOptions: RequestOptions): HttpResponseFor = list(EventBackfillListParams.none(), requestOptions) @@ -262,7 +262,7 @@ interface BackfillService { fun close(backfillId: String): HttpResponseFor = close(backfillId, EventBackfillCloseParams.none()) - /** @see [close] */ + /** @see close */ @MustBeClosed fun close( backfillId: String, @@ -271,7 +271,7 @@ interface BackfillService { ): HttpResponseFor = close(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [close] */ + /** @see close */ @MustBeClosed fun close( backfillId: String, @@ -279,19 +279,19 @@ interface BackfillService { ): HttpResponseFor = close(backfillId, params, RequestOptions.none()) - /** @see [close] */ + /** @see close */ @MustBeClosed fun close( params: EventBackfillCloseParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [close] */ + /** @see close */ @MustBeClosed fun close(params: EventBackfillCloseParams): HttpResponseFor = close(params, RequestOptions.none()) - /** @see [close] */ + /** @see close */ @MustBeClosed fun close( backfillId: String, @@ -307,7 +307,7 @@ interface BackfillService { fun fetch(backfillId: String): HttpResponseFor = fetch(backfillId, EventBackfillFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( backfillId: String, @@ -316,7 +316,7 @@ interface BackfillService { ): HttpResponseFor = fetch(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( backfillId: String, @@ -324,19 +324,19 @@ interface BackfillService { ): HttpResponseFor = fetch(backfillId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: EventBackfillFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: EventBackfillFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( backfillId: String, @@ -352,7 +352,7 @@ interface BackfillService { fun revert(backfillId: String): HttpResponseFor = revert(backfillId, EventBackfillRevertParams.none()) - /** @see [revert] */ + /** @see revert */ @MustBeClosed fun revert( backfillId: String, @@ -361,7 +361,7 @@ interface BackfillService { ): HttpResponseFor = revert(params.toBuilder().backfillId(backfillId).build(), requestOptions) - /** @see [revert] */ + /** @see revert */ @MustBeClosed fun revert( backfillId: String, @@ -369,20 +369,20 @@ interface BackfillService { ): HttpResponseFor = revert(backfillId, params, RequestOptions.none()) - /** @see [revert] */ + /** @see revert */ @MustBeClosed fun revert( params: EventBackfillRevertParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [revert] */ + /** @see revert */ @MustBeClosed fun revert( params: EventBackfillRevertParams ): HttpResponseFor = revert(params, RequestOptions.none()) - /** @see [revert] */ + /** @see revert */ @MustBeClosed fun revert( backfillId: String, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/events/VolumeService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/events/VolumeService.kt index b895c4bb..357dfcaf 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/events/VolumeService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/events/VolumeService.kt @@ -39,7 +39,7 @@ interface VolumeService { */ fun list(params: EventVolumeListParams): EventVolumes = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ fun list( params: EventVolumeListParams, requestOptions: RequestOptions = RequestOptions.none(), @@ -63,7 +63,7 @@ interface VolumeService { fun list(params: EventVolumeListParams): HttpResponseFor = list(params, RequestOptions.none()) - /** @see [list] */ + /** @see list */ @MustBeClosed fun list( params: EventVolumeListParams, diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/plans/ExternalPlanIdService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/plans/ExternalPlanIdService.kt index e54cc288..10036f09 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/plans/ExternalPlanIdService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/plans/ExternalPlanIdService.kt @@ -34,7 +34,7 @@ interface ExternalPlanIdService { fun update(otherExternalPlanId: String): Plan = update(otherExternalPlanId, PlanExternalPlanIdUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( otherExternalPlanId: String, params: PlanExternalPlanIdUpdateParams = PlanExternalPlanIdUpdateParams.none(), @@ -42,22 +42,22 @@ interface ExternalPlanIdService { ): Plan = update(params.toBuilder().otherExternalPlanId(otherExternalPlanId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( otherExternalPlanId: String, params: PlanExternalPlanIdUpdateParams = PlanExternalPlanIdUpdateParams.none(), ): Plan = update(otherExternalPlanId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PlanExternalPlanIdUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Plan - /** @see [update] */ + /** @see update */ fun update(params: PlanExternalPlanIdUpdateParams): Plan = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(otherExternalPlanId: String, requestOptions: RequestOptions): Plan = update(otherExternalPlanId, PlanExternalPlanIdUpdateParams.none(), requestOptions) @@ -81,29 +81,29 @@ interface ExternalPlanIdService { fun fetch(externalPlanId: String): Plan = fetch(externalPlanId, PlanExternalPlanIdFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPlanId: String, params: PlanExternalPlanIdFetchParams = PlanExternalPlanIdFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Plan = fetch(params.toBuilder().externalPlanId(externalPlanId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPlanId: String, params: PlanExternalPlanIdFetchParams = PlanExternalPlanIdFetchParams.none(), ): Plan = fetch(externalPlanId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PlanExternalPlanIdFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): Plan - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PlanExternalPlanIdFetchParams): Plan = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(externalPlanId: String, requestOptions: RequestOptions): Plan = fetch(externalPlanId, PlanExternalPlanIdFetchParams.none(), requestOptions) @@ -129,7 +129,7 @@ interface ExternalPlanIdService { fun update(otherExternalPlanId: String): HttpResponseFor = update(otherExternalPlanId, PlanExternalPlanIdUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( otherExternalPlanId: String, @@ -141,26 +141,26 @@ interface ExternalPlanIdService { requestOptions, ) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( otherExternalPlanId: String, params: PlanExternalPlanIdUpdateParams = PlanExternalPlanIdUpdateParams.none(), ): HttpResponseFor = update(otherExternalPlanId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: PlanExternalPlanIdUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: PlanExternalPlanIdUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( otherExternalPlanId: String, @@ -176,7 +176,7 @@ interface ExternalPlanIdService { fun fetch(externalPlanId: String): HttpResponseFor = fetch(externalPlanId, PlanExternalPlanIdFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( externalPlanId: String, @@ -185,26 +185,26 @@ interface ExternalPlanIdService { ): HttpResponseFor = fetch(params.toBuilder().externalPlanId(externalPlanId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( externalPlanId: String, params: PlanExternalPlanIdFetchParams = PlanExternalPlanIdFetchParams.none(), ): HttpResponseFor = fetch(externalPlanId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: PlanExternalPlanIdFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: PlanExternalPlanIdFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(externalPlanId: String, requestOptions: RequestOptions): HttpResponseFor = fetch(externalPlanId, PlanExternalPlanIdFetchParams.none(), requestOptions) diff --git a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/prices/ExternalPriceIdService.kt b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/prices/ExternalPriceIdService.kt index 2615e99d..6b6feccb 100644 --- a/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/prices/ExternalPriceIdService.kt +++ b/orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/prices/ExternalPriceIdService.kt @@ -32,30 +32,30 @@ interface ExternalPriceIdService { fun update(externalPriceId: String): Price = update(externalPriceId, PriceExternalPriceIdUpdateParams.none()) - /** @see [update] */ + /** @see update */ fun update( externalPriceId: String, params: PriceExternalPriceIdUpdateParams = PriceExternalPriceIdUpdateParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Price = update(params.toBuilder().externalPriceId(externalPriceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ fun update( externalPriceId: String, params: PriceExternalPriceIdUpdateParams = PriceExternalPriceIdUpdateParams.none(), ): Price = update(externalPriceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update( params: PriceExternalPriceIdUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): Price - /** @see [update] */ + /** @see update */ fun update(params: PriceExternalPriceIdUpdateParams): Price = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ fun update(externalPriceId: String, requestOptions: RequestOptions): Price = update(externalPriceId, PriceExternalPriceIdUpdateParams.none(), requestOptions) @@ -67,29 +67,29 @@ interface ExternalPriceIdService { fun fetch(externalPriceId: String): Price = fetch(externalPriceId, PriceExternalPriceIdFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPriceId: String, params: PriceExternalPriceIdFetchParams = PriceExternalPriceIdFetchParams.none(), requestOptions: RequestOptions = RequestOptions.none(), ): Price = fetch(params.toBuilder().externalPriceId(externalPriceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ fun fetch( externalPriceId: String, params: PriceExternalPriceIdFetchParams = PriceExternalPriceIdFetchParams.none(), ): Price = fetch(externalPriceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch( params: PriceExternalPriceIdFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): Price - /** @see [fetch] */ + /** @see fetch */ fun fetch(params: PriceExternalPriceIdFetchParams): Price = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ fun fetch(externalPriceId: String, requestOptions: RequestOptions): Price = fetch(externalPriceId, PriceExternalPriceIdFetchParams.none(), requestOptions) @@ -116,7 +116,7 @@ interface ExternalPriceIdService { fun update(externalPriceId: String): HttpResponseFor = update(externalPriceId, PriceExternalPriceIdUpdateParams.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( externalPriceId: String, @@ -125,26 +125,26 @@ interface ExternalPriceIdService { ): HttpResponseFor = update(params.toBuilder().externalPriceId(externalPriceId).build(), requestOptions) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( externalPriceId: String, params: PriceExternalPriceIdUpdateParams = PriceExternalPriceIdUpdateParams.none(), ): HttpResponseFor = update(externalPriceId, params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( params: PriceExternalPriceIdUpdateParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [update] */ + /** @see update */ @MustBeClosed fun update(params: PriceExternalPriceIdUpdateParams): HttpResponseFor = update(params, RequestOptions.none()) - /** @see [update] */ + /** @see update */ @MustBeClosed fun update( externalPriceId: String, @@ -160,7 +160,7 @@ interface ExternalPriceIdService { fun fetch(externalPriceId: String): HttpResponseFor = fetch(externalPriceId, PriceExternalPriceIdFetchParams.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( externalPriceId: String, @@ -169,26 +169,26 @@ interface ExternalPriceIdService { ): HttpResponseFor = fetch(params.toBuilder().externalPriceId(externalPriceId).build(), requestOptions) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( externalPriceId: String, params: PriceExternalPriceIdFetchParams = PriceExternalPriceIdFetchParams.none(), ): HttpResponseFor = fetch(externalPriceId, params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch( params: PriceExternalPriceIdFetchParams, requestOptions: RequestOptions = RequestOptions.none(), ): HttpResponseFor - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(params: PriceExternalPriceIdFetchParams): HttpResponseFor = fetch(params, RequestOptions.none()) - /** @see [fetch] */ + /** @see fetch */ @MustBeClosed fun fetch(externalPriceId: String, requestOptions: RequestOptions): HttpResponseFor = fetch(externalPriceId, PriceExternalPriceIdFetchParams.none(), requestOptions)