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

commonMain.aws.sdk.kotlin.services.appstream.model.DeleteEntitlementRequest.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.appstream.model



class DeleteEntitlementRequest private constructor(builder: Builder) {
    /**
     * The name of the entitlement.
     */
    val name: kotlin.String? = builder.name
    /**
     * The name of the stack with which the entitlement is associated.
     */
    val stackName: kotlin.String? = builder.stackName

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

    override fun toString(): kotlin.String = buildString {
        append("DeleteEntitlementRequest(")
        append("name=$name,")
        append("stackName=$stackName)")
    }

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

        if (name != other.name) return false
        if (stackName != other.stackName) return false

        return true
    }

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

    class Builder {
        /**
         * The name of the entitlement.
         */
        var name: kotlin.String? = null
        /**
         * The name of the stack with which the entitlement is associated.
         */
        var stackName: kotlin.String? = null

        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.appstream.model.DeleteEntitlementRequest) : this() {
            this.name = x.name
            this.stackName = x.stackName
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.appstream.model.DeleteEntitlementRequest = DeleteEntitlementRequest(this)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy