commonMain.aws.sdk.kotlin.services.snowball.model.ShipmentState.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snowball-jvm Show documentation
Show all versions of snowball-jvm Show documentation
The AWS SDK for Kotlin client for Snowball
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.snowball.model
import kotlin.collections.List
public sealed class ShipmentState {
public abstract val value: kotlin.String
public object Received : aws.sdk.kotlin.services.snowball.model.ShipmentState() {
override val value: kotlin.String = "RECEIVED"
override fun toString(): kotlin.String = "Received"
}
public object Returned : aws.sdk.kotlin.services.snowball.model.ShipmentState() {
override val value: kotlin.String = "RETURNED"
override fun toString(): kotlin.String = "Returned"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.snowball.model.ShipmentState() {
override fun toString(): kotlin.String = "SdkUnknown($value)"
}
public companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
public fun fromValue(value: kotlin.String): aws.sdk.kotlin.services.snowball.model.ShipmentState = when (value) {
"RECEIVED" -> Received
"RETURNED" -> Returned
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Received,
Returned,
)
}
}