plaid-link-hotfix

Crates.ioplaid-link-hotfix
lib.rsplaid-link-hotfix
version1.0.1
sourcesrc
created_at2023-11-04 01:38:12.987881
updated_at2023-11-04 01:38:12.987881
descriptionPlaid client, generated from the OpenAPI spec.
homepagehttps://github.com/libninjacom/plaid-rs
repositoryhttps://github.com/libninjacom/plaid-rs
max_upload_size
id1024799
size1,276,776
Erik Awwad (iJustErikk)

documentation

https://docs.rs/plaid

README

GitHub Contributors Stars Build Status Downloads Crates.io

Plaid client, generated from the OpenAPI spec.

Usage

use plaid::PlaidClient;
use plaid::model::*;
#[tokio::main]
async fn main() {
    let client = PlaidClient::from_env();
    let response = client
        .item_application_list()
        .access_token("your access token")
        .send()
        .await
        .unwrap();
    println!("{:#?}", response);
}

This example loads configuration from environment variables, specifically:

  • PLAID_ENV

  • PLAID_CLIENT_ID

  • PLAID_SECRET

  • PLAID_VERSION

Installation

Add this to your Cargo.toml:

[dependencies]
plaid = "5"

Documentation

You can see working examples of every API call in the examples/ directory.

Contributing

Contributions are welcome!

Library created with Libninja.

Commit count: 55

cargo fmt