Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/libninjacom/twilio-rs
Twilio client, generated from the OpenAPI spec, with love from the team at Libninja
https://github.com/libninjacom/twilio-rs
openapi rust twilio
Last synced: 12 days ago
JSON representation
Twilio client, generated from the OpenAPI spec, with love from the team at Libninja
- Host: GitHub
- URL: https://github.com/libninjacom/twilio-rs
- Owner: libninjacom
- License: mit
- Created: 2023-03-28T15:28:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-30T01:11:05.000Z (almost 2 years ago)
- Last Synced: 2024-11-09T14:29:15.735Z (2 months ago)
- Topics: openapi, rust, twilio
- Language: Rust
- Homepage: https://www.twilio.com/docs/api/rest
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Twilio client, generated from the OpenAPI spec.
# Usage
```rust
use twilio::TwilioClient;
use twilio::model::*;
#[tokio::main]
async fn main() {
let client = TwilioClient::from_env();
let response = client
.list_account()
.friendly_name("your friendly name")
.page(1)
.page_size(1)
.page_token("your page token")
.status("your status")
.await
.unwrap();
println!("{:#?}", response);
}
```# Installation
Add this to your Cargo.toml:
```toml
[dependencies]
twilio = "0.1.0"
```# Documentation
* [Client Library Documentation](https://docs.rs/twilio)
You can see working examples of every API call in the `examples/` directory.
# Contributing
Contributions are welcome!
*Library created with [Libninja](https://www.libninja.com).*