(mut self, id: impl Into<String>)
| 362 | /// Set the tool use ID. |
| 363 | #[must_use] |
| 364 | pub fn with_tool_use_id(mut self, id: impl Into<String>) -> Self { |
| 365 | self.tool_use_id = Some(id.into()); |
| 366 | self |
| 367 | } |
| 368 | |
| 369 | /// Set the timestamp. |
| 370 | #[must_use] |
no outgoing calls