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

commonMain.aws.sdk.kotlin.services.polly.model.StartSpeechSynthesisTaskResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.polly.model

import aws.smithy.kotlin.runtime.SdkDsl

public class StartSpeechSynthesisTaskResponse private constructor(builder: Builder) {
    /**
     * SynthesisTask object that provides information and attributes about a newly submitted speech synthesis task.
     */
    public val synthesisTask: aws.sdk.kotlin.services.polly.model.SynthesisTask? = builder.synthesisTask

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

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

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

        if (synthesisTask != other.synthesisTask) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * SynthesisTask object that provides information and attributes about a newly submitted speech synthesis task.
         */
        public var synthesisTask: aws.sdk.kotlin.services.polly.model.SynthesisTask? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.polly.model.StartSpeechSynthesisTaskResponse) : this() {
            this.synthesisTask = x.synthesisTask
        }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy