pub struct AccountUnificationAccountController {
pub fees: Option<AccountUnificationAccountControllerFees>,
pub is_controller: Option<bool>,
pub losses: Option<AccountUnificationAccountControllerLosses>,
pub requirement_collection: Option<AccountUnificationAccountControllerRequirementCollection>,
pub stripe_dashboard: Option<AccountUnificationAccountControllerStripeDashboard>,
pub type_: AccountUnificationAccountControllerType,
}Fields§
§fees: Option<AccountUnificationAccountControllerFees>§is_controller: Option<bool>true if the Connect application retrieving the resource controls the account and can therefore exercise platform controls.
Otherwise, this field is null.
losses: Option<AccountUnificationAccountControllerLosses>§requirement_collection: Option<AccountUnificationAccountControllerRequirementCollection>A value indicating responsibility for collecting requirements on this account. Only returned when the Connect application retrieving the resource controls the account.
stripe_dashboard: Option<AccountUnificationAccountControllerStripeDashboard>§type_: AccountUnificationAccountControllerTypeThe controller type.
Can be application, if a Connect application controls the account, or account, if the account controls itself.
Trait Implementations§
Source§impl Clone for AccountUnificationAccountController
impl Clone for AccountUnificationAccountController
Source§fn clone(&self) -> AccountUnificationAccountController
fn clone(&self) -> AccountUnificationAccountController
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 AccountUnificationAccountController
impl FromValueOpt for AccountUnificationAccountController
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for AccountUnificationAccountController
impl RefUnwindSafe for AccountUnificationAccountController
impl Send for AccountUnificationAccountController
impl Sync for AccountUnificationAccountController
impl Unpin for AccountUnificationAccountController
impl UnwindSafe for AccountUnificationAccountController
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