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

commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeKeywordsResponse.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 DescribeKeywordsResponse private constructor(builder: Builder) {
    /**
     * An array of KeywordInformation objects that contain the results.
     */
    public val keywords: List? = builder.keywords
    /**
     * The token to be used for the next set of paginated results. If this field is empty then there are no more results.
     */
    public val nextToken: kotlin.String? = builder.nextToken
    /**
     * The PhoneNumberId or PoolId that is associated with the OriginationIdentity.
     */
    public val originationIdentity: kotlin.String? = builder.originationIdentity
    /**
     * The PhoneNumberArn or PoolArn that is associated with the OriginationIdentity.
     */
    public val originationIdentityArn: kotlin.String? = builder.originationIdentityArn

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

    override fun toString(): kotlin.String = buildString {
        append("DescribeKeywordsResponse(")
        append("keywords=$keywords,")
        append("nextToken=$nextToken,")
        append("originationIdentity=$originationIdentity,")
        append("originationIdentityArn=$originationIdentityArn")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = keywords?.hashCode() ?: 0
        result = 31 * result + (nextToken?.hashCode() ?: 0)
        result = 31 * result + (originationIdentity?.hashCode() ?: 0)
        result = 31 * result + (originationIdentityArn?.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 DescribeKeywordsResponse

        if (keywords != other.keywords) return false
        if (nextToken != other.nextToken) return false
        if (originationIdentity != other.originationIdentity) return false
        if (originationIdentityArn != other.originationIdentityArn) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * An array of KeywordInformation objects that contain the results.
         */
        public var keywords: List? = null
        /**
         * The token to be used for the next set of paginated results. If this field is empty then there are no more results.
         */
        public var nextToken: kotlin.String? = null
        /**
         * The PhoneNumberId or PoolId that is associated with the OriginationIdentity.
         */
        public var originationIdentity: kotlin.String? = null
        /**
         * The PhoneNumberArn or PoolArn that is associated with the OriginationIdentity.
         */
        public var originationIdentityArn: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.DescribeKeywordsResponse) : this() {
            this.keywords = x.keywords
            this.nextToken = x.nextToken
            this.originationIdentity = x.originationIdentity
            this.originationIdentityArn = x.originationIdentityArn
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy