use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct ApplyPatchToolCallItemParam {
#[serde(rename = "type")]
pub r#type: Type,
#[serde(
rename = "id",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub id: Option<Option<String>>,
#[serde(rename = "call_id")]
pub call_id: String,
#[serde(rename = "status")]
pub status: models::ApplyPatchCallStatusParam,
#[serde(rename = "operation")]
pub operation: Box<models::ApplyPatchOperationParam>,
}
impl ApplyPatchToolCallItemParam {
pub fn new(
r#type: Type,
call_id: String,
status: models::ApplyPatchCallStatusParam,
operation: models::ApplyPatchOperationParam,
) -> ApplyPatchToolCallItemParam {
ApplyPatchToolCallItemParam {
r#type,
id: None,
call_id,
status,
operation: Box::new(operation),
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "apply_patch_call")]
ApplyPatchCall,
}
impl Default for Type {
fn default() -> Type {
Self::ApplyPatchCall
}
}
impl std::fmt::Display for ApplyPatchToolCallItemParam {
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),
}
}
}