Struct google_content2::PosInventoryRequest[][src]

pub struct PosInventoryRequest {
    pub item_id: Option<String>,
    pub store_code: Option<String>,
    pub target_country: Option<i64>,
    pub content_language: Option<String>,
    pub timestamp: Option<String>,
    pub price: Option<Price>,
    pub gtin: Option<String>,
    pub quantity: 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

A unique identifier for the item.

The identifier of the merchant's store. Either a storeCode inserted via the API or the code of the store in Google My Business.

The CLDR territory code for the item.

The two-letter ISO 639-1 language code for the item.

The inventory timestamp, in ISO 8601 format.

The current price of the item.

Global Trade Item Number.

The available quantity of the item.

Trait Implementations

impl Default for PosInventoryRequest
[src]

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

impl Clone for PosInventoryRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PosInventoryRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for PosInventoryRequest
[src]

Auto Trait Implementations