plaid-openapi
```rust use plaid_openapi::PlaidClient;
async fn main() { let client = PlaidClient::fromenv(); let accesstoken ="access-sandbox-b4957595-eae2-4130-9da7-114d14726a62".tostring(); let itemget = client.itemget(accesstoken) .await .unwrap(); println!("{:#?}", item_get); } ```
plaid-openapi
is a feature-complete, human, async client library for the Plaid API, generated from Plaid's OpenAPI spec using openapi-client-generator
.
Contributions are welcome!