#[non_exhaustive]pub enum CustomerCashBalanceTransactionType {
AdjustedForOverdraft,
AppliedToPayment,
Funded,
FundingReversed,
RefundedFromPayment,
ReturnCanceled,
ReturnInitiated,
TransferredToBalance,
UnappliedFromPayment,
Unknown(String),
}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 (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AdjustedForOverdraft
AppliedToPayment
Funded
FundingReversed
RefundedFromPayment
ReturnCanceled
ReturnInitiated
TransferredToBalance
UnappliedFromPayment
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
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 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