pub struct BankConnectionsResourceAccountholder {
pub account: Option<Expandable<Account>>,
pub customer: Option<Expandable<Customer>>,
pub type_: BankConnectionsResourceAccountholderType,
}Fields§
§account: Option<Expandable<Account>>The ID of the Stripe account this account belongs to.
Should only be present if account_holder.type is account.
customer: Option<Expandable<Customer>>ID of the Stripe customer this account belongs to.
Present if and only if account_holder.type is customer.
type_: BankConnectionsResourceAccountholderTypeType of account holder that this account belongs to.
Trait Implementations§
Source§impl Clone for BankConnectionsResourceAccountholder
impl Clone for BankConnectionsResourceAccountholder
Source§fn clone(&self) -> BankConnectionsResourceAccountholder
fn clone(&self) -> BankConnectionsResourceAccountholder
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 BankConnectionsResourceAccountholder
impl FromValueOpt for BankConnectionsResourceAccountholder
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for BankConnectionsResourceAccountholder
impl RefUnwindSafe for BankConnectionsResourceAccountholder
impl Send for BankConnectionsResourceAccountholder
impl Sync for BankConnectionsResourceAccountholder
impl Unpin for BankConnectionsResourceAccountholder
impl UnwindSafe for BankConnectionsResourceAccountholder
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