commonMain.aws.sdk.kotlin.services.route53domains.model.PriceWithCurrency.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53domains-jvm Show documentation
Show all versions of route53domains-jvm Show documentation
The AWS SDK for Kotlin client for Route 53 Domains
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53domains.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Currency-specific price information.
*/
public class PriceWithCurrency private constructor(builder: Builder) {
/**
* The currency specifier.
*/
public val currency: kotlin.String = requireNotNull(builder.currency) { "A non-null value must be provided for currency" }
/**
* The price of a domain, in a specific currency.
*/
public val price: kotlin.Double = builder.price
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53domains.model.PriceWithCurrency = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PriceWithCurrency(")
append("currency=$currency,")
append("price=$price")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = currency.hashCode()
result = 31 * result + (price.hashCode())
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as PriceWithCurrency
if (currency != other.currency) return false
if (!(price?.equals(other.price) ?: (other.price == null))) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53domains.model.PriceWithCurrency = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The currency specifier.
*/
public var currency: kotlin.String? = null
/**
* The price of a domain, in a specific currency.
*/
public var price: kotlin.Double = 0.0
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53domains.model.PriceWithCurrency) : this() {
this.currency = x.currency
this.price = x.price
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53domains.model.PriceWithCurrency = PriceWithCurrency(this)
internal fun correctErrors(): Builder {
if (currency == null) currency = ""
return this
}
}
}