pub struct UpdateBalanceSettingsPaymentsSettlementTiming {
pub delay_days_override: Option<u32>,
}
Expand description
Settings related to the account’s balance settlement timing.
Fields§
§delay_days_override: Option<u32>
Change delay_days
for this account, which determines the number of days charge funds are held before becoming available.
The maximum value is 31.
Passing an empty string to delay_days_override
will return delay_days
to the default, which is the lowest available value for the account.
Learn more about controlling delay days.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateBalanceSettingsPaymentsSettlementTiming
impl Clone for UpdateBalanceSettingsPaymentsSettlementTiming
Source§fn clone(&self) -> UpdateBalanceSettingsPaymentsSettlementTiming
fn clone(&self) -> UpdateBalanceSettingsPaymentsSettlementTiming
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 moreimpl Copy for UpdateBalanceSettingsPaymentsSettlementTiming
Auto Trait Implementations§
impl Freeze for UpdateBalanceSettingsPaymentsSettlementTiming
impl RefUnwindSafe for UpdateBalanceSettingsPaymentsSettlementTiming
impl Send for UpdateBalanceSettingsPaymentsSettlementTiming
impl Sync for UpdateBalanceSettingsPaymentsSettlementTiming
impl Unpin for UpdateBalanceSettingsPaymentsSettlementTiming
impl UnwindSafe for UpdateBalanceSettingsPaymentsSettlementTiming
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