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

commonMain.aws.sdk.kotlin.services.kendra.model.IssueSubEntity.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.kendra.model

import kotlin.collections.List

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

    public object Attachments : aws.sdk.kotlin.services.kendra.model.IssueSubEntity() {
        override val value: kotlin.String = "ATTACHMENTS"
        override fun toString(): kotlin.String = "Attachments"
    }

    public object Comments : aws.sdk.kotlin.services.kendra.model.IssueSubEntity() {
        override val value: kotlin.String = "COMMENTS"
        override fun toString(): kotlin.String = "Comments"
    }

    public object Worklogs : aws.sdk.kotlin.services.kendra.model.IssueSubEntity() {
        override val value: kotlin.String = "WORKLOGS"
        override fun toString(): kotlin.String = "Worklogs"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.kendra.model.IssueSubEntity() {
        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.kendra.model.IssueSubEntity = when (value) {
            "ATTACHMENTS" -> Attachments
            "COMMENTS" -> Comments
            "WORKLOGS" -> Worklogs
            else -> SdkUnknown(value)
        }

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

        private val values: kotlin.collections.List = listOf(
            Attachments,
            Comments,
            Worklogs,
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy