commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateSenderIdRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointsmsvoicev2-jvm Show documentation
Show all versions of pinpointsmsvoicev2-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint SMS Voice V2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateSenderIdRequest private constructor(builder: Builder) {
/**
* By default this is set to false. When set to true the sender ID can't be deleted.
*/
public val deletionProtectionEnabled: kotlin.Boolean? = builder.deletionProtectionEnabled
/**
* The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
*/
public val isoCountryCode: kotlin.String? = builder.isoCountryCode
/**
* The sender ID to update.
*/
public val senderId: kotlin.String? = builder.senderId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateSenderIdRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateSenderIdRequest(")
append("deletionProtectionEnabled=$deletionProtectionEnabled,")
append("isoCountryCode=$isoCountryCode,")
append("senderId=$senderId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = deletionProtectionEnabled?.hashCode() ?: 0
result = 31 * result + (isoCountryCode?.hashCode() ?: 0)
result = 31 * result + (senderId?.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 UpdateSenderIdRequest
if (deletionProtectionEnabled != other.deletionProtectionEnabled) return false
if (isoCountryCode != other.isoCountryCode) return false
if (senderId != other.senderId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateSenderIdRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* By default this is set to false. When set to true the sender ID can't be deleted.
*/
public var deletionProtectionEnabled: kotlin.Boolean? = null
/**
* The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
*/
public var isoCountryCode: kotlin.String? = null
/**
* The sender ID to update.
*/
public var senderId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateSenderIdRequest) : this() {
this.deletionProtectionEnabled = x.deletionProtectionEnabled
this.isoCountryCode = x.isoCountryCode
this.senderId = x.senderId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateSenderIdRequest = UpdateSenderIdRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}