pub struct Attributes {
pub display_name: String,
pub account_type: AccountType,
pub ownership_type: OwnershipType,
pub balance: MoneyObject,
pub created_at: String,
}Fields§
§display_name: StringThe name associated with the account in the Up application.
account_type: AccountTypeThe bank account type of this account. Possible values: SAVER, TRANSACTIONAL
ownership_type: OwnershipTypeThe ownership structure for this account. Possible values: INDIVIDUAL, JOINT
balance: MoneyObjectThe available balance of the account, taking into account any amounts that are currently on hold.
created_at: StringThe date-time at which this account was first opened.
Trait Implementations§
Source§impl Debug for Attributes
impl Debug for Attributes
Source§impl<'de> Deserialize<'de> for Attributes
impl<'de> Deserialize<'de> for Attributes
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 Attributes
impl RefUnwindSafe for Attributes
impl Send for Attributes
impl Sync for Attributes
impl Unpin for Attributes
impl UnwindSafe for Attributes
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