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

aws.sdk.kotlin.services.pinpoint.model.GetEmailChannelResponse.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.pinpoint.model



class GetEmailChannelResponse private constructor(builder: Builder) {
    /**
     * Provides information about the status and settings of the email channel for an application.
     */
    val emailChannelResponse: aws.sdk.kotlin.services.pinpoint.model.EmailChannelResponse? = builder.emailChannelResponse

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

    override fun toString(): kotlin.String = buildString {
        append("GetEmailChannelResponse(")
        append("emailChannelResponse=$emailChannelResponse)")
    }

    override fun hashCode(): kotlin.Int {
        var result = emailChannelResponse?.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 GetEmailChannelResponse

        if (emailChannelResponse != other.emailChannelResponse) return false

        return true
    }

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

    class Builder {
        /**
         * Provides information about the status and settings of the email channel for an application.
         */
        var emailChannelResponse: aws.sdk.kotlin.services.pinpoint.model.EmailChannelResponse? = null

        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.pinpoint.model.GetEmailChannelResponse) : this() {
            this.emailChannelResponse = x.emailChannelResponse
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.pinpoint.model.EmailChannelResponse] inside the given [block]
         */
        fun emailChannelResponse(block: aws.sdk.kotlin.services.pinpoint.model.EmailChannelResponse.Builder.() -> kotlin.Unit) {
            this.emailChannelResponse = aws.sdk.kotlin.services.pinpoint.model.EmailChannelResponse.invoke(block)
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy