#![allow(unused_imports)] use plaid::PlaidClient; use plaid::model::*; #[tokio::main] async fn main() { let client = PlaidClient::from_env(); let payment_profile_token = "your payment profile token"; let response = client.payment_profile_get(payment_profile_token).await.unwrap(); println!("{:#?}", response); }