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

commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SpendLimitName.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.pinpointsmsvoicev2.model

import kotlin.collections.List

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

    public object MediaMessageMonthlySpendLimit : aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SpendLimitName() {
        override val value: kotlin.String = "MEDIA_MESSAGE_MONTHLY_SPEND_LIMIT"
        override fun toString(): kotlin.String = "MediaMessageMonthlySpendLimit"
    }

    public object TextMessageMonthlySpendLimit : aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SpendLimitName() {
        override val value: kotlin.String = "TEXT_MESSAGE_MONTHLY_SPEND_LIMIT"
        override fun toString(): kotlin.String = "TextMessageMonthlySpendLimit"
    }

    public object VoiceMessageMonthlySpendLimit : aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SpendLimitName() {
        override val value: kotlin.String = "VOICE_MESSAGE_MONTHLY_SPEND_LIMIT"
        override fun toString(): kotlin.String = "VoiceMessageMonthlySpendLimit"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SpendLimitName() {
        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.pinpointsmsvoicev2.model.SpendLimitName = when (value) {
            "MEDIA_MESSAGE_MONTHLY_SPEND_LIMIT" -> MediaMessageMonthlySpendLimit
            "TEXT_MESSAGE_MONTHLY_SPEND_LIMIT" -> TextMessageMonthlySpendLimit
            "VOICE_MESSAGE_MONTHLY_SPEND_LIMIT" -> VoiceMessageMonthlySpendLimit
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            MediaMessageMonthlySpendLimit,
            TextMessageMonthlySpendLimit,
            VoiceMessageMonthlySpendLimit,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy