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

commonMain.aws.sdk.kotlin.services.proton.model.UpdateServiceSyncBlockerRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.proton.model



public class UpdateServiceSyncBlockerRequest private constructor(builder: Builder) {
    /**
     * The ID of the service sync blocker.
     */
    public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
    /**
     * The reason the service sync blocker was resolved.
     */
    public val resolvedReason: kotlin.String = requireNotNull(builder.resolvedReason) { "A non-null value must be provided for resolvedReason" }

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

    override fun toString(): kotlin.String = buildString {
        append("UpdateServiceSyncBlockerRequest(")
        append("id=$id,")
        append("resolvedReason=$resolvedReason")
        append(")")
    }

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

        if (id != other.id) return false
        if (resolvedReason != other.resolvedReason) return false

        return true
    }

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

    public class Builder {
        /**
         * The ID of the service sync blocker.
         */
        public var id: kotlin.String? = null
        /**
         * The reason the service sync blocker was resolved.
         */
        public var resolvedReason: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.proton.model.UpdateServiceSyncBlockerRequest) : this() {
            this.id = x.id
            this.resolvedReason = x.resolvedReason
        }

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

        internal fun correctErrors(): Builder {
            if (id == null) id = ""
            if (resolvedReason == null) resolvedReason = ""
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy