[][src]Struct ebay::sell::fulfillment::Order

pub struct Order {
    pub order_id: String,
    pub creation_date: DateTime<Utc>,
    pub last_modified_date: DateTime<Utc>,
    pub order_fulfillment_status: OrderFulfillmentStatus,
    pub order_payment_status: OrderPaymentStatus,
    pub seller_id: String,
    pub buyer: Buyer,
    pub buyer_checkout_notes: Option<String>,
    pub pricing_summary: PricingSummary,
    pub payment_summary: PaymentSummary,
    pub fulfillment_start_instructions: Vec<FulfillmentStartInstruction>,
    pub fulfillment_hrefs: Option<Vec<String>>,
    pub line_items: Vec<LineItem>,
    pub cancel_status: CancelStatus,
}

Fields

order_id: Stringcreation_date: DateTime<Utc>last_modified_date: DateTime<Utc>order_fulfillment_status: OrderFulfillmentStatusorder_payment_status: OrderPaymentStatusseller_id: Stringbuyer: Buyerbuyer_checkout_notes: Option<String>pricing_summary: PricingSummarypayment_summary: PaymentSummaryfulfillment_start_instructions: Vec<FulfillmentStartInstruction>fulfillment_hrefs: Option<Vec<String>>line_items: Vec<LineItem>cancel_status: CancelStatus

Trait Implementations

impl Debug for Order[src]

impl Serialize for Order[src]

impl<'de> Deserialize<'de> for Order[src]

Auto Trait Implementations

impl Send for Order

impl Sync for Order

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T