pub struct UpdateBalanceSettingsPayments {
pub debit_negative_balances: Option<bool>,
pub payouts: Option<UpdateBalanceSettingsPaymentsPayouts>,
pub settlement_timing: Option<UpdateBalanceSettingsPaymentsSettlementTiming>,
}
Expand description
Settings that apply to the Payments Balance.
Fields§
§debit_negative_balances: Option<bool>
A Boolean indicating whether Stripe should try to reclaim negative balances from an attached bank account. For details, see Understanding Connect Account Balances.
payouts: Option<UpdateBalanceSettingsPaymentsPayouts>
Settings specific to the account’s payouts.
settlement_timing: Option<UpdateBalanceSettingsPaymentsSettlementTiming>
Settings related to the account’s balance settlement timing.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateBalanceSettingsPayments
impl Clone for UpdateBalanceSettingsPayments
Source§fn clone(&self) -> UpdateBalanceSettingsPayments
fn clone(&self) -> UpdateBalanceSettingsPayments
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 moreAuto Trait Implementations§
impl Freeze for UpdateBalanceSettingsPayments
impl RefUnwindSafe for UpdateBalanceSettingsPayments
impl Send for UpdateBalanceSettingsPayments
impl Sync for UpdateBalanceSettingsPayments
impl Unpin for UpdateBalanceSettingsPayments
impl UnwindSafe for UpdateBalanceSettingsPayments
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