pub struct IdentityAccount {
pub name: String,
pub account_number: BankAccountNumber,
pub holder: String,
pub has_unlisted_holders: bool,
pub address: Option<String>,
pub bank: String,
pub branch: Option<BranchInfo>,
}Expand description
Account information from identity verification
Fields§
§name: StringAccount nickname or product name (e.g., “Spending”, “Everyday”)
account_number: BankAccountNumberAccount number in NZ format or masked identifier
holder: StringAccount holder name as displayed by the bank
has_unlisted_holders: boolWhether there are additional unlisted joint account holders
address: Option<String>Optional address string
bank: StringBank/institution name
branch: Option<BranchInfo>Optional branch information
Trait Implementations§
Source§impl Clone for IdentityAccount
impl Clone for IdentityAccount
Source§fn clone(&self) -> IdentityAccount
fn clone(&self) -> IdentityAccount
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 IdentityAccount
impl Debug for IdentityAccount
Source§impl<'de> Deserialize<'de> for IdentityAccount
impl<'de> Deserialize<'de> for IdentityAccount
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 PartialEq for IdentityAccount
impl PartialEq for IdentityAccount
Source§impl Serialize for IdentityAccount
impl Serialize for IdentityAccount
impl Eq for IdentityAccount
impl StructuralPartialEq for IdentityAccount
Auto Trait Implementations§
impl Freeze for IdentityAccount
impl RefUnwindSafe for IdentityAccount
impl Send for IdentityAccount
impl Sync for IdentityAccount
impl Unpin for IdentityAccount
impl UnwindSafe for IdentityAccount
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