commonMain.com.xebia.functional.openai.generated.model.RunStepStreamEventOneOf4.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xef-openai-client Show documentation
Show all versions of xef-openai-client Show documentation
Building applications with LLMs through composability in Kotlin
/**
*
* 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.RunStepObject
import kotlinx.serialization.Serializable
import kotlinx.serialization.SerialName
import kotlinx.serialization.Contextual
import kotlin.js.JsName
import kotlinx.serialization.json.*
/**
* Occurs when a [run step](/docs/api-reference/runs/step-object) fails.
*
* @param event
* @param `data`
*/
@Serializable
data class RunStepStreamEventOneOf4 (
@SerialName(value = "event") val event: RunStepStreamEventOneOf4.Event,
@SerialName(value = "data") val `data`: RunStepObject
) {
/**
*
*
* Values: thread_run_step_failed
*/
@Serializable
enum class Event(val value: kotlin.String) {
@SerialName(value = "thread.run.step.failed") thread_run_step_failed("thread.run.step.failed");
}
}