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

commonMain.aws.sdk.kotlin.services.route53domains.model.GetContactReachabilityStatusResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.route53domains.model



public class GetContactReachabilityStatusResponse private constructor(builder: Builder) {
    /**
     * The domain name for which you requested the reachability status.
     */
    public val domainName: kotlin.String? = builder.domainName
    /**
     * Whether the registrant contact has responded. Values include the following:
     *
     * ## PENDING
     * We sent the confirmation email and haven't received a response yet.
     *
     * ## DONE
     * We sent the email and got confirmation from the registrant contact.
     *
     * ## EXPIRED
     * The time limit expired before the registrant contact responded.
     */
    public val status: aws.sdk.kotlin.services.route53domains.model.ReachabilityStatus? = builder.status

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

    override fun toString(): kotlin.String = buildString {
        append("GetContactReachabilityStatusResponse(")
        append("domainName=$domainName,")
        append("status=$status")
        append(")")
    }

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

        if (domainName != other.domainName) return false
        if (status != other.status) return false

        return true
    }

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

    public class Builder {
        /**
         * The domain name for which you requested the reachability status.
         */
        public var domainName: kotlin.String? = null
        /**
         * Whether the registrant contact has responded. Values include the following:
         *
         * ## PENDING
         * We sent the confirmation email and haven't received a response yet.
         *
         * ## DONE
         * We sent the email and got confirmation from the registrant contact.
         *
         * ## EXPIRED
         * The time limit expired before the registrant contact responded.
         */
        public var status: aws.sdk.kotlin.services.route53domains.model.ReachabilityStatus? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.route53domains.model.GetContactReachabilityStatusResponse) : this() {
            this.domainName = x.domainName
            this.status = x.status
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy