commonMain.aws.sdk.kotlin.services.wellarchitected.model.ReviewTemplateAnswerStatus.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wellarchitected.model
import kotlin.collections.List
public sealed class ReviewTemplateAnswerStatus {
public abstract val value: kotlin.String
public object Answered : aws.sdk.kotlin.services.wellarchitected.model.ReviewTemplateAnswerStatus() {
override val value: kotlin.String = "ANSWERED"
override fun toString(): kotlin.String = "Answered"
}
public object Unanswered : aws.sdk.kotlin.services.wellarchitected.model.ReviewTemplateAnswerStatus() {
override val value: kotlin.String = "UNANSWERED"
override fun toString(): kotlin.String = "Unanswered"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.wellarchitected.model.ReviewTemplateAnswerStatus() {
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.wellarchitected.model.ReviewTemplateAnswerStatus = when (value) {
"ANSWERED" -> Answered
"UNANSWERED" -> Unanswered
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Answered,
Unanswered,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy