pub struct UpdateBalanceSettingsPaymentsPayouts {
pub minimum_balance_by_currency: Option<HashMap<String, i64>>,
pub schedule: Option<UpdateBalanceSettingsPaymentsPayoutsSchedule>,
pub statement_descriptor: Option<String>,
}
Expand description
Settings specific to the account’s payouts.
Fields§
§minimum_balance_by_currency: Option<HashMap<String, i64>>
The minimum balance amount to retain per currency after automatic payouts. Only funds that exceed these amounts are paid out. Learn more about the minimum balances for automatic payouts.
schedule: Option<UpdateBalanceSettingsPaymentsPayoutsSchedule>
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 UpdateBalanceSettingsPaymentsPayouts
impl Clone for UpdateBalanceSettingsPaymentsPayouts
Source§fn clone(&self) -> UpdateBalanceSettingsPaymentsPayouts
fn clone(&self) -> UpdateBalanceSettingsPaymentsPayouts
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 UpdateBalanceSettingsPaymentsPayouts
impl RefUnwindSafe for UpdateBalanceSettingsPaymentsPayouts
impl Send for UpdateBalanceSettingsPaymentsPayouts
impl Sync for UpdateBalanceSettingsPaymentsPayouts
impl Unpin for UpdateBalanceSettingsPaymentsPayouts
impl UnwindSafe for UpdateBalanceSettingsPaymentsPayouts
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