com.svix.kotlin.models.GenerateOut.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.CompletionChoice
import com.squareup.moshi.Json
/**
*
* @param choices
* @param created
* @param id
* @param model
* @param `object`
*/
data class GenerateOut (
@Json(name = "choices")
val choices: kotlin.collections.List,
@Json(name = "created")
val created: kotlin.Long,
@Json(name = "id")
val id: kotlin.String,
@Json(name = "model")
val model: kotlin.String,
@Json(name = "object")
val `object`: kotlin.String
)