com.increase.api.models.AccountCreateParams.kt Maven / Gradle / Ivy
// 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.JsonProperty
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.increase.api.core.ExcludeMissing
import com.increase.api.core.JsonValue
import com.increase.api.core.NoAutoDetect
import com.increase.api.core.http.Headers
import com.increase.api.core.http.QueryParams
import com.increase.api.core.toImmutable
import com.increase.api.models.*
import java.util.Objects
class AccountCreateParams
constructor(
private val name: String,
private val entityId: String?,
private val informationalEntityId: String?,
private val programId: String?,
private val additionalHeaders: Headers,
private val additionalQueryParams: QueryParams,
private val additionalBodyProperties: Map,
) {
fun name(): String = name
fun entityId(): String? = entityId
fun informationalEntityId(): String? = informationalEntityId
fun programId(): String? = programId
internal fun getBody(): AccountCreateBody {
return AccountCreateBody(
name,
entityId,
informationalEntityId,
programId,
additionalBodyProperties,
)
}
internal fun getHeaders(): Headers = additionalHeaders
internal fun getQueryParams(): QueryParams = additionalQueryParams
@JsonDeserialize(builder = AccountCreateBody.Builder::class)
@NoAutoDetect
class AccountCreateBody
internal constructor(
private val name: String?,
private val entityId: String?,
private val informationalEntityId: String?,
private val programId: String?,
private val additionalProperties: Map,
) {
/** The name you choose for the Account. */
@JsonProperty("name") fun name(): String? = name
/** The identifier for the Entity that will own the Account. */
@JsonProperty("entity_id") fun entityId(): String? = entityId
/**
* The identifier of an Entity that, while not owning the Account, is associated with its
* activity. Its relationship to your group must be `informational`.
*/
@JsonProperty("informational_entity_id")
fun informationalEntityId(): String? = informationalEntityId
/**
* The identifier for the Program that this Account falls under. Required if you operate
* more than one Program.
*/
@JsonProperty("program_id") fun programId(): String? = programId
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
class Builder {
private var name: String? = null
private var entityId: String? = null
private var informationalEntityId: String? = null
private var programId: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(accountCreateBody: AccountCreateBody) = apply {
this.name = accountCreateBody.name
this.entityId = accountCreateBody.entityId
this.informationalEntityId = accountCreateBody.informationalEntityId
this.programId = accountCreateBody.programId
additionalProperties(accountCreateBody.additionalProperties)
}
/** The name you choose for the Account. */
@JsonProperty("name") fun name(name: String) = apply { this.name = name }
/** The identifier for the Entity that will own the Account. */
@JsonProperty("entity_id")
fun entityId(entityId: String) = apply { this.entityId = entityId }
/**
* The identifier of an Entity that, while not owning the Account, is associated with
* its activity. Its relationship to your group must be `informational`.
*/
@JsonProperty("informational_entity_id")
fun informationalEntityId(informationalEntityId: String) = apply {
this.informationalEntityId = informationalEntityId
}
/**
* The identifier for the Program that this Account falls under. Required if you operate
* more than one Program.
*/
@JsonProperty("program_id")
fun programId(programId: String) = apply { this.programId = programId }
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(): AccountCreateBody =
AccountCreateBody(
checkNotNull(name) { "`name` is required but was not set" },
entityId,
informationalEntityId,
programId,
additionalProperties.toImmutable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is AccountCreateBody && this.name == other.name && this.entityId == other.entityId && this.informationalEntityId == other.informationalEntityId && this.programId == other.programId && this.additionalProperties == other.additionalProperties /* spotless:on */
}
private var hashCode: Int = 0
override fun hashCode(): Int {
if (hashCode == 0) {
hashCode = /* spotless:off */ Objects.hash(name, entityId, informationalEntityId, programId, additionalProperties) /* spotless:on */
}
return hashCode
}
override fun toString() =
"AccountCreateBody{name=$name, entityId=$entityId, informationalEntityId=$informationalEntityId, programId=$programId, additionalProperties=$additionalProperties}"
}
fun _additionalHeaders(): Headers = additionalHeaders
fun _additionalQueryParams(): QueryParams = additionalQueryParams
fun _additionalBodyProperties(): Map = additionalBodyProperties
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is AccountCreateParams && this.name == other.name && this.entityId == other.entityId && this.informationalEntityId == other.informationalEntityId && this.programId == other.programId && this.additionalHeaders == other.additionalHeaders && this.additionalQueryParams == other.additionalQueryParams && this.additionalBodyProperties == other.additionalBodyProperties /* spotless:on */
}
override fun hashCode(): Int {
return /* spotless:off */ Objects.hash(name, entityId, informationalEntityId, programId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */
}
override fun toString() =
"AccountCreateParams{name=$name, entityId=$entityId, informationalEntityId=$informationalEntityId, programId=$programId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var name: String? = null
private var entityId: String? = null
private var informationalEntityId: String? = null
private var programId: String? = null
private var additionalHeaders: Headers.Builder = Headers.builder()
private var additionalQueryParams: QueryParams.Builder = QueryParams.builder()
private var additionalBodyProperties: MutableMap = mutableMapOf()
internal fun from(accountCreateParams: AccountCreateParams) = apply {
this.name = accountCreateParams.name
this.entityId = accountCreateParams.entityId
this.informationalEntityId = accountCreateParams.informationalEntityId
this.programId = accountCreateParams.programId
additionalHeaders(accountCreateParams.additionalHeaders)
additionalQueryParams(accountCreateParams.additionalQueryParams)
additionalBodyProperties(accountCreateParams.additionalBodyProperties)
}
/** The name you choose for the Account. */
fun name(name: String) = apply { this.name = name }
/** The identifier for the Entity that will own the Account. */
fun entityId(entityId: String) = apply { this.entityId = entityId }
/**
* The identifier of an Entity that, while not owning the Account, is associated with its
* activity. Its relationship to your group must be `informational`.
*/
fun informationalEntityId(informationalEntityId: String) = apply {
this.informationalEntityId = informationalEntityId
}
/**
* The identifier for the Program that this Account falls under. Required if you operate
* more than one Program.
*/
fun programId(programId: String) = apply { this.programId = programId }
fun additionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.clear()
putAllAdditionalHeaders(additionalHeaders)
}
fun additionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.clear()
putAllAdditionalHeaders(additionalHeaders)
}
fun putAdditionalHeader(name: String, value: String) = apply {
additionalHeaders.put(name, value)
}
fun putAdditionalHeaders(name: String, values: Iterable) = apply {
additionalHeaders.put(name, values)
}
fun putAllAdditionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
fun putAllAdditionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.putAll(additionalHeaders)
}
fun replaceAdditionalHeaders(name: String, value: String) = apply {
additionalHeaders.replace(name, value)
}
fun replaceAdditionalHeaders(name: String, values: Iterable) = apply {
additionalHeaders.replace(name, values)
}
fun replaceAllAdditionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
fun replaceAllAdditionalHeaders(additionalHeaders: Map>) = apply {
this.additionalHeaders.replaceAll(additionalHeaders)
}
fun removeAdditionalHeaders(name: String) = apply { additionalHeaders.remove(name) }
fun removeAllAdditionalHeaders(names: Set) = apply {
additionalHeaders.removeAll(names)
}
fun additionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.clear()
putAllAdditionalQueryParams(additionalQueryParams)
}
fun additionalQueryParams(additionalQueryParams: Map>) = apply {
this.additionalQueryParams.clear()
putAllAdditionalQueryParams(additionalQueryParams)
}
fun putAdditionalQueryParam(key: String, value: String) = apply {
additionalQueryParams.put(key, value)
}
fun putAdditionalQueryParams(key: String, values: Iterable) = apply {
additionalQueryParams.put(key, values)
}
fun putAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
fun putAllAdditionalQueryParams(additionalQueryParams: Map>) =
apply {
this.additionalQueryParams.putAll(additionalQueryParams)
}
fun replaceAdditionalQueryParams(key: String, value: String) = apply {
additionalQueryParams.replace(key, value)
}
fun replaceAdditionalQueryParams(key: String, values: Iterable) = apply {
additionalQueryParams.replace(key, values)
}
fun replaceAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
this.additionalQueryParams.replaceAll(additionalQueryParams)
}
fun replaceAllAdditionalQueryParams(additionalQueryParams: Map>) =
apply {
this.additionalQueryParams.replaceAll(additionalQueryParams)
}
fun removeAdditionalQueryParams(key: String) = apply { additionalQueryParams.remove(key) }
fun removeAllAdditionalQueryParams(keys: Set) = apply {
additionalQueryParams.removeAll(keys)
}
fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
this.additionalBodyProperties.clear()
putAllAdditionalBodyProperties(additionalBodyProperties)
}
fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
additionalBodyProperties.put(key, value)
}
fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
apply {
this.additionalBodyProperties.putAll(additionalBodyProperties)
}
fun removeAdditionalBodyProperty(key: String) = apply {
additionalBodyProperties.remove(key)
}
fun removeAllAdditionalBodyProperties(keys: Set) = apply {
keys.forEach(::removeAdditionalBodyProperty)
}
fun build(): AccountCreateParams =
AccountCreateParams(
checkNotNull(name) { "`name` is required but was not set" },
entityId,
informationalEntityId,
programId,
additionalHeaders.build(),
additionalQueryParams.build(),
additionalBodyProperties.toImmutable(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy