Struct google_content2_sandbox::OrdersUpdateLineItemShippingDetailsRequest[][src]

pub struct OrdersUpdateLineItemShippingDetailsRequest {
    pub operation_id: Option<String>,
    pub deliver_by_date: Option<String>,
    pub product_id: Option<String>,
    pub line_item_id: Option<String>,
    pub ship_by_date: 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

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

Updated delivery by date, in ISO 8601 format. If not specified only ship by date is updated.

The ID of the product to set metadata. This is the REST ID used in the products service. Either lineItemId or productId is required.

The ID of the line item to set metadata. Either lineItemId or productId is required.

Updated ship by date, in ISO 8601 format. If not specified only deliver by date is updated.

Trait Implementations

impl Default for OrdersUpdateLineItemShippingDetailsRequest
[src]

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

impl Clone for OrdersUpdateLineItemShippingDetailsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrdersUpdateLineItemShippingDetailsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for OrdersUpdateLineItemShippingDetailsRequest
[src]

Auto Trait Implementations