Struct google_content2_sandbox::OrdersCustomBatchRequestEntry[][src]

pub struct OrdersCustomBatchRequestEntry {
    pub order_id: Option<String>,
    pub reject_return_line_item: Option<OrdersCustomBatchRequestEntryRejectReturnLineItem>,
    pub update_line_item_shipping_details: Option<OrdersCustomBatchRequestEntryUpdateLineItemShippingDetails>,
    pub in_store_refund_line_item: Option<OrdersCustomBatchRequestEntryInStoreRefundLineItem>,
    pub update_shipment: Option<OrdersCustomBatchRequestEntryUpdateShipment>,
    pub cancel_line_item: Option<OrdersCustomBatchRequestEntryCancelLineItem>,
    pub refund: Option<OrdersCustomBatchRequestEntryRefund>,
    pub cancel: Option<OrdersCustomBatchRequestEntryCancel>,
    pub merchant_id: Option<String>,
    pub return_line_item: Option<OrdersCustomBatchRequestEntryReturnLineItem>,
    pub merchant_order_id: Option<String>,
    pub return_refund_line_item: Option<OrdersCustomBatchRequestEntryReturnRefundLineItem>,
    pub ship_line_items: Option<OrdersCustomBatchRequestEntryShipLineItems>,
    pub set_line_item_metadata: Option<OrdersCustomBatchRequestEntrySetLineItemMetadata>,
    pub batch_id: Option<u32>,
    pub method: Option<String>,
    pub operation_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

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

Required for rejectReturnLineItem method.

Required for updateLineItemShippingDate method.

Required for inStoreReturnLineItem method.

Required for updateShipment method.

Required for cancelLineItem method.

Required for refund method.

Required for cancel method.

The ID of the managing account.

Required for returnLineItem method.

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

Required for returnRefundLineItem method.

Required for shipLineItems method.

Required for setLineItemMetadata method.

An entry ID, unique within the batch request.

The method to apply.

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

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