All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DeleteDefaultSenderIdResponse.kt Maven / Gradle / Ivy

There is a newer version: 1.3.78
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.pinpointsmsvoicev2.model

import aws.smithy.kotlin.runtime.SdkDsl

public class DeleteDefaultSenderIdResponse private constructor(builder: Builder) {
    /**
     * The Amazon Resource Name (ARN) of the configuration set.
     */
    public val configurationSetArn: kotlin.String? = builder.configurationSetArn
    /**
     * The name of the configuration set.
     */
    public val configurationSetName: kotlin.String? = builder.configurationSetName
    /**
     * The current sender ID for the configuration set.
     */
    public val senderId: kotlin.String? = builder.senderId

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DeleteDefaultSenderIdResponse = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("DeleteDefaultSenderIdResponse(")
        append("configurationSetArn=$configurationSetArn,")
        append("configurationSetName=$configurationSetName,")
        append("senderId=$senderId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = configurationSetArn?.hashCode() ?: 0
        result = 31 * result + (configurationSetName?.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 DeleteDefaultSenderIdResponse

        if (configurationSetArn != other.configurationSetArn) return false
        if (configurationSetName != other.configurationSetName) return false
        if (senderId != other.senderId) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DeleteDefaultSenderIdResponse = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The Amazon Resource Name (ARN) of the configuration set.
         */
        public var configurationSetArn: kotlin.String? = null
        /**
         * The name of the configuration set.
         */
        public var configurationSetName: kotlin.String? = null
        /**
         * The current sender ID for the configuration set.
         */
        public var senderId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DeleteDefaultSenderIdResponse) : this() {
            this.configurationSetArn = x.configurationSetArn
            this.configurationSetName = x.configurationSetName
            this.senderId = x.senderId
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DeleteDefaultSenderIdResponse = DeleteDefaultSenderIdResponse(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy