pub struct CreateAccountControllerFees {
pub payer: Option<CreateAccountControllerFeesPayer>,
}
Expand description
A hash of configuration for who pays Stripe fees for product usage on this account.
Fields§
§payer: Option<CreateAccountControllerFeesPayer>
A value indicating the responsible payer of Stripe fees on this account.
Defaults to account
.
Learn more about fee behavior on connected accounts.
Implementations§
Trait Implementations§
Source§impl Clone for CreateAccountControllerFees
impl Clone for CreateAccountControllerFees
Source§fn clone(&self) -> CreateAccountControllerFees
fn clone(&self) -> CreateAccountControllerFees
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 CreateAccountControllerFees
impl Debug for CreateAccountControllerFees
impl Copy for CreateAccountControllerFees
Auto Trait Implementations§
impl Freeze for CreateAccountControllerFees
impl RefUnwindSafe for CreateAccountControllerFees
impl Send for CreateAccountControllerFees
impl Sync for CreateAccountControllerFees
impl Unpin for CreateAccountControllerFees
impl UnwindSafe for CreateAccountControllerFees
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