com.increase.api.models.OAuthTokenCreateParams.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of increase-java-core Show documentation
Show all versions of increase-java-core Show documentation
An SDK library for increase
The newest version!
// File generated from our OpenAPI spec by Stainless.
package com.increase.api.models
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonAnySetter
import com.fasterxml.jackson.annotation.JsonCreator
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.increase.api.core.Enum
import com.increase.api.core.ExcludeMissing
import com.increase.api.core.JsonField
import com.increase.api.core.JsonValue
import com.increase.api.core.NoAutoDetect
import com.increase.api.core.toUnmodifiable
import com.increase.api.errors.IncreaseInvalidDataException
import com.increase.api.models.*
import java.util.Objects
import java.util.Optional
class OAuthTokenCreateParams
constructor(
private val grantType: GrantType,
private val clientId: String?,
private val clientSecret: String?,
private val code: String?,
private val productionToken: String?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
private val additionalBodyProperties: Map,
) {
fun grantType(): GrantType = grantType
fun clientId(): Optional = Optional.ofNullable(clientId)
fun clientSecret(): Optional = Optional.ofNullable(clientSecret)
fun code(): Optional = Optional.ofNullable(code)
fun productionToken(): Optional = Optional.ofNullable(productionToken)
@JvmSynthetic
internal fun getBody(): OAuthTokenCreateBody {
return OAuthTokenCreateBody(
grantType,
clientId,
clientSecret,
code,
productionToken,
additionalBodyProperties,
)
}
@JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
@JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
@JsonDeserialize(builder = OAuthTokenCreateBody.Builder::class)
@NoAutoDetect
class OAuthTokenCreateBody
internal constructor(
private val grantType: GrantType?,
private val clientId: String?,
private val clientSecret: String?,
private val code: String?,
private val productionToken: String?,
private val additionalProperties: Map,
) {
private var hashCode: Int = 0
/**
* The credential you request in exchange for the code. In Production, this is always
* `authorization_code`. In Sandbox, you can pass either enum value.
*/
@JsonProperty("grant_type") fun grantType(): GrantType? = grantType
/** The public identifier for your application. */
@JsonProperty("client_id") fun clientId(): String? = clientId
/**
* The secret that confirms you own the application. This is redundent given that the
* request is made with your API key but it's a required component of OAuth 2.0.
*/
@JsonProperty("client_secret") fun clientSecret(): String? = clientSecret
/** The authorization code generated by the user and given to you as a query parameter. */
@JsonProperty("code") fun code(): String? = code
/**
* The production token you want to exchange for a sandbox token. This is only available in
* Sandbox. Set `grant_type` to `production_token` to use this parameter.
*/
@JsonProperty("production_token") fun productionToken(): String? = productionToken
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is OAuthTokenCreateBody &&
this.grantType == other.grantType &&
this.clientId == other.clientId &&
this.clientSecret == other.clientSecret &&
this.code == other.code &&
this.productionToken == other.productionToken &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
grantType,
clientId,
clientSecret,
code,
productionToken,
additionalProperties,
)
}
return hashCode
}
override fun toString() =
"OAuthTokenCreateBody{grantType=$grantType, clientId=$clientId, clientSecret=$clientSecret, code=$code, productionToken=$productionToken, additionalProperties=$additionalProperties}"
companion object {
@JvmStatic fun builder() = Builder()
}
class Builder {
private var grantType: GrantType? = null
private var clientId: String? = null
private var clientSecret: String? = null
private var code: String? = null
private var productionToken: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(oauthTokenCreateBody: OAuthTokenCreateBody) = apply {
this.grantType = oauthTokenCreateBody.grantType
this.clientId = oauthTokenCreateBody.clientId
this.clientSecret = oauthTokenCreateBody.clientSecret
this.code = oauthTokenCreateBody.code
this.productionToken = oauthTokenCreateBody.productionToken
additionalProperties(oauthTokenCreateBody.additionalProperties)
}
/**
* The credential you request in exchange for the code. In Production, this is always
* `authorization_code`. In Sandbox, you can pass either enum value.
*/
@JsonProperty("grant_type")
fun grantType(grantType: GrantType) = apply { this.grantType = grantType }
/** The public identifier for your application. */
@JsonProperty("client_id")
fun clientId(clientId: String) = apply { this.clientId = clientId }
/**
* The secret that confirms you own the application. This is redundent given that the
* request is made with your API key but it's a required component of OAuth 2.0.
*/
@JsonProperty("client_secret")
fun clientSecret(clientSecret: String) = apply { this.clientSecret = clientSecret }
/**
* The authorization code generated by the user and given to you as a query parameter.
*/
@JsonProperty("code") fun code(code: String) = apply { this.code = code }
/**
* The production token you want to exchange for a sandbox token. This is only available
* in Sandbox. Set `grant_type` to `production_token` to use this parameter.
*/
@JsonProperty("production_token")
fun productionToken(productionToken: String) = apply {
this.productionToken = productionToken
}
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
this.additionalProperties.putAll(additionalProperties)
}
@JsonAnySetter
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
this.additionalProperties.put(key, value)
}
fun putAllAdditionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun build(): OAuthTokenCreateBody =
OAuthTokenCreateBody(
checkNotNull(grantType) { "`grantType` is required but was not set" },
clientId,
clientSecret,
code,
productionToken,
additionalProperties.toUnmodifiable(),
)
}
}
fun _additionalQueryParams(): Map> = additionalQueryParams
fun _additionalHeaders(): Map> = additionalHeaders
fun _additionalBodyProperties(): Map = additionalBodyProperties
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is OAuthTokenCreateParams &&
this.grantType == other.grantType &&
this.clientId == other.clientId &&
this.clientSecret == other.clientSecret &&
this.code == other.code &&
this.productionToken == other.productionToken &&
this.additionalQueryParams == other.additionalQueryParams &&
this.additionalHeaders == other.additionalHeaders &&
this.additionalBodyProperties == other.additionalBodyProperties
}
override fun hashCode(): Int {
return Objects.hash(
grantType,
clientId,
clientSecret,
code,
productionToken,
additionalQueryParams,
additionalHeaders,
additionalBodyProperties,
)
}
override fun toString() =
"OAuthTokenCreateParams{grantType=$grantType, clientId=$clientId, clientSecret=$clientSecret, code=$code, productionToken=$productionToken, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
@JvmStatic fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var grantType: GrantType? = null
private var clientId: String? = null
private var clientSecret: String? = null
private var code: String? = null
private var productionToken: String? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(oauthTokenCreateParams: OAuthTokenCreateParams) = apply {
this.grantType = oauthTokenCreateParams.grantType
this.clientId = oauthTokenCreateParams.clientId
this.clientSecret = oauthTokenCreateParams.clientSecret
this.code = oauthTokenCreateParams.code
this.productionToken = oauthTokenCreateParams.productionToken
additionalQueryParams(oauthTokenCreateParams.additionalQueryParams)
additionalHeaders(oauthTokenCreateParams.additionalHeaders)
additionalBodyProperties(oauthTokenCreateParams.additionalBodyProperties)
}
/**
* The credential you request in exchange for the code. In Production, this is always
* `authorization_code`. In Sandbox, you can pass either enum value.
*/
fun grantType(grantType: GrantType) = apply { this.grantType = grantType }
/** The public identifier for your application. */
fun clientId(clientId: String) = apply { this.clientId = clientId }
/**
* The secret that confirms you own the application. This is redundent given that the
* request is made with your API key but it's a required component of OAuth 2.0.
*/
fun clientSecret(clientSecret: String) = apply { this.clientSecret = clientSecret }
/** The authorization code generated by the user and given to you as a query parameter. */
fun code(code: String) = apply { this.code = code }
/**
* The production token you want to exchange for a sandbox token. This is only available in
* Sandbox. Set `grant_type` to `production_token` to use this parameter.
*/
fun productionToken(productionToken: String) = apply {
this.productionToken = productionToken
}
fun additionalQueryParams(additionalQueryParams: Map>) = apply {
this.additionalQueryParams.clear()
putAllQueryParams(additionalQueryParams)
}
fun putQueryParam(name: String, value: String) = apply {
this.additionalQueryParams.getOrPut(name) { mutableListOf() }.add(value)
}
fun putQueryParams(name: String, values: Iterable) = apply {
this.additionalQueryParams.getOrPut(name) { mutableListOf() }.addAll(values)
}
fun putAllQueryParams(additionalQueryParams: Map>) = apply {
additionalQueryParams.forEach(this::putQueryParams)
}
fun removeQueryParam(name: String) = apply {
this.additionalQueryParams.put(name, mutableListOf())
}
fun additionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.clear()
putAllHeaders(additionalHeaders)
}
fun putHeader(name: String, value: String) = apply {
this.additionalHeaders.getOrPut(name) { mutableListOf() }.add(value)
}
fun putHeaders(name: String, values: Iterable) = apply {
this.additionalHeaders.getOrPut(name) { mutableListOf() }.addAll(values)
}
fun putAllHeaders(additionalHeaders: Map>) = apply {
additionalHeaders.forEach(this::putHeaders)
}
fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
this.additionalBodyProperties.clear()
this.additionalBodyProperties.putAll(additionalBodyProperties)
}
fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
this.additionalBodyProperties.put(key, value)
}
fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
apply {
this.additionalBodyProperties.putAll(additionalBodyProperties)
}
fun build(): OAuthTokenCreateParams =
OAuthTokenCreateParams(
checkNotNull(grantType) { "`grantType` is required but was not set" },
clientId,
clientSecret,
code,
productionToken,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalBodyProperties.toUnmodifiable(),
)
}
class GrantType
@JsonCreator
private constructor(
private val value: JsonField,
) : Enum {
@com.fasterxml.jackson.annotation.JsonValue fun _value(): JsonField = value
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return other is GrantType && this.value == other.value
}
override fun hashCode() = value.hashCode()
override fun toString() = value.toString()
companion object {
@JvmField val AUTHORIZATION_CODE = GrantType(JsonField.of("authorization_code"))
@JvmField val PRODUCTION_TOKEN = GrantType(JsonField.of("production_token"))
@JvmStatic fun of(value: String) = GrantType(JsonField.of(value))
}
enum class Known {
AUTHORIZATION_CODE,
PRODUCTION_TOKEN,
}
enum class Value {
AUTHORIZATION_CODE,
PRODUCTION_TOKEN,
_UNKNOWN,
}
fun value(): Value =
when (this) {
AUTHORIZATION_CODE -> Value.AUTHORIZATION_CODE
PRODUCTION_TOKEN -> Value.PRODUCTION_TOKEN
else -> Value._UNKNOWN
}
fun known(): Known =
when (this) {
AUTHORIZATION_CODE -> Known.AUTHORIZATION_CODE
PRODUCTION_TOKEN -> Known.PRODUCTION_TOKEN
else -> throw IncreaseInvalidDataException("Unknown GrantType: $value")
}
fun asString(): String = _value().asStringOrThrow()
}
}