pub struct CreditBankStatementUploadBankAccount {
pub account_id: Option<String>,
pub account_number: Option<String>,
pub account_type: Option<String>,
pub bank_name: Option<String>,
pub name: Option<String>,
pub owner: CreditBankStatementUploadAccountOwner,
pub periods: Vec<CreditBankStatementUploadBankAccountPeriod>,
}Expand description
An object containing data about a user’s bank account related to an uploaded bank statement.
Fields§
§account_id: Option<String>The unique id of the bank account
account_number: Option<String>The bank account number.
account_type: Option<String>The type of the bank account.
bank_name: Option<String>The name of the bank institution.
name: Option<String>The name of the bank account
owner: CreditBankStatementUploadAccountOwnerAn object containing data about the owner of the bank account for the uploaded bank statement.
periods: Vec<CreditBankStatementUploadBankAccountPeriod>An array of period objects, containing more data on the overall period of the statement.
Trait Implementations§
Source§impl Clone for CreditBankStatementUploadBankAccount
impl Clone for CreditBankStatementUploadBankAccount
Source§fn clone(&self) -> CreditBankStatementUploadBankAccount
fn clone(&self) -> CreditBankStatementUploadBankAccount
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 Default for CreditBankStatementUploadBankAccount
impl Default for CreditBankStatementUploadBankAccount
Source§fn default() -> CreditBankStatementUploadBankAccount
fn default() -> CreditBankStatementUploadBankAccount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreditBankStatementUploadBankAccount
impl<'de> Deserialize<'de> for CreditBankStatementUploadBankAccount
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
Auto Trait Implementations§
impl Freeze for CreditBankStatementUploadBankAccount
impl RefUnwindSafe for CreditBankStatementUploadBankAccount
impl Send for CreditBankStatementUploadBankAccount
impl Sync for CreditBankStatementUploadBankAccount
impl Unpin for CreditBankStatementUploadBankAccount
impl UnwindSafe for CreditBankStatementUploadBankAccount
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