
com.moderntreasury.api.models.TransactionLineItemCreateParams.kt Maven / Gradle / Ivy
// File generated from our OpenAPI spec by Stainless.
package com.moderntreasury.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.moderntreasury.api.core.ExcludeMissing
import com.moderntreasury.api.core.JsonValue
import com.moderntreasury.api.core.NoAutoDetect
import com.moderntreasury.api.core.http.Headers
import com.moderntreasury.api.core.http.QueryParams
import com.moderntreasury.api.core.toImmutable
import java.util.Objects
class TransactionLineItemCreateParams
constructor(
private val amount: Long,
private val expectedPaymentId: String,
private val transactionId: String,
private val additionalHeaders: Headers,
private val additionalQueryParams: QueryParams,
private val additionalBodyProperties: Map,
) {
fun amount(): Long = amount
fun expectedPaymentId(): String = expectedPaymentId
fun transactionId(): String = transactionId
fun _additionalHeaders(): Headers = additionalHeaders
fun _additionalQueryParams(): QueryParams = additionalQueryParams
fun _additionalBodyProperties(): Map = additionalBodyProperties
internal fun getBody(): TransactionLineItemCreateBody {
return TransactionLineItemCreateBody(
amount,
expectedPaymentId,
transactionId,
additionalBodyProperties,
)
}
internal fun getHeaders(): Headers = additionalHeaders
internal fun getQueryParams(): QueryParams = additionalQueryParams
@JsonDeserialize(builder = TransactionLineItemCreateBody.Builder::class)
@NoAutoDetect
class TransactionLineItemCreateBody
internal constructor(
private val amount: Long?,
private val expectedPaymentId: String?,
private val transactionId: String?,
private val additionalProperties: Map,
) {
/**
* If a matching object exists in Modern Treasury, `amount` will be populated. Value in
* specified currency's smallest unit (taken from parent Transaction).
*/
@JsonProperty("amount") fun amount(): Long? = amount
/** The ID of the reconciled Expected Payment, otherwise `null`. */
@JsonProperty("expected_payment_id") fun expectedPaymentId(): String? = expectedPaymentId
/** The ID of the parent transaction. */
@JsonProperty("transaction_id") fun transactionId(): String? = transactionId
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
class Builder {
private var amount: Long? = null
private var expectedPaymentId: String? = null
private var transactionId: String? = null
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(transactionLineItemCreateBody: TransactionLineItemCreateBody) =
apply {
this.amount = transactionLineItemCreateBody.amount
this.expectedPaymentId = transactionLineItemCreateBody.expectedPaymentId
this.transactionId = transactionLineItemCreateBody.transactionId
additionalProperties(transactionLineItemCreateBody.additionalProperties)
}
/**
* If a matching object exists in Modern Treasury, `amount` will be populated. Value in
* specified currency's smallest unit (taken from parent Transaction).
*/
@JsonProperty("amount") fun amount(amount: Long) = apply { this.amount = amount }
/** The ID of the reconciled Expected Payment, otherwise `null`. */
@JsonProperty("expected_payment_id")
fun expectedPaymentId(expectedPaymentId: String) = apply {
this.expectedPaymentId = expectedPaymentId
}
/** The ID of the parent transaction. */
@JsonProperty("transaction_id")
fun transactionId(transactionId: String) = apply { this.transactionId = transactionId }
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(): TransactionLineItemCreateBody =
TransactionLineItemCreateBody(
checkNotNull(amount) { "`amount` is required but was not set" },
checkNotNull(expectedPaymentId) {
"`expectedPaymentId` is required but was not set"
},
checkNotNull(transactionId) { "`transactionId` is required but was not set" },
additionalProperties.toImmutable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is TransactionLineItemCreateBody && amount == other.amount && expectedPaymentId == other.expectedPaymentId && transactionId == other.transactionId && additionalProperties == other.additionalProperties /* spotless:on */
}
/* spotless:off */
private val hashCode: Int by lazy { Objects.hash(amount, expectedPaymentId, transactionId, additionalProperties) }
/* spotless:on */
override fun hashCode(): Int = hashCode
override fun toString() =
"TransactionLineItemCreateBody{amount=$amount, expectedPaymentId=$expectedPaymentId, transactionId=$transactionId, additionalProperties=$additionalProperties}"
}
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
@NoAutoDetect
class Builder {
private var amount: Long? = null
private var expectedPaymentId: String? = null
private var transactionId: String? = null
private var additionalHeaders: Headers.Builder = Headers.builder()
private var additionalQueryParams: QueryParams.Builder = QueryParams.builder()
private var additionalBodyProperties: MutableMap = mutableMapOf()
internal fun from(transactionLineItemCreateParams: TransactionLineItemCreateParams) =
apply {
amount = transactionLineItemCreateParams.amount
expectedPaymentId = transactionLineItemCreateParams.expectedPaymentId
transactionId = transactionLineItemCreateParams.transactionId
additionalHeaders = transactionLineItemCreateParams.additionalHeaders.toBuilder()
additionalQueryParams =
transactionLineItemCreateParams.additionalQueryParams.toBuilder()
additionalBodyProperties =
transactionLineItemCreateParams.additionalBodyProperties.toMutableMap()
}
/**
* If a matching object exists in Modern Treasury, `amount` will be populated. Value in
* specified currency's smallest unit (taken from parent Transaction).
*/
fun amount(amount: Long) = apply { this.amount = amount }
/** The ID of the reconciled Expected Payment, otherwise `null`. */
fun expectedPaymentId(expectedPaymentId: String) = apply {
this.expectedPaymentId = expectedPaymentId
}
/** The ID of the parent transaction. */
fun transactionId(transactionId: String) = apply { this.transactionId = transactionId }
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(): TransactionLineItemCreateParams =
TransactionLineItemCreateParams(
checkNotNull(amount) { "`amount` is required but was not set" },
checkNotNull(expectedPaymentId) {
"`expectedPaymentId` is required but was not set"
},
checkNotNull(transactionId) { "`transactionId` is required but was not set" },
additionalHeaders.build(),
additionalQueryParams.build(),
additionalBodyProperties.toImmutable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is TransactionLineItemCreateParams && amount == other.amount && expectedPaymentId == other.expectedPaymentId && transactionId == other.transactionId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams && additionalBodyProperties == other.additionalBodyProperties /* spotless:on */
}
override fun hashCode(): Int = /* spotless:off */ Objects.hash(amount, expectedPaymentId, transactionId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */
override fun toString() =
"TransactionLineItemCreateParams{amount=$amount, expectedPaymentId=$expectedPaymentId, transactionId=$transactionId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy