(mut self, id: impl Into<String>)
| 370 | /// Set the tool use ID. |
| 371 | #[must_use] |
| 372 | pub fn with_tool_use_id(mut self, id: impl Into<String>) -> Self { |
| 373 | self.tool_use_id = Some(id.into()); |
| 374 | self |
| 375 | } |
| 376 | |
| 377 | /// Set the timestamp. |
| 378 | #[must_use] |
no outgoing calls