
commonMain.aws.sdk.kotlin.services.voiceid.model.DescribeSpeakerResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.voiceid.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DescribeSpeakerResponse private constructor(builder: Builder) {
/**
* Information about the specified speaker.
*/
public val speaker: aws.sdk.kotlin.services.voiceid.model.Speaker? = builder.speaker
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.voiceid.model.DescribeSpeakerResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeSpeakerResponse(")
append("speaker=$speaker")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = speaker?.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 DescribeSpeakerResponse
if (speaker != other.speaker) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.voiceid.model.DescribeSpeakerResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Information about the specified speaker.
*/
public var speaker: aws.sdk.kotlin.services.voiceid.model.Speaker? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.voiceid.model.DescribeSpeakerResponse) : this() {
this.speaker = x.speaker
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.voiceid.model.DescribeSpeakerResponse = DescribeSpeakerResponse(this)
/**
* construct an [aws.sdk.kotlin.services.voiceid.model.Speaker] inside the given [block]
*/
public fun speaker(block: aws.sdk.kotlin.services.voiceid.model.Speaker.Builder.() -> kotlin.Unit) {
this.speaker = aws.sdk.kotlin.services.voiceid.model.Speaker.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy