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

commonMain.aws.sdk.kotlin.services.pinpointemail.model.DeliverabilityTestStatus.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.pinpointemail.model

import kotlin.collections.List

/**
 * The status of a predictive inbox placement test. If the status is `IN_PROGRESS`, then the predictive inbox placement test is currently running. Predictive inbox placement tests are usually complete within 24 hours of creating the test. If the status is `COMPLETE`, then the test is finished, and you can use the `GetDeliverabilityTestReport` operation to view the results of the test.
 */
public sealed class DeliverabilityTestStatus {
    public abstract val value: kotlin.String

    public object Completed : aws.sdk.kotlin.services.pinpointemail.model.DeliverabilityTestStatus() {
        override val value: kotlin.String = "COMPLETED"
        override fun toString(): kotlin.String = "Completed"
    }

    public object InProgress : aws.sdk.kotlin.services.pinpointemail.model.DeliverabilityTestStatus() {
        override val value: kotlin.String = "IN_PROGRESS"
        override fun toString(): kotlin.String = "InProgress"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.pinpointemail.model.DeliverabilityTestStatus() {
        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.pinpointemail.model.DeliverabilityTestStatus = when (value) {
            "COMPLETED" -> Completed
            "IN_PROGRESS" -> InProgress
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            Completed,
            InProgress,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy