commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.AccountAttribute.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.model
/**
* Displays the attributes associated with a single Amazon Web Services account.
*/
public class AccountAttribute private constructor(builder: Builder) {
/**
* The name of the account attribute.
*/
public val name: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.AccountAttributeName? = builder.name
/**
* The value associated with the account attribute name.
*/
public val value: kotlin.String? = builder.value
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.AccountAttribute = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("AccountAttribute(")
append("name=$name,")
append("value=$value)")
}
override fun hashCode(): kotlin.Int {
var result = name?.hashCode() ?: 0
result = 31 * result + (value?.hashCode() ?: 0)
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 AccountAttribute
if (name != other.name) return false
if (value != other.value) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.AccountAttribute = Builder(this).apply(block).build()
public class Builder {
/**
* The name of the account attribute.
*/
public var name: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.AccountAttributeName? = null
/**
* The value associated with the account attribute name.
*/
public var value: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.AccountAttribute) : this() {
this.name = x.name
this.value = x.value
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.AccountAttribute = AccountAttribute(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy