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: String
The name associated with the account in the Up application.
account_type: AccountType
The bank account type of this account. Possible values: SAVER, TRANSACTIONAL
ownership_type: OwnershipType
The ownership structure for this account. Possible values: INDIVIDUAL, JOINT
balance: MoneyObject
The available balance of the account, taking into account any amounts that are currently on hold.
created_at: String
The 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