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

commonMain.com.xebia.functional.openai.generated.model.MessageDeltaContentImageUrlObject.kt Maven / Gradle / Ivy

The newest version!
/**
 *
 * Please note:
 * This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * Do not edit this file manually.
 *
 */

@file:Suppress(
    "ArrayInDataClass",
    "EnumEntryName",
    "RemoveRedundantQualifierName",
    "UnusedImport"
)

package com.xebia.functional.openai.generated.model

import com.xebia.functional.openai.generated.model.MessageDeltaContentImageUrlObjectImageUrl



import kotlinx.serialization.Serializable
import kotlinx.serialization.SerialName
import kotlinx.serialization.Contextual
import kotlin.js.JsName
import kotlinx.serialization.json.*

/**
* References an image URL in the content of a message.
*
    * @param index The index of the content part in the message.
    * @param type Always `image_url`.
    * @param imageUrl 
*/
@Serializable


data class MessageDeltaContentImageUrlObject (
        /* The index of the content part in the message. */
    @SerialName(value = "index") val index: kotlin.Int,
        /* Always `image_url`. */
    @SerialName(value = "type") val type: MessageDeltaContentImageUrlObject.Type,
        @SerialName(value = "image_url") val imageUrl: MessageDeltaContentImageUrlObjectImageUrl? = null
) {

            /**
            * Always `image_url`.
            *
            * Values: image_url
            */
            @Serializable
            enum class Type(val value: kotlin.String) {
                @SerialName(value = "image_url") image_url("image_url");
                }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy