[−][src]Struct google_content2::OrderLineItem
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields
product: Option<OrderLineItemProduct>Product data as seen by customer from the time of the order placement. Note that certain attributes values (e.g. title or gtin) might be reformatted and no longer match values submitted via product feed.
quantity_delivered: Option<u32>Number of items delivered.
return_info: Option<OrderLineItemReturnInfo>Details of the return policy for the line item.
price: Option<Price>Total price for the line item. For example, if two items for $10 are purchased, the total price will be $20.
quantity_pending: Option<u32>Number of items pending.
tax: Option<Price>Total tax amount for the line item. For example, if two items are purchased, and each have a cost tax of $2, the total tax amount will be $4.
cancellations: Option<Vec<OrderCancellation>>Cancellations of the line item.
quantity_canceled: Option<u32>Number of items canceled.
id: Option<String>The ID of the line item.
returns: Option<Vec<OrderReturn>>Returns of the line item.
quantity_shipped: Option<u32>Number of items shipped.
annotations: Option<Vec<OrderMerchantProvidedAnnotation>>Annotations that are attached to the line item.
quantity_returned: Option<u32>Number of items returned.
quantity_ordered: Option<u32>Number of items ordered.
shipping_details: Option<OrderLineItemShippingDetails>Details of the requested shipping for the line item.
Trait Implementations
impl Part for OrderLineItem[src]
impl Default for OrderLineItem[src]
fn default() -> OrderLineItem[src]
impl Clone for OrderLineItem[src]
fn clone(&self) -> OrderLineItem[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for OrderLineItem[src]
impl Serialize for OrderLineItem[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de> Deserialize<'de> for OrderLineItem[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for OrderLineItem
impl Unpin for OrderLineItem
impl Sync for OrderLineItem
impl UnwindSafe for OrderLineItem
impl RefUnwindSafe for OrderLineItem
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Typeable for T where
T: Any,
T: Any,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,