pub struct CreateIssuingAuthorizationAmountDetails {
pub atm_fee: Option<i64>,
pub cashback_amount: Option<i64>,
}Expand description
Detailed breakdown of amount components.
These amounts are denominated in currency and in the smallest currency unit.
Fields§
§atm_fee: Option<i64>The ATM withdrawal fee.
cashback_amount: Option<i64>The amount of cash requested by the cardholder.
Implementations§
Trait Implementations§
Source§impl Clone for CreateIssuingAuthorizationAmountDetails
impl Clone for CreateIssuingAuthorizationAmountDetails
Source§fn clone(&self) -> CreateIssuingAuthorizationAmountDetails
fn clone(&self) -> CreateIssuingAuthorizationAmountDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for CreateIssuingAuthorizationAmountDetails
impl PartialEq for CreateIssuingAuthorizationAmountDetails
Source§fn eq(&self, other: &CreateIssuingAuthorizationAmountDetails) -> bool
fn eq(&self, other: &CreateIssuingAuthorizationAmountDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CreateIssuingAuthorizationAmountDetails
impl Eq for CreateIssuingAuthorizationAmountDetails
impl StructuralPartialEq for CreateIssuingAuthorizationAmountDetails
Auto Trait Implementations§
impl Freeze for CreateIssuingAuthorizationAmountDetails
impl RefUnwindSafe for CreateIssuingAuthorizationAmountDetails
impl Send for CreateIssuingAuthorizationAmountDetails
impl Sync for CreateIssuingAuthorizationAmountDetails
impl Unpin for CreateIssuingAuthorizationAmountDetails
impl UnsafeUnpin for CreateIssuingAuthorizationAmountDetails
impl UnwindSafe for CreateIssuingAuthorizationAmountDetails
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