pub struct ChargeRefundTransaction {
pub charge_amount: Option<Box<Currency>>,
pub charge_type: Option<String>,
}Expand description
ChargeRefundTransaction : The charge refund transaction.
Fields
charge_amount: Option<Box<Currency>>charge_type: Option<String>The type of charge.
Implementations
sourceimpl ChargeRefundTransaction
impl ChargeRefundTransaction
sourcepub fn new() -> ChargeRefundTransaction
pub fn new() -> ChargeRefundTransaction
The charge refund transaction.
Trait Implementations
sourceimpl Clone for ChargeRefundTransaction
impl Clone for ChargeRefundTransaction
sourcefn clone(&self) -> ChargeRefundTransaction
fn clone(&self) -> ChargeRefundTransaction
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ChargeRefundTransaction
impl Debug for ChargeRefundTransaction
sourceimpl Default for ChargeRefundTransaction
impl Default for ChargeRefundTransaction
sourcefn default() -> ChargeRefundTransaction
fn default() -> ChargeRefundTransaction
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ChargeRefundTransaction
impl<'de> Deserialize<'de> for ChargeRefundTransaction
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ChargeRefundTransaction> for ChargeRefundTransaction
impl PartialEq<ChargeRefundTransaction> for ChargeRefundTransaction
sourcefn eq(&self, other: &ChargeRefundTransaction) -> bool
fn eq(&self, other: &ChargeRefundTransaction) -> bool
sourceimpl Serialize for ChargeRefundTransaction
impl Serialize for ChargeRefundTransaction
impl StructuralPartialEq for ChargeRefundTransaction
Auto Trait Implementations
impl RefUnwindSafe for ChargeRefundTransaction
impl Send for ChargeRefundTransaction
impl Sync for ChargeRefundTransaction
impl Unpin for ChargeRefundTransaction
impl UnwindSafe for ChargeRefundTransaction
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more