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

commonMain.aws.sdk.kotlin.services.opensearchserverless.model.GetAccountSettingsResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.opensearchserverless.model



public class GetAccountSettingsResponse private constructor(builder: Builder) {
    /**
     * OpenSearch Serverless-related details for the current account.
     */
    public val accountSettingsDetail: aws.sdk.kotlin.services.opensearchserverless.model.AccountSettingsDetail? = builder.accountSettingsDetail

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

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

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

        if (accountSettingsDetail != other.accountSettingsDetail) return false

        return true
    }

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

    public class Builder {
        /**
         * OpenSearch Serverless-related details for the current account.
         */
        public var accountSettingsDetail: aws.sdk.kotlin.services.opensearchserverless.model.AccountSettingsDetail? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.opensearchserverless.model.GetAccountSettingsResponse) : this() {
            this.accountSettingsDetail = x.accountSettingsDetail
        }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy