Builder: set the reference.
(mut self, reference: impl Into<String>)
| 254 | |
| 255 | /// Builder: set the reference. |
| 256 | pub fn with_reference(mut self, reference: impl Into<String>) -> Self { |
| 257 | self.reference = reference.into(); |
| 258 | self |
| 259 | } |
| 260 | |
| 261 | /// Builder: set the message. |
| 262 | pub fn with_message(mut self, message: impl Into<String>) -> Self { |
no outgoing calls