twilio/twiml/
message.rs

1use super::{format_xml_string, Action};
2
3pub struct Message {
4    pub txt: String,
5}
6
7impl Action for Message {
8    fn as_twiml(&self) -> String {
9        format_xml_string("Message", &vec![], &self.txt)
10    }
11}