pub struct AccountPayoutSettings {
pub debit_negative_balances: bool,
pub schedule: TransferSchedule,
pub statement_descriptor: Option<String>,
}
Fields§
§debit_negative_balances: bool
A Boolean indicating if Stripe should try to reclaim negative balances from an attached bank account.
See Understanding Connect account balances for details.
The default value is false
when controller.requirement_collection is application
, which includes Custom accounts, otherwise true
.
schedule: TransferSchedule
§statement_descriptor: Option<String>
The text that appears on the bank account statement for payouts. If not set, this defaults to the platform’s bank descriptor as set in the Dashboard.
Trait Implementations§
Source§impl Clone for AccountPayoutSettings
impl Clone for AccountPayoutSettings
Source§fn clone(&self) -> AccountPayoutSettings
fn clone(&self) -> AccountPayoutSettings
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 AccountPayoutSettings
impl Debug for AccountPayoutSettings
Source§impl Deserialize for AccountPayoutSettings
impl Deserialize for AccountPayoutSettings
Source§impl FromValueOpt for AccountPayoutSettings
impl FromValueOpt for AccountPayoutSettings
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for AccountPayoutSettings
impl RefUnwindSafe for AccountPayoutSettings
impl Send for AccountPayoutSettings
impl Sync for AccountPayoutSettings
impl Unpin for AccountPayoutSettings
impl UnwindSafe for AccountPayoutSettings
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