pub struct UpdateBalanceSettingsPaymentsPayoutsSchedule {
pub interval: Option<UpdateBalanceSettingsPaymentsPayoutsScheduleInterval>,
pub monthly_payout_days: Option<Vec<u32>>,
pub weekly_payout_days: Option<Vec<UpdateBalanceSettingsPaymentsPayoutsScheduleWeeklyPayoutDays>>,
}
Expand description
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.
Fields§
§interval: Option<UpdateBalanceSettingsPaymentsPayoutsScheduleInterval>
How frequently available funds are paid out.
One of: daily
, manual
, weekly
, or monthly
.
Default is daily
.
monthly_payout_days: Option<Vec<u32>>
The days of the month when available funds are paid out, specified as an array of numbers between 1–31.
Payouts nominally scheduled between the 29th and 31st of the month are instead sent on the last day of a shorter month.
Required and applicable only if interval
is monthly
.
weekly_payout_days: Option<Vec<UpdateBalanceSettingsPaymentsPayoutsScheduleWeeklyPayoutDays>>
The days of the week when available funds are paid out, specified as an array, e.g., [monday
, tuesday
].
Required and applicable only if interval
is weekly
.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateBalanceSettingsPaymentsPayoutsSchedule
impl Clone for UpdateBalanceSettingsPaymentsPayoutsSchedule
Source§fn clone(&self) -> UpdateBalanceSettingsPaymentsPayoutsSchedule
fn clone(&self) -> UpdateBalanceSettingsPaymentsPayoutsSchedule
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 UpdateBalanceSettingsPaymentsPayoutsSchedule
impl RefUnwindSafe for UpdateBalanceSettingsPaymentsPayoutsSchedule
impl Send for UpdateBalanceSettingsPaymentsPayoutsSchedule
impl Sync for UpdateBalanceSettingsPaymentsPayoutsSchedule
impl Unpin for UpdateBalanceSettingsPaymentsPayoutsSchedule
impl UnwindSafe for UpdateBalanceSettingsPaymentsPayoutsSchedule
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