pub struct AccountAccess {
pub account_product_access: Option<AccountProductAccess>,
pub authorized: Option<bool>,
pub unique_id: String,
}Expand description
Allow or disallow product access by account. Unlisted (e.g. missing) accounts will be considered new_accounts.
Fields§
§account_product_access: Option<AccountProductAccess>Allow the application to access specific products on this account
Allow the application to see this account (and associated details, including balance) in the list of accounts If unset, defaults to true.
unique_id: StringThe unique account identifier for this account. This value must match that returned by the data access API for this account.
Trait Implementations§
Source§impl Clone for AccountAccess
impl Clone for AccountAccess
Source§fn clone(&self) -> AccountAccess
fn clone(&self) -> AccountAccess
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 AccountAccess
impl Debug for AccountAccess
Source§impl Default for AccountAccess
impl Default for AccountAccess
Source§fn default() -> AccountAccess
fn default() -> AccountAccess
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountAccess
impl<'de> Deserialize<'de> for AccountAccess
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 Display for AccountAccess
impl Display for AccountAccess
Auto Trait Implementations§
impl Freeze for AccountAccess
impl RefUnwindSafe for AccountAccess
impl Send for AccountAccess
impl Sync for AccountAccess
impl Unpin for AccountAccess
impl UnwindSafe for AccountAccess
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