/*
* OpenAI API
*
* The OpenAI REST API. Please see https://platform.openai.com/docs/api-reference for more details.
*
* The version of the OpenAPI document: 2.3.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum TranscriptionInclude {
#[serde(rename = "logprobs")]
Logprobs,
}
impl std::fmt::Display for TranscriptionInclude {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Logprobs => write!(f, "logprobs"),
}
}
}
impl Default for TranscriptionInclude {
fn default() -> TranscriptionInclude {
Self::Logprobs
}
}