(mut self, raw: serde_json::Value)
| 376 | /// Attach the raw JSON input for debugging. |
| 377 | #[must_use] |
| 378 | pub fn with_raw_json(mut self, raw: serde_json::Value) -> Self { |
| 379 | self.raw_json = Some(raw); |
| 380 | self |
| 381 | } |
| 382 | |
| 383 | /// Returns `true` if this event has a user prompt attached. |
| 384 | pub fn has_prompt(&self) -> bool { |
no outgoing calls