Struct google_content2_sandbox::OrdersUpdateShipmentRequest[][src]

pub struct OrdersUpdateShipmentRequest {
    pub status: Option<String>,
    pub carrier: Option<String>,
    pub tracking_id: Option<String>,
    pub shipment_id: Option<String>,
    pub delivery_date: Option<String>,
    pub operation_id: Option<String>,
}

There is no detailed description.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

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.

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

The ID of the operation. Unique across all operations for a given order.

Trait Implementations

impl Default for OrdersUpdateShipmentRequest
[src]

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

impl Clone for OrdersUpdateShipmentRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrdersUpdateShipmentRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for OrdersUpdateShipmentRequest
[src]

Auto Trait Implementations