pub struct CreateAccountSettingsPayouts {
pub debit_negative_balances: Option<bool>,
pub schedule: Option<CreateAccountSettingsPayoutsSchedule>,
pub statement_descriptor: Option<String>,
}
Expand description
Settings specific to the account’s payouts.
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.
schedule: Option<CreateAccountSettingsPayoutsSchedule>
Details on when funds from charges are available, and when they are paid out to an external account. For details, see our Setting Bank and Debit Card Payouts documentation.
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.
Implementations§
Trait Implementations§
Source§impl Clone for CreateAccountSettingsPayouts
impl Clone for CreateAccountSettingsPayouts
Source§fn clone(&self) -> CreateAccountSettingsPayouts
fn clone(&self) -> CreateAccountSettingsPayouts
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 CreateAccountSettingsPayouts
impl Debug for CreateAccountSettingsPayouts
Auto Trait Implementations§
impl Freeze for CreateAccountSettingsPayouts
impl RefUnwindSafe for CreateAccountSettingsPayouts
impl Send for CreateAccountSettingsPayouts
impl Sync for CreateAccountSettingsPayouts
impl Unpin for CreateAccountSettingsPayouts
impl UnwindSafe for CreateAccountSettingsPayouts
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