pub enum CustomerCashBalanceTransactionType {
AdjustedForOverdraft,
AppliedToPayment,
Funded,
FundingReversed,
RefundedFromPayment,
ReturnCanceled,
ReturnInitiated,
TransferredToBalance,
UnappliedFromPayment,
}
Expand description
The type of the cash balance transaction. New types may be added in future. See Customer Balance to learn more about these types.
Variants§
AdjustedForOverdraft
AppliedToPayment
Funded
FundingReversed
RefundedFromPayment
ReturnCanceled
ReturnInitiated
TransferredToBalance
UnappliedFromPayment
Implementations§
Trait Implementations§
Source§impl Clone for CustomerCashBalanceTransactionType
impl Clone for CustomerCashBalanceTransactionType
Source§fn clone(&self) -> CustomerCashBalanceTransactionType
fn clone(&self) -> CustomerCashBalanceTransactionType
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 FromValueOpt for CustomerCashBalanceTransactionType
impl FromValueOpt for CustomerCashBalanceTransactionType
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for CustomerCashBalanceTransactionType
impl PartialEq for CustomerCashBalanceTransactionType
Source§fn eq(&self, other: &CustomerCashBalanceTransactionType) -> bool
fn eq(&self, other: &CustomerCashBalanceTransactionType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for CustomerCashBalanceTransactionType
impl Eq for CustomerCashBalanceTransactionType
impl StructuralPartialEq for CustomerCashBalanceTransactionType
Auto Trait Implementations§
impl Freeze for CustomerCashBalanceTransactionType
impl RefUnwindSafe for CustomerCashBalanceTransactionType
impl Send for CustomerCashBalanceTransactionType
impl Sync for CustomerCashBalanceTransactionType
impl Unpin for CustomerCashBalanceTransactionType
impl UnwindSafe for CustomerCashBalanceTransactionType
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