Set the session ID
(mut self, id: impl Into<String>)
| 146 | |
| 147 | /// Set the session ID |
| 148 | pub fn with_session_id(mut self, id: impl Into<String>) -> Self { |
| 149 | self.session_id = Some(id.into()); |
| 150 | self |
| 151 | } |
| 152 | |
| 153 | /// Add a custom parameter |
| 154 | pub fn with_param(mut self, key: impl Into<String>, value: serde_json::Value) -> Self { |
no outgoing calls