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

commonMain.aws.sdk.kotlin.services.transcribestreaming.model.IssueDetected.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.transcribestreaming.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Lists the issues that were identified in your audio segment.
 */
public class IssueDetected private constructor(builder: Builder) {
    /**
     * Provides the timestamps that identify when in an audio segment the specified issue occurs.
     */
    public val characterOffsets: aws.sdk.kotlin.services.transcribestreaming.model.CharacterOffsets? = builder.characterOffsets

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

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

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

        if (characterOffsets != other.characterOffsets) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Provides the timestamps that identify when in an audio segment the specified issue occurs.
         */
        public var characterOffsets: aws.sdk.kotlin.services.transcribestreaming.model.CharacterOffsets? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.transcribestreaming.model.IssueDetected) : this() {
            this.characterOffsets = x.characterOffsets
        }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy