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