Struct google_content2::OrderShipment
[−]
[src]
pub struct OrderShipment {
pub status: Option<String>,
pub creation_date: Option<String>,
pub carrier: Option<String>,
pub tracking_id: Option<String>,
pub delivery_date: Option<String>,
pub line_items: Option<Vec<OrderShipmentLineItemShipment>>,
pub id: Option<String>,
}There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields
status: Option<String>
The status of the shipment.
creation_date: Option<String>
Date on which the shipment has been created, in ISO 8601 format.
carrier: Option<String>
The carrier handling the shipment.
tracking_id: Option<String>
The tracking id for the shipment.
delivery_date: Option<String>
Date on which the shipment has been delivered, in ISO 8601 format. Present only if status is delievered
line_items: Option<Vec<OrderShipmentLineItemShipment>>
The line items that are shipped.
id: Option<String>
The id of the shipment.
Trait Implementations
impl Debug for OrderShipment[src]
impl Clone for OrderShipment[src]
fn clone(&self) -> OrderShipment
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for OrderShipment[src]
fn default() -> OrderShipment
Returns the "default value" for a type. Read more