Twilio client, generated from the OpenAPI spec.
```rust use twilio::TwilioClient; use twilio::model::*;
async fn main() { let client = TwilioClient::fromenv(); let response = client .listaccount() .friendlyname("your friendly name") .page(1) .pagesize(1) .page_token("your page token") .status("your status") .await .unwrap(); println!("{:#?}", response); } ```
Add this to your Cargo.toml:
toml
[dependencies]
twilio = "0.1.0"
You can see working examples of every API call in the examples/
directory.
Contributions are welcome!
Library created with Libninja.