commonMain.aws.sdk.kotlin.services.route53domains.model.GetContactReachabilityStatusResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53domains-jvm Show documentation
Show all versions of route53domains-jvm Show documentation
The AWS SDK for Kotlin client for Route 53 Domains
// 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
}
}
}