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

commonMain.aws.sdk.kotlin.services.connect.model.StopContactStreamingRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.connect.model



public class StopContactStreamingRequest private constructor(builder: Builder) {
    /**
     * The identifier of the contact. This is the identifier of the contact that is associated with the first interaction with the contact center.
     */
    public val contactId: kotlin.String? = builder.contactId
    /**
     * The identifier of the Amazon Connect instance. You can [find the instance ID](https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html) in the Amazon Resource Name (ARN) of the instance.
     */
    public val instanceId: kotlin.String? = builder.instanceId
    /**
     * The identifier of the streaming configuration enabled.
     */
    public val streamingId: kotlin.String? = builder.streamingId

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

    override fun toString(): kotlin.String = buildString {
        append("StopContactStreamingRequest(")
        append("contactId=$contactId,")
        append("instanceId=$instanceId,")
        append("streamingId=$streamingId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = contactId?.hashCode() ?: 0
        result = 31 * result + (instanceId?.hashCode() ?: 0)
        result = 31 * result + (streamingId?.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 StopContactStreamingRequest

        if (contactId != other.contactId) return false
        if (instanceId != other.instanceId) return false
        if (streamingId != other.streamingId) return false

        return true
    }

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

    public class Builder {
        /**
         * The identifier of the contact. This is the identifier of the contact that is associated with the first interaction with the contact center.
         */
        public var contactId: kotlin.String? = null
        /**
         * The identifier of the Amazon Connect instance. You can [find the instance ID](https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html) in the Amazon Resource Name (ARN) of the instance.
         */
        public var instanceId: kotlin.String? = null
        /**
         * The identifier of the streaming configuration enabled.
         */
        public var streamingId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.connect.model.StopContactStreamingRequest) : this() {
            this.contactId = x.contactId
            this.instanceId = x.instanceId
            this.streamingId = x.streamingId
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy