pub struct CreateUnlinkedRefundIssuingTransactionPurchaseDetails {
pub fleet: Option<CreateUnlinkedRefundIssuingTransactionPurchaseDetailsFleet>,
pub flight: Option<FlightSpecs>,
pub fuel: Option<CreateUnlinkedRefundIssuingTransactionPurchaseDetailsFuel>,
pub lodging: Option<LodgingSpecs>,
pub receipt: Option<Vec<ReceiptSpecs>>,
pub reference: Option<String>,
}Expand description
Additional purchase information that is optionally provided by the merchant.
Fields§
§fleet: Option<CreateUnlinkedRefundIssuingTransactionPurchaseDetailsFleet>Fleet-specific information for transactions using Fleet cards.
flight: Option<FlightSpecs>Information about the flight that was purchased with this transaction.
fuel: Option<CreateUnlinkedRefundIssuingTransactionPurchaseDetailsFuel>Information about fuel that was purchased with this transaction.
lodging: Option<LodgingSpecs>Information about lodging that was purchased with this transaction.
receipt: Option<Vec<ReceiptSpecs>>The line items in the purchase.
reference: Option<String>A merchant-specific order number.
Implementations§
Trait Implementations§
Source§impl Clone for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
impl Clone for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
Source§fn clone(&self) -> CreateUnlinkedRefundIssuingTransactionPurchaseDetails
fn clone(&self) -> CreateUnlinkedRefundIssuingTransactionPurchaseDetails
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 CreateUnlinkedRefundIssuingTransactionPurchaseDetails
impl PartialEq for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
Source§fn eq(
&self,
other: &CreateUnlinkedRefundIssuingTransactionPurchaseDetails,
) -> bool
fn eq( &self, other: &CreateUnlinkedRefundIssuingTransactionPurchaseDetails, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
impl StructuralPartialEq for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
Auto Trait Implementations§
impl Freeze for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
impl RefUnwindSafe for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
impl Send for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
impl Sync for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
impl Unpin for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
impl UnsafeUnpin for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
impl UnwindSafe for CreateUnlinkedRefundIssuingTransactionPurchaseDetails
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