pub struct CreditNoteRefund {
pub amount_refunded: i64,
pub refund: Expandable<Refund>,
}
Fields§
§amount_refunded: i64
Amount of the refund that applies to this credit note, in cents (or local equivalent).
refund: Expandable<Refund>
ID of the refund.
Trait Implementations§
Source§impl Clone for CreditNoteRefund
impl Clone for CreditNoteRefund
Source§fn clone(&self) -> CreditNoteRefund
fn clone(&self) -> CreditNoteRefund
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 Debug for CreditNoteRefund
impl Debug for CreditNoteRefund
Source§impl Deserialize for CreditNoteRefund
impl Deserialize for CreditNoteRefund
Source§impl FromValueOpt for CreditNoteRefund
impl FromValueOpt for CreditNoteRefund
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for CreditNoteRefund
impl ObjectDeser for CreditNoteRefund
Auto Trait Implementations§
impl Freeze for CreditNoteRefund
impl RefUnwindSafe for CreditNoteRefund
impl Send for CreditNoteRefund
impl Sync for CreditNoteRefund
impl Unpin for CreditNoteRefund
impl UnwindSafe for CreditNoteRefund
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