Struct google_content2::OrdersShipLineItemsRequest[][src]

pub struct OrdersShipLineItemsRequest {
    pub line_items: Option<Vec<OrderShipmentLineItemShipment>>,
    pub carrier: Option<String>,
    pub tracking_id: Option<String>,
    pub shipment_group_id: Option<String>,
    pub shipment_id: Option<String>,
    pub shipment_infos: Option<Vec<OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo>>,
    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

Line items to ship.

Deprecated. Please use shipmentInfo instead. The carrier handling the shipment. See shipments[].carrier in the Orders resource representation for a list of acceptable values.

Deprecated. Please use shipmentInfo instead. The tracking id for the shipment.

ID of the shipment group. Required for orders that use the orderinvoices service.

Deprecated. Please use shipmentInfo instead. The ID of the shipment.

Shipment information. This field is repeated because a single line item can be shipped in several packages (and have several tracking IDs).

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

Trait Implementations

impl Default for OrdersShipLineItemsRequest
[src]

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

impl Clone for OrdersShipLineItemsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrdersShipLineItemsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for OrdersShipLineItemsRequest
[src]

Auto Trait Implementations