pub struct NumbersAch {
pub account: String,
pub account_id: String,
pub can_transfer_in: Option<bool>,
pub can_transfer_out: Option<bool>,
pub routing: String,
pub wire_routing: Option<String>,
}Expand description
Identifying information for transferring money to or from a US account via ACH or wire transfer.
Fields§
§account: StringThe ACH account number for the account.
At certain institutions, including Chase and PNC, you will receive “tokenized” routing and account numbers, which are not the user’s actual account and routing numbers. For important details on how this may impact your integration and on how to avoid fraud, user confusion, and ACH returns, see Tokenized account numbers.
account_id: StringThe Plaid account ID associated with the account numbers
can_transfer_in: Option<bool>Whether the account supports ACH transfers into the account
can_transfer_out: Option<bool>Whether the account supports ACH transfers out of the account
routing: StringThe ACH routing number for the account. This may be a tokenized routing number. For more information, see Tokenized account numbers.
wire_routing: Option<String>The wire transfer routing number for the account, if available
Trait Implementations§
Source§impl Clone for NumbersAch
impl Clone for NumbersAch
Source§fn clone(&self) -> NumbersAch
fn clone(&self) -> NumbersAch
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more