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

commonMain.aws.sdk.kotlin.services.cleanrooms.model.MemberStatus.kt Maven / Gradle / Ivy

There is a newer version: 1.3.35
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.cleanrooms.model

import kotlin.collections.List

public sealed class MemberStatus {
    public abstract val value: kotlin.String

    public object Active : aws.sdk.kotlin.services.cleanrooms.model.MemberStatus() {
        override val value: kotlin.String = "ACTIVE"
        override fun toString(): kotlin.String = "Active"
    }

    public object Invited : aws.sdk.kotlin.services.cleanrooms.model.MemberStatus() {
        override val value: kotlin.String = "INVITED"
        override fun toString(): kotlin.String = "Invited"
    }

    public object Left : aws.sdk.kotlin.services.cleanrooms.model.MemberStatus() {
        override val value: kotlin.String = "LEFT"
        override fun toString(): kotlin.String = "Left"
    }

    public object Removed : aws.sdk.kotlin.services.cleanrooms.model.MemberStatus() {
        override val value: kotlin.String = "REMOVED"
        override fun toString(): kotlin.String = "Removed"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.cleanrooms.model.MemberStatus() {
        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.cleanrooms.model.MemberStatus = when (value) {
            "ACTIVE" -> Active
            "INVITED" -> Invited
            "LEFT" -> Left
            "REMOVED" -> Removed
            else -> SdkUnknown(value)
        }

        /**
         * Get a list of all possible variants
         */
        public fun values(): kotlin.collections.List = values

        private val values: kotlin.collections.List = listOf(
            Active,
            Invited,
            Left,
            Removed,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy