pub struct FinancialConnectionsAccountOwner {
pub email: Option<String>,
pub id: FinancialConnectionsAccountOwnerId,
pub name: String,
pub ownership: String,
pub phone: Option<String>,
pub raw_address: Option<String>,
pub refreshed_at: Option<Timestamp>,
}
Expand description
Describes an owner of an account.
Fields§
§email: Option<String>
The email address of the owner.
id: FinancialConnectionsAccountOwnerId
Unique identifier for the object.
name: String
The full name of the owner.
ownership: String
The ownership object that this owner belongs to.
phone: Option<String>
The raw phone number of the owner.
raw_address: Option<String>
The raw physical address of the owner.
refreshed_at: Option<Timestamp>
The timestamp of the refresh that updated this owner.
Trait Implementations§
Source§impl Clone for FinancialConnectionsAccountOwner
impl Clone for FinancialConnectionsAccountOwner
Source§fn clone(&self) -> FinancialConnectionsAccountOwner
fn clone(&self) -> FinancialConnectionsAccountOwner
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 FromValueOpt for FinancialConnectionsAccountOwner
impl FromValueOpt for FinancialConnectionsAccountOwner
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for FinancialConnectionsAccountOwner
impl RefUnwindSafe for FinancialConnectionsAccountOwner
impl Send for FinancialConnectionsAccountOwner
impl Sync for FinancialConnectionsAccountOwner
impl Unpin for FinancialConnectionsAccountOwner
impl UnwindSafe for FinancialConnectionsAccountOwner
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