```bash use intistelecom_rs::{ client::Client, message::send, model::message::MessageBody, };
fn main() { let client: Client = Client::new("YOURUSERNAME", "YOURAPIKEY"); let res = send( &client, &mut MessageBody { destination: String::from("PHONENUMBER"), originator: String::from("ORIGINATORNAME"), text: String::from("SOME TEXT"), timetosend: String::from("2023-08-01 11:20:00"), validityperiod: 0, callbackurl: String::from(""), uselocal_time: false, }, ); println!("{:#?}", res); }
```