#![allow(unused_imports)]
use plaid::model::*;
use plaid::PlaidClient;
#[tokio::main]
async fn main() {
let client = PlaidClient::from_env();
let wallet_id = "your wallet id";
let response = client.wallet_get(wallet_id).await.unwrap();
println!("{:#?}", response);
}