Struct google_content2_sandbox::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

The status of the shipment.

Date on which the shipment has been created, in ISO 8601 format.

The carrier handling the shipment.

The tracking id for the shipment.

Date on which the shipment has been delivered, in ISO 8601 format. Present only if status is delievered

The line items that are shipped.

The id of the shipment.

Trait Implementations

impl Default for OrderShipment
[src]

Returns the "default value" for a type. Read more

impl Clone for OrderShipment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrderShipment
[src]

Formats the value using the given formatter.

impl Part for OrderShipment
[src]