Set request ID.
(mut self, id: impl Into<String>)
| 141 | |
| 142 | /// Set request ID. |
| 143 | pub fn request_id(mut self, id: impl Into<String>) -> Self { |
| 144 | self.request_id = Some(id.into()); |
| 145 | self |
| 146 | } |
| 147 | |
| 148 | /// Set session ID. |
| 149 | pub fn session_id(mut self, id: impl Into<String>) -> Self { |
no outgoing calls