Struct gapi_grpc::google::cloud::recommendationengine::v1beta1::CatalogItem[][src]

pub struct CatalogItem {
    pub id: String,
    pub category_hierarchies: Vec<CategoryHierarchy>,
    pub title: String,
    pub description: String,
    pub item_attributes: Option<FeatureMap>,
    pub language_code: String,
    pub tags: Vec<String>,
    pub item_group_id: String,
    pub recommendation_type: Option<RecommendationType>,
}

CatalogItem captures all metadata information of items to be recommended.

Fields

id: String

Required. Catalog item identifier. UTF-8 encoded string with a length limit of 128 bytes.

This id must be unique among all catalog items within the same catalog. It should also be used when logging user events in order for the user events to be joined with the Catalog.

category_hierarchies: Vec<CategoryHierarchy>

Required. Catalog item categories. This field is repeated for supporting one catalog item belonging to several parallel category hierarchies.

For example, if a shoes product belongs to both [“Shoes & Accessories” -> “Shoes”] and [“Sports & Fitness” -> “Athletic Clothing” -> “Shoes”], it could be represented as:

 "categoryHierarchies": [
   { "categories": ["Shoes & Accessories", "Shoes"]},
   { "categories": ["Sports & Fitness", "Athletic Clothing", "Shoes"] }
 ]
title: String

Required. Catalog item title. UTF-8 encoded string with a length limit of 1 KiB.

description: String

Optional. Catalog item description. UTF-8 encoded string with a length limit of 5 KiB.

item_attributes: Option<FeatureMap>

Optional. Highly encouraged. Extra catalog item attributes to be included in the recommendation model. For example, for retail products, this could include the store name, vendor, style, color, etc. These are very strong signals for recommendation model, thus we highly recommend providing the item attributes here.

language_code: String

Optional. Language of the title/description/item_attributes. Use language tags defined by BCP 47. https://www.rfc-editor.org/rfc/bcp/bcp47.txt. Our supported language codes include ‘en’, ‘es’, ‘fr’, ‘de’, ‘ar’, ‘fa’, ‘zh’, ‘ja’, ‘ko’, ‘sv’, ‘ro’, ‘nl’. For other languages, contact your Google account manager.

tags: Vec<String>

Optional. Filtering tags associated with the catalog item. Each tag should be a UTF-8 encoded string with a length limit of 1 KiB.

This tag can be used for filtering recommendation results by passing the tag as part of the predict request filter.

item_group_id: String

Optional. Variant group identifier for prediction results. UTF-8 encoded string with a length limit of 128 bytes.

This field must be enabled before it can be used. Learn more.

recommendation_type: Option<RecommendationType>

Extra catalog item metadata for different recommendation types.

Trait Implementations

impl Clone for CatalogItem[src]

impl Debug for CatalogItem[src]

impl Default for CatalogItem[src]

impl Message for CatalogItem[src]

impl PartialEq<CatalogItem> for CatalogItem[src]

impl StructuralPartialEq for CatalogItem[src]

Auto Trait Implementations

impl RefUnwindSafe for CatalogItem

impl Send for CatalogItem

impl Sync for CatalogItem

impl Unpin for CatalogItem

impl UnwindSafe for CatalogItem

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]