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

commonMain.aws.sdk.kotlin.services.wisdom.model.QuickResponseDataProvider.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 of quick response data.
 */
public sealed class QuickResponseDataProvider {
    /**
     * The content of the quick response.
     */
    public data class Content(val value: kotlin.String) : aws.sdk.kotlin.services.wisdom.model.QuickResponseDataProvider() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy