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

commonMain.aws.sdk.kotlin.services.wisdom.model.QuickResponseContentProvider.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.wisdom.model



/**
 * The container quick response content.
 */
public sealed class QuickResponseContentProvider {
    /**
     * The content of the quick response.
     */
    public data class Content(val value: kotlin.String) : aws.sdk.kotlin.services.wisdom.model.QuickResponseContentProvider() {
    }

    public object SdkUnknown : aws.sdk.kotlin.services.wisdom.model.QuickResponseContentProvider() {
    }

    /**
     * Casts this [QuickResponseContentProvider] as a [Content] and retrieves its [kotlin.String] value. Throws an exception if the [QuickResponseContentProvider] is not a
     * [Content].
     */
    public fun asContent(): kotlin.String = (this as QuickResponseContentProvider.Content).value

    /**
     * Casts this [QuickResponseContentProvider] as a [Content] and retrieves its [kotlin.String] value. Returns null if the [QuickResponseContentProvider] is not a [Content].
     */
    public fun asContentOrNull(): kotlin.String? = (this as? QuickResponseContentProvider.Content)?.value
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy