use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct FunctionShellCall {
#[serde(rename = "type")]
pub r#type: Type,
#[serde(rename = "id")]
pub id: String,
#[serde(rename = "call_id")]
pub call_id: String,
#[serde(rename = "action")]
pub action: Box<models::FunctionShellAction>,
#[serde(rename = "status")]
pub status: models::LocalShellCallStatus,
#[serde(rename = "environment", deserialize_with = "Option::deserialize")]
pub environment: Option<Box<models::FunctionShellCallEnvironment>>,
#[serde(rename = "created_by", skip_serializing_if = "Option::is_none")]
pub created_by: Option<String>,
}
impl FunctionShellCall {
pub fn new(
r#type: Type,
id: String,
call_id: String,
action: models::FunctionShellAction,
status: models::LocalShellCallStatus,
environment: Option<models::FunctionShellCallEnvironment>,
) -> FunctionShellCall {
FunctionShellCall {
r#type,
id,
call_id,
action: Box::new(action),
status,
environment: environment.map(Box::new),
created_by: None,
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "shell_call")]
ShellCall,
}
impl Default for Type {
fn default() -> Type {
Self::ShellCall
}
}
impl std::fmt::Display for FunctionShellCall {
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),
}
}
}