Struct google_content2_sandbox::OrdersCustomBatchRequestEntryUpdateShipment[][src]

pub struct OrdersCustomBatchRequestEntryUpdateShipment {
    pub delivery_date: Option<String>,
    pub status: Option<String>,
    pub carrier: Option<String>,
    pub tracking_id: Option<String>,
    pub shipment_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

Date on which the shipment has been delivered, in ISO 8601 format. Optional and can be provided only if status is delivered.

New status for the shipment. Not updated if missing.

The carrier handling the shipment. Not updated if missing. See shipments[].carrier in the Orders resource representation for a list of acceptable values.

The tracking id for the shipment. Not updated if missing.

The ID of the shipment.

Trait Implementations

impl Default for OrdersCustomBatchRequestEntryUpdateShipment
[src]

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

impl Clone for OrdersCustomBatchRequestEntryUpdateShipment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrdersCustomBatchRequestEntryUpdateShipment
[src]

Formats the value using the given formatter. Read more

impl Part for OrdersCustomBatchRequestEntryUpdateShipment
[src]

Auto Trait Implementations