Struct google_content2::Inventory[][src]

pub struct Inventory {
    pub kind: Option<String>,
    pub installment: Option<Installment>,
    pub sale_price_effective_date: Option<String>,
    pub price: Option<Price>,
    pub sell_on_google_quantity: Option<u32>,
    pub pickup: Option<InventoryPickup>,
    pub sale_price: Option<Price>,
    pub availability: Option<String>,
    pub loyalty_points: Option<LoyaltyPoints>,
    pub quantity: Option<u32>,
}

There is no detailed description.

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

Fields

Identifies what kind of resource this is. Value: the fixed string "content#inventory".

Number and amount of installments to pay for an item. Brazil only.

A date range represented by a pair of ISO 8601 dates separated by a space, comma, or slash. Both dates might be specified as 'null' if undecided.

The price of the product.

The quantity of the product that is available for selling on Google. Supported only for online products.

Store pickup information. Only supported for local inventory. Not setting pickup means "don't update" while setting it to the empty value ({} in JSON) means "delete". Otherwise, pickupMethod and pickupSla must be set together, unless pickupMethod is "not supported".

The sale price of the product. Mandatory if sale_price_effective_date is defined.

The availability of the product.

Loyalty points that users receive after purchasing the item. Japan only.

The quantity of the product. Must be equal to or greater than zero. Supported only for local products.

Trait Implementations

impl Default for Inventory
[src]

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

impl Clone for Inventory
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Inventory
[src]

Formats the value using the given formatter. Read more

impl Part for Inventory
[src]

Auto Trait Implementations

impl Send for Inventory

impl Sync for Inventory