Struct google_content2::OrderLineItemProduct
source · pub struct OrderLineItemProduct {Show 15 fields
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>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§target_country: Option<i64>The CLDR territory code of the target country of the product.
shown_image: Option<String>URL to the cached image shown to the user when order was placed.
content_language: Option<String>The two-letter ISO 639-1 language code for the item.
title: Option<String>The title of the product.
mpn: Option<String>Manufacturer Part Number (MPN) of the item.
variant_attributes: Option<Vec<OrderLineItemProductVariantAttribute>>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: Option<String>Brand of the item.
image_link: Option<String>URL of an image of the item.
offer_id: Option<String>An identifier of the item.
id: Option<String>The REST id of the product.
item_group_id: Option<String>Shared identifier for all variants of the same product.
gtin: Option<String>Global Trade Item Number (GTIN) of the item.
condition: Option<String>Condition or state of the item.
price: Option<Price>Price of the item.
channel: Option<String>The item’s channel (online or local).
Trait Implementations§
source§impl Clone for OrderLineItemProduct
impl Clone for OrderLineItemProduct
source§fn clone(&self) -> OrderLineItemProduct
fn clone(&self) -> OrderLineItemProduct
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for OrderLineItemProduct
impl Debug for OrderLineItemProduct
source§impl Default for OrderLineItemProduct
impl Default for OrderLineItemProduct
source§fn default() -> OrderLineItemProduct
fn default() -> OrderLineItemProduct
source§impl<'de> Deserialize<'de> for OrderLineItemProduct
impl<'de> Deserialize<'de> for OrderLineItemProduct
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl Serialize for OrderLineItemProduct
impl Serialize for OrderLineItemProduct
impl Part for OrderLineItemProduct
Auto Trait Implementations§
impl Freeze for OrderLineItemProduct
impl RefUnwindSafe for OrderLineItemProduct
impl Send for OrderLineItemProduct
impl Sync for OrderLineItemProduct
impl Unpin for OrderLineItemProduct
impl UnwindSafe for OrderLineItemProduct
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more