use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct MessageDeltaContentImageFileObject {
#[serde(rename = "index")]
pub index: i32,
#[serde(rename = "type")]
pub r#type: Type,
#[serde(rename = "image_file", skip_serializing_if = "Option::is_none")]
pub image_file: Option<Box<models::MessageDeltaContentImageFileObjectImageFile>>,
}
impl MessageDeltaContentImageFileObject {
pub fn new(index: i32, r#type: Type) -> MessageDeltaContentImageFileObject {
MessageDeltaContentImageFileObject {
index,
r#type,
image_file: None,
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "image_file")]
ImageFile,
}
impl Default for Type {
fn default() -> Type {
Self::ImageFile
}
}
impl std::fmt::Display for MessageDeltaContentImageFileObject {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match serde_json::to_string(self) {
Ok(s) => write!(f, "{}", s),
Err(_) => Err(std::fmt::Error),
}
}
}