commonMain.aws.sdk.kotlin.services.transcribe.model.Specialty.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transcribe Show documentation
Show all versions of transcribe Show documentation
Amazon Transcribe Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.transcribe.model
import kotlin.collections.List
public sealed class Specialty {
public abstract val value: kotlin.String
public object Primarycare : aws.sdk.kotlin.services.transcribe.model.Specialty() {
override val value: kotlin.String = "PRIMARYCARE"
override fun toString(): kotlin.String = value
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.transcribe.model.Specialty() {
override fun toString(): kotlin.String = value
}
public companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
public fun fromValue(str: kotlin.String): aws.sdk.kotlin.services.transcribe.model.Specialty = when(str) {
"PRIMARYCARE" -> Primarycare
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = listOf(
Primarycare
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy