Struct google_content2_sandbox::OrderLineItemProduct[][src]

pub struct OrderLineItemProduct {
    pub target_country: Option<i64>,
    pub shown_image: Option<String>,
    pub content_language: Option<String>,
    pub title: Option<String>,
    pub mpn: Option<String>,
    pub variant_attributes: Option<Vec<OrderLineItemProductVariantAttribute>>,
    pub brand: Option<String>,
    pub image_link: Option<String>,
    pub offer_id: Option<String>,
    pub id: Option<String>,
    pub item_group_id: Option<String>,
    pub gtin: Option<String>,
    pub condition: Option<String>,
    pub price: Option<Price>,
    pub channel: 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 CLDR territory code of the target country of the product.

URL to the cached image shown to the user when order was placed.

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

The title of the product.

Manufacturer Part Number (MPN) of the item.

Variant attributes for the item. These are dimensions of the product, such as color, gender, material, pattern, and size. You can find a comprehensive list of variant attributes here.

Brand of the item.

URL of an image of the item.

An identifier of the item.

The REST id of the product.

Shared identifier for all variants of the same product.

Global Trade Item Number (GTIN) of the item.

Condition or state of the item.

Price of the item.

The item's channel (online or local).

Trait Implementations

impl Default for OrderLineItemProduct
[src]

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

impl Clone for OrderLineItemProduct
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrderLineItemProduct
[src]

Formats the value using the given formatter. Read more

impl Part for OrderLineItemProduct
[src]

Auto Trait Implementations