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

aws.sdk.kotlin.services.transcribe.model.UpdateVocabularyResponse.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.transcribe.model

import aws.smithy.kotlin.runtime.time.Instant

class UpdateVocabularyResponse private constructor(builder: Builder) {
    /**
     * The language code of the vocabulary entries.
     */
    val languageCode: aws.sdk.kotlin.services.transcribe.model.LanguageCode? = builder.languageCode
    /**
     * The date and time that the vocabulary was updated.
     */
    val lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastModifiedTime
    /**
     * The name of the vocabulary that was updated.
     */
    val vocabularyName: kotlin.String? = builder.vocabularyName
    /**
     * The processing state of the vocabulary. When the VocabularyState
     * field contains READY the vocabulary is ready to be used in a
     * StartTranscriptionJob request.
     */
    val vocabularyState: aws.sdk.kotlin.services.transcribe.model.VocabularyState? = builder.vocabularyState

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

    override fun toString(): kotlin.String = buildString {
        append("UpdateVocabularyResponse(")
        append("languageCode=$languageCode,")
        append("lastModifiedTime=$lastModifiedTime,")
        append("vocabularyName=$vocabularyName,")
        append("vocabularyState=$vocabularyState)")
    }

    override fun hashCode(): kotlin.Int {
        var result = languageCode?.hashCode() ?: 0
        result = 31 * result + (lastModifiedTime?.hashCode() ?: 0)
        result = 31 * result + (vocabularyName?.hashCode() ?: 0)
        result = 31 * result + (vocabularyState?.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 UpdateVocabularyResponse

        if (languageCode != other.languageCode) return false
        if (lastModifiedTime != other.lastModifiedTime) return false
        if (vocabularyName != other.vocabularyName) return false
        if (vocabularyState != other.vocabularyState) return false

        return true
    }

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

    class Builder {
        /**
         * The language code of the vocabulary entries.
         */
        var languageCode: aws.sdk.kotlin.services.transcribe.model.LanguageCode? = null
        /**
         * The date and time that the vocabulary was updated.
         */
        var lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * The name of the vocabulary that was updated.
         */
        var vocabularyName: kotlin.String? = null
        /**
         * The processing state of the vocabulary. When the VocabularyState
         * field contains READY the vocabulary is ready to be used in a
         * StartTranscriptionJob request.
         */
        var vocabularyState: aws.sdk.kotlin.services.transcribe.model.VocabularyState? = null

        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.transcribe.model.UpdateVocabularyResponse) : this() {
            this.languageCode = x.languageCode
            this.lastModifiedTime = x.lastModifiedTime
            this.vocabularyName = x.vocabularyName
            this.vocabularyState = x.vocabularyState
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy