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