Struct google_content2::ProductsCustomBatchRequestEntry[][src]

pub struct ProductsCustomBatchRequestEntry {
    pub batch_id: Option<u32>,
    pub product: Option<Product>,
    pub merchant_id: Option<String>,
    pub method: Option<String>,
    pub product_id: Option<String>,
}

A batch entry encoding a single non-batch products request.

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

Fields

An entry ID, unique within the batch request.

The product to insert. Only required if the method is insert.

The ID of the managing account.

no description provided

The ID of the product to get or delete. Only defined if the method is get or delete.

Trait Implementations

impl Default for ProductsCustomBatchRequestEntry
[src]

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

impl Clone for ProductsCustomBatchRequestEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProductsCustomBatchRequestEntry
[src]

Formats the value using the given formatter. Read more

impl Part for ProductsCustomBatchRequestEntry
[src]

Auto Trait Implementations