com.svix.kotlin.models.CompletionChoice.kt Maven / Gradle / Ivy
/**
* Svix API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.1.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.svix.kotlin.models
import com.svix.kotlin.models.CompletionMessage
import com.squareup.moshi.Json
/**
*
* @param finishReason
* @param index
* @param message
*/
data class CompletionChoice (
@Json(name = "finish_reason")
val finishReason: kotlin.String,
@Json(name = "index")
val index: kotlin.Long,
@Json(name = "message")
val message: CompletionMessage
)