use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct FunctionToolCallOutputResource {
#[serde(rename = "id")]
pub id: String,
#[serde(rename = "type")]
pub r#type: Type,
#[serde(rename = "call_id")]
pub call_id: String,
#[serde(rename = "output")]
pub output: Box<models::FunctionToolCallOutputOutput>,
#[serde(rename = "status")]
pub status: models::FunctionCallOutputStatusEnum,
#[serde(rename = "created_by", skip_serializing_if = "Option::is_none")]
pub created_by: Option<String>,
}
impl FunctionToolCallOutputResource {
pub fn new(
id: String,
r#type: Type,
call_id: String,
output: models::FunctionToolCallOutputOutput,
status: models::FunctionCallOutputStatusEnum,
) -> FunctionToolCallOutputResource {
FunctionToolCallOutputResource {
id,
r#type,
call_id,
output: Box::new(output),
status,
created_by: None,
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "function_call_output")]
FunctionCallOutput,
}
impl Default for Type {
fn default() -> Type {
Self::FunctionCallOutput
}
}
impl std::fmt::Display for FunctionToolCallOutputResource {
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),
}
}
}