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? = builder.id
    /**
     * The reason the service sync blocker was resolved.
     */
    public val resolvedReason: kotlin.String? = builder.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() ?: 0
        result = 31 * result + (resolvedReason?.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 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)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy