openai_struct/models/
computer_call_output_item_param.rs1#[allow(unused_imports)]
14use serde_json::Value;
15
16#[derive(Debug, Serialize, Deserialize)]
17pub struct ComputerCallOutputItemParam {
18 #[serde(rename = "acknowledged_safety_checks")]
19 pub acknowledged_safety_checks: Option<Value>,
20 #[serde(rename = "call_id")]
22 pub call_id: String,
23 #[serde(rename = "id")]
24 pub id: Option<Value>,
25 #[serde(rename = "output")]
26 pub output: crate::models::ComputerScreenshotImage,
27 #[serde(rename = "status")]
28 pub status: Option<Value>,
29 #[serde(rename = "type")]
31 pub _type: String,
32}