commonMain.aws.sdk.kotlin.services.partnercentralselling.model.Visibility.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partnercentralselling-jvm Show documentation
Show all versions of partnercentralselling-jvm Show documentation
The AWS SDK for Kotlin client for PartnerCentral Selling
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.partnercentralselling.model
import kotlin.collections.List
public sealed class Visibility {
public abstract val value: kotlin.String
public object Full : aws.sdk.kotlin.services.partnercentralselling.model.Visibility() {
override val value: kotlin.String = "Full"
override fun toString(): kotlin.String = "Full"
}
public object Limited : aws.sdk.kotlin.services.partnercentralselling.model.Visibility() {
override val value: kotlin.String = "Limited"
override fun toString(): kotlin.String = "Limited"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.partnercentralselling.model.Visibility() {
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.partnercentralselling.model.Visibility = when (value) {
"Full" -> Full
"Limited" -> Limited
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Full,
Limited,
)
}
}