pub struct Refund {
pub id: String,
pub amount_money: Money,
pub location_id: String,
pub reason: String,
pub status: RefundStatus,
pub tender_id: String,
pub created_at: Option<String>,
pub processing_fee_money: Option<Money>,
pub transaction_id: Option<String>,
}Fields§
§id: String§amount_money: Money§location_id: String§reason: String§status: RefundStatus§tender_id: String§created_at: Option<String>§processing_fee_money: Option<Money>§transaction_id: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Refund
impl<'de> Deserialize<'de> for Refund
Source§fn 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
Auto Trait Implementations§
impl Freeze for Refund
impl RefUnwindSafe for Refund
impl Send for Refund
impl Sync for Refund
impl Unpin for Refund
impl UnwindSafe for Refund
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