Struct google_content2::OrdersCustomBatchRequestEntry[][src]

pub struct OrdersCustomBatchRequestEntry {
    pub order_id: Option<String>,
    pub update_line_item_shipping_details: Option<OrdersCustomBatchRequestEntryUpdateLineItemShippingDetails>,
    pub ship_line_items: Option<OrdersCustomBatchRequestEntryShipLineItems>,
    pub update_shipment: Option<OrdersCustomBatchRequestEntryUpdateShipment>,
    pub merchant_id: Option<String>,
    pub set_line_item_metadata: Option<OrdersCustomBatchRequestEntrySetLineItemMetadata>,
    pub merchant_order_id: Option<String>,
    pub cancel_line_item: Option<OrdersCustomBatchRequestEntryCancelLineItem>,
    pub batch_id: Option<u32>,
    pub refund: Option<OrdersCustomBatchRequestEntryRefund>,
    pub cancel: Option<OrdersCustomBatchRequestEntryCancel>,
    pub operation_id: Option<String>,
    pub method: Option<String>,
    pub return_line_item: Option<OrdersCustomBatchRequestEntryReturnLineItem>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

The ID of the order. Required for all methods beside getByMerchantOrderId.

Required for updateLineItemShippingDate method.

Required for shipLineItems method.

Required for updateShipment method.

The ID of the managing account.

Required for setLineItemMetadata method.

The merchant order id. Required for updateMerchantOrderId and getByMerchantOrderId methods.

Required for cancelLineItem method.

An entry ID, unique within the batch request.

Required for refund method.

Required for cancel method.

The ID of the operation. Unique across all operations for a given order. Required for all methods beside get and getByMerchantOrderId.

The method to apply.

Required for returnLineItem method.

Trait Implementations

impl Default for OrdersCustomBatchRequestEntry
[src]

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

impl Clone for OrdersCustomBatchRequestEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrdersCustomBatchRequestEntry
[src]

Formats the value using the given formatter. Read more

impl Part for OrdersCustomBatchRequestEntry
[src]

Auto Trait Implementations