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

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

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

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

import aws.smithy.kotlin.runtime.SdkDsl

public class PutMessageFeedbackResponse private constructor(builder: Builder) {
    /**
     * The current status of the message.
     */
    public val messageFeedbackStatus: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.MessageFeedbackStatus = requireNotNull(builder.messageFeedbackStatus) { "A non-null value must be provided for messageFeedbackStatus" }
    /**
     * The unique identifier for the message.
     */
    public val messageId: kotlin.String = requireNotNull(builder.messageId) { "A non-null value must be provided for messageId" }

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

    override fun toString(): kotlin.String = buildString {
        append("PutMessageFeedbackResponse(")
        append("messageFeedbackStatus=$messageFeedbackStatus,")
        append("messageId=$messageId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = messageFeedbackStatus.hashCode()
        result = 31 * result + (messageId.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 PutMessageFeedbackResponse

        if (messageFeedbackStatus != other.messageFeedbackStatus) return false
        if (messageId != other.messageId) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The current status of the message.
         */
        public var messageFeedbackStatus: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.MessageFeedbackStatus? = null
        /**
         * The unique identifier for the message.
         */
        public var messageId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.PutMessageFeedbackResponse) : this() {
            this.messageFeedbackStatus = x.messageFeedbackStatus
            this.messageId = x.messageId
        }

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

        internal fun correctErrors(): Builder {
            if (messageFeedbackStatus == null) messageFeedbackStatus = MessageFeedbackStatus.SdkUnknown("no value provided")
            if (messageId == null) messageId = ""
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy