#![allow(unused_imports)]
use plaid::model::*;
use plaid::PlaidClient;
#[tokio::main]
async fn main() {
let client = PlaidClient::from_env();
let after_id = 1;
let response = client.bank_transfer_event_sync(after_id).count(1).await.unwrap();
println!("{:#?}", response);
}