#![allow(unused_imports)] use plaid::PlaidClient; use plaid::model::*; #[tokio::main] async fn main() { let client = PlaidClient::from_env(); let client_transaction_id = "your client transaction id"; let initiated = true; let response = client .signal_decision_report(client_transaction_id, initiated) .amount_instantly_available(1.0) .days_funds_on_hold(1) .decision_outcome("your decision outcome") .payment_method("your payment method") .await .unwrap(); println!("{:#?}", response); }