Struct google_content2::InventorySetRequest[][src]

pub struct InventorySetRequest {
    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.

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

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 InventorySetRequest
[src]

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

impl Clone for InventorySetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InventorySetRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for InventorySetRequest
[src]

Auto Trait Implementations