pub struct CreditBankIncomeAccount {
pub account_id: String,
pub mask: Option<String>,
pub name: String,
pub official_name: Option<String>,
pub owners: Vec<Owner>,
pub subtype: DepositoryAccountSubtype,
pub type_: CreditBankIncomeAccountType,
}Expand description
The Item’s bank accounts that have the selected data.
Fields§
§account_id: StringPlaid’s unique identifier for the account.
mask: Option<String>The last 2-4 alphanumeric characters of an account’s official account number. Note that the mask may be non-unique between an Item’s accounts, and it may also not match the mask that the bank displays to the user.
name: StringThe name of the bank account.
official_name: Option<String>The official name of the bank account.
owners: Vec<Owner>Data returned by the financial institution about the account owner or owners. Identity information is optional, so field may return an empty array.
subtype: DepositoryAccountSubtypeValid account subtypes for depository accounts. For a list containing descriptions of each subtype, see Account schemas.
type_: CreditBankIncomeAccountTypeThe account type. This will always be depository.
Trait Implementations§
Source§impl Clone for CreditBankIncomeAccount
impl Clone for CreditBankIncomeAccount
Source§fn clone(&self) -> CreditBankIncomeAccount
fn clone(&self) -> CreditBankIncomeAccount
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreditBankIncomeAccount
impl Debug for CreditBankIncomeAccount
Source§impl<'de> Deserialize<'de> for CreditBankIncomeAccount
impl<'de> Deserialize<'de> for CreditBankIncomeAccount
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for CreditBankIncomeAccount
impl Display for CreditBankIncomeAccount
Auto Trait Implementations§
impl Freeze for CreditBankIncomeAccount
impl RefUnwindSafe for CreditBankIncomeAccount
impl Send for CreditBankIncomeAccount
impl Sync for CreditBankIncomeAccount
impl Unpin for CreditBankIncomeAccount
impl UnwindSafe for CreditBankIncomeAccount
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more