product.proto 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.retail.v2;
  16. import "google/api/annotations.proto";
  17. import "google/api/field_behavior.proto";
  18. import "google/api/resource.proto";
  19. import "google/cloud/retail/v2/common.proto";
  20. import "google/protobuf/duration.proto";
  21. import "google/protobuf/field_mask.proto";
  22. import "google/protobuf/timestamp.proto";
  23. import "google/protobuf/wrappers.proto";
  24. option csharp_namespace = "Google.Cloud.Retail.V2";
  25. option go_package = "google.golang.org/genproto/googleapis/cloud/retail/v2;retail";
  26. option java_multiple_files = true;
  27. option java_outer_classname = "ProductProto";
  28. option java_package = "com.google.cloud.retail.v2";
  29. option objc_class_prefix = "RETAIL";
  30. option php_namespace = "Google\\Cloud\\Retail\\V2";
  31. option ruby_package = "Google::Cloud::Retail::V2";
  32. option (google.api.resource_definition) = {
  33. type: "retail.googleapis.com/Branch"
  34. pattern: "projects/{project}/locations/{location}/catalogs/{catalog}/branches/{branch}"
  35. };
  36. // Product captures all metadata information of items to be recommended or
  37. // searched.
  38. message Product {
  39. option (google.api.resource) = {
  40. type: "retail.googleapis.com/Product"
  41. pattern: "projects/{project}/locations/{location}/catalogs/{catalog}/branches/{branch}/products/{product}"
  42. };
  43. // The type of this product.
  44. enum Type {
  45. // Default value. Default to
  46. // [Catalog.product_level_config.ingestion_product_type][google.cloud.retail.v2.ProductLevelConfig.ingestion_product_type]
  47. // if unset.
  48. TYPE_UNSPECIFIED = 0;
  49. // The primary type.
  50. //
  51. // As the primary unit for predicting, indexing and search serving, a
  52. // [Type.PRIMARY][google.cloud.retail.v2.Product.Type.PRIMARY]
  53. // [Product][google.cloud.retail.v2.Product] is grouped with multiple
  54. // [Type.VARIANT][google.cloud.retail.v2.Product.Type.VARIANT]
  55. // [Product][google.cloud.retail.v2.Product]s.
  56. PRIMARY = 1;
  57. // The variant type.
  58. //
  59. // [Type.VARIANT][google.cloud.retail.v2.Product.Type.VARIANT]
  60. // [Product][google.cloud.retail.v2.Product]s usually share some common
  61. // attributes on the same
  62. // [Type.PRIMARY][google.cloud.retail.v2.Product.Type.PRIMARY]
  63. // [Product][google.cloud.retail.v2.Product]s, but they have variant
  64. // attributes like different colors, sizes and prices, etc.
  65. VARIANT = 2;
  66. // The collection type. Collection products are bundled
  67. // [Type.PRIMARY][google.cloud.retail.v2.Product.Type.PRIMARY]
  68. // [Product][google.cloud.retail.v2.Product]s or
  69. // [Type.VARIANT][google.cloud.retail.v2.Product.Type.VARIANT]
  70. // [Product][google.cloud.retail.v2.Product]s that are sold together, such
  71. // as a jewelry set with necklaces, earrings and rings, etc.
  72. COLLECTION = 3;
  73. }
  74. // Product availability. If this field is unspecified, the product is
  75. // assumed to be in stock.
  76. enum Availability {
  77. // Default product availability. Default to
  78. // [Availability.IN_STOCK][google.cloud.retail.v2.Product.Availability.IN_STOCK]
  79. // if unset.
  80. AVAILABILITY_UNSPECIFIED = 0;
  81. // Product in stock.
  82. IN_STOCK = 1;
  83. // Product out of stock.
  84. OUT_OF_STOCK = 2;
  85. // Product that is in pre-order state.
  86. PREORDER = 3;
  87. // Product that is back-ordered (i.e. temporarily out of stock).
  88. BACKORDER = 4;
  89. }
  90. oneof expiration {
  91. // The timestamp when this product becomes unavailable for
  92. // [SearchService.Search][google.cloud.retail.v2.SearchService.Search].
  93. //
  94. // If it is set, the [Product][google.cloud.retail.v2.Product] is not
  95. // available for
  96. // [SearchService.Search][google.cloud.retail.v2.SearchService.Search] after
  97. // [expire_time][google.cloud.retail.v2.Product.expire_time]. However, the
  98. // product can still be retrieved by
  99. // [ProductService.GetProduct][google.cloud.retail.v2.ProductService.GetProduct]
  100. // and
  101. // [ProductService.ListProducts][google.cloud.retail.v2.ProductService.ListProducts].
  102. //
  103. // Google Merchant Center property
  104. // [expiration_date](https://support.google.com/merchants/answer/6324499).
  105. google.protobuf.Timestamp expire_time = 16;
  106. // Input only. The TTL (time to live) of the product.
  107. //
  108. // If it is set, [expire_time][google.cloud.retail.v2.Product.expire_time]
  109. // is set as current timestamp plus
  110. // [ttl][google.cloud.retail.v2.Product.ttl]. The derived
  111. // [expire_time][google.cloud.retail.v2.Product.expire_time] is returned in
  112. // the output and [ttl][google.cloud.retail.v2.Product.ttl] is left blank
  113. // when retrieving the [Product][google.cloud.retail.v2.Product].
  114. //
  115. // If it is set, the product is not available for
  116. // [SearchService.Search][google.cloud.retail.v2.SearchService.Search] after
  117. // current timestamp plus [ttl][google.cloud.retail.v2.Product.ttl].
  118. // However, the product can still be retrieved by
  119. // [ProductService.GetProduct][google.cloud.retail.v2.ProductService.GetProduct]
  120. // and
  121. // [ProductService.ListProducts][google.cloud.retail.v2.ProductService.ListProducts].
  122. google.protobuf.Duration ttl = 17
  123. [(google.api.field_behavior) = INPUT_ONLY];
  124. }
  125. // Immutable. Full resource name of the product, such as
  126. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/product_id`.
  127. //
  128. // The branch ID must be "default_branch".
  129. string name = 1 [(google.api.field_behavior) = IMMUTABLE];
  130. // Immutable. [Product][google.cloud.retail.v2.Product] identifier, which is
  131. // the final component of [name][google.cloud.retail.v2.Product.name]. For
  132. // example, this field is "id_1", if
  133. // [name][google.cloud.retail.v2.Product.name] is
  134. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/id_1`.
  135. //
  136. // This field must be a UTF-8 encoded string with a length limit of 128
  137. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  138. //
  139. // Google Merchant Center property
  140. // [id](https://support.google.com/merchants/answer/6324405). Schema.org
  141. // Property [Product.sku](https://schema.org/sku).
  142. string id = 2 [(google.api.field_behavior) = IMMUTABLE];
  143. // Immutable. The type of the product. Default to
  144. // [Catalog.product_level_config.ingestion_product_type][google.cloud.retail.v2.ProductLevelConfig.ingestion_product_type]
  145. // if unset.
  146. Type type = 3 [(google.api.field_behavior) = IMMUTABLE];
  147. // Variant group identifier. Must be an
  148. // [id][google.cloud.retail.v2.Product.id], with the same parent branch with
  149. // this product. Otherwise, an error is thrown.
  150. //
  151. // For [Type.PRIMARY][google.cloud.retail.v2.Product.Type.PRIMARY]
  152. // [Product][google.cloud.retail.v2.Product]s, this field can only be empty or
  153. // set to the same value as [id][google.cloud.retail.v2.Product.id].
  154. //
  155. // For VARIANT [Product][google.cloud.retail.v2.Product]s, this field cannot
  156. // be empty. A maximum of 2,000 products are allowed to share the same
  157. // [Type.PRIMARY][google.cloud.retail.v2.Product.Type.PRIMARY]
  158. // [Product][google.cloud.retail.v2.Product]. Otherwise, an INVALID_ARGUMENT
  159. // error is returned.
  160. //
  161. // Google Merchant Center Property
  162. // [item_group_id](https://support.google.com/merchants/answer/6324507).
  163. // Schema.org Property
  164. // [Product.inProductGroupWithID](https://schema.org/inProductGroupWithID).
  165. //
  166. // This field must be enabled before it can be used. [Learn
  167. // more](/recommendations-ai/docs/catalog#item-group-id).
  168. string primary_product_id = 4;
  169. // The [id][google.cloud.retail.v2.Product.id] of the collection members when
  170. // [type][google.cloud.retail.v2.Product.type] is
  171. // [Type.COLLECTION][google.cloud.retail.v2.Product.Type.COLLECTION].
  172. //
  173. // Should not set it for other types. A maximum of 1000 values are allowed.
  174. // Otherwise, an INVALID_ARGUMENT error is return.
  175. repeated string collection_member_ids = 5;
  176. // The Global Trade Item Number (GTIN) of the product.
  177. //
  178. // This field must be a UTF-8 encoded string with a length limit of 128
  179. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  180. //
  181. // Google Merchant Center property
  182. // [gtin](https://support.google.com/merchants/answer/6324461).
  183. // Schema.org property
  184. // [Product.isbn](https://schema.org/isbn) or
  185. // [Product.gtin8](https://schema.org/gtin8) or
  186. // [Product.gtin12](https://schema.org/gtin12) or
  187. // [Product.gtin13](https://schema.org/gtin13) or
  188. // [Product.gtin14](https://schema.org/gtin14).
  189. //
  190. // If the value is not a valid GTIN, an INVALID_ARGUMENT error is returned.
  191. string gtin = 6;
  192. // Product categories. This field is repeated for supporting one product
  193. // belonging to several parallel categories. Strongly recommended using the
  194. // full path for better search / recommendation quality.
  195. //
  196. //
  197. // To represent full path of category, use '>' sign to separate different
  198. // hierarchies. If '>' is part of the category name, please replace it with
  199. // other character(s).
  200. //
  201. // For example, if a shoes product belongs to both
  202. // ["Shoes & Accessories" -> "Shoes"] and
  203. // ["Sports & Fitness" -> "Athletic Clothing" -> "Shoes"], it could be
  204. // represented as:
  205. //
  206. // "categories": [
  207. // "Shoes & Accessories > Shoes",
  208. // "Sports & Fitness > Athletic Clothing > Shoes"
  209. // ]
  210. //
  211. // Must be set for [Type.PRIMARY][google.cloud.retail.v2.Product.Type.PRIMARY]
  212. // [Product][google.cloud.retail.v2.Product] otherwise an INVALID_ARGUMENT
  213. // error is returned.
  214. //
  215. // At most 250 values are allowed per
  216. // [Product][google.cloud.retail.v2.Product]. Empty values are not allowed.
  217. // Each value must be a UTF-8 encoded string with a length limit of 5,000
  218. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  219. //
  220. // Google Merchant Center property
  221. // [google_product_category][mc_google_product_category]. Schema.org property
  222. // [Product.category] (https://schema.org/category).
  223. //
  224. // [mc_google_product_category]:
  225. // https://support.google.com/merchants/answer/6324436
  226. repeated string categories = 7;
  227. // Required. Product title.
  228. //
  229. // This field must be a UTF-8 encoded string with a length limit of 1,000
  230. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  231. //
  232. // Google Merchant Center property
  233. // [title](https://support.google.com/merchants/answer/6324415). Schema.org
  234. // property [Product.name](https://schema.org/name).
  235. string title = 8 [(google.api.field_behavior) = REQUIRED];
  236. // The brands of the product.
  237. //
  238. // A maximum of 30 brands are allowed. Each brand must be a UTF-8 encoded
  239. // string with a length limit of 1,000 characters. Otherwise, an
  240. // INVALID_ARGUMENT error is returned.
  241. //
  242. // Google Merchant Center property
  243. // [brand](https://support.google.com/merchants/answer/6324351). Schema.org
  244. // property [Product.brand](https://schema.org/brand).
  245. repeated string brands = 9;
  246. // Product description.
  247. //
  248. // This field must be a UTF-8 encoded string with a length limit of 5,000
  249. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  250. //
  251. // Google Merchant Center property
  252. // [description](https://support.google.com/merchants/answer/6324468).
  253. // schema.org property [Product.description](https://schema.org/description).
  254. string description = 10;
  255. // Language of the title/description and other string attributes. Use language
  256. // tags defined by [BCP 47][https://www.rfc-editor.org/rfc/bcp/bcp47.txt].
  257. //
  258. // For product prediction, this field is ignored and the model automatically
  259. // detects the text language. The [Product][google.cloud.retail.v2.Product]
  260. // can include text in different languages, but duplicating
  261. // [Product][google.cloud.retail.v2.Product]s to provide text in multiple
  262. // languages can result in degraded model performance.
  263. //
  264. // For product search this field is in use. It defaults to "en-US" if unset.
  265. string language_code = 11;
  266. // Highly encouraged. Extra product attributes to be included. For example,
  267. // for products, this could include the store name, vendor, style, color, etc.
  268. // These are very strong signals for recommendation model, thus we highly
  269. // recommend providing the attributes here.
  270. //
  271. // Features that can take on one of a limited number of possible values. Two
  272. // types of features can be set are:
  273. //
  274. // Textual features. some examples would be the brand/maker of a product, or
  275. // country of a customer. Numerical features. Some examples would be the
  276. // height/weight of a product, or age of a customer.
  277. //
  278. // For example: `{ "vendor": {"text": ["vendor123", "vendor456"]},
  279. // "lengths_cm": {"numbers":[2.3, 15.4]}, "heights_cm": {"numbers":[8.1, 6.4]}
  280. // }`.
  281. //
  282. // This field needs to pass all below criteria, otherwise an INVALID_ARGUMENT
  283. // error is returned:
  284. //
  285. // * Max entries count: 200 by default; 100 for
  286. // [Type.VARIANT][google.cloud.retail.v2.Product.Type.VARIANT].
  287. // * The key must be a UTF-8 encoded string with a length limit of 128
  288. // characters.
  289. // * Max indexable entries count: 200 by default; 40 for
  290. // [Type.VARIANT][google.cloud.retail.v2.Product.Type.VARIANT].
  291. // * Max searchable entries count: 30.
  292. // * For indexable attribute, the key must match the pattern:
  293. // [a-zA-Z0-9][a-zA-Z0-9_]*. For example, key0LikeThis or KEY_1_LIKE_THIS.
  294. map<string, CustomAttribute> attributes = 12;
  295. // Custom tags associated with the product.
  296. //
  297. // At most 250 values are allowed per
  298. // [Product][google.cloud.retail.v2.Product]. This value must be a UTF-8
  299. // encoded string with a length limit of 1,000 characters. Otherwise, an
  300. // INVALID_ARGUMENT error is returned.
  301. //
  302. // This tag can be used for filtering recommendation results by passing the
  303. // tag as part of the
  304. // [PredictRequest.filter][google.cloud.retail.v2.PredictRequest.filter].
  305. //
  306. // Google Merchant Center property
  307. // [custom_label_0–4](https://support.google.com/merchants/answer/6324473).
  308. repeated string tags = 13;
  309. // Product price and cost information.
  310. //
  311. // Google Merchant Center property
  312. // [price](https://support.google.com/merchants/answer/6324371).
  313. PriceInfo price_info = 14;
  314. // The rating of this product.
  315. Rating rating = 15;
  316. // The timestamp when this [Product][google.cloud.retail.v2.Product] becomes
  317. // available for
  318. // [SearchService.Search][google.cloud.retail.v2.SearchService.Search].
  319. google.protobuf.Timestamp available_time = 18;
  320. // The online availability of the [Product][google.cloud.retail.v2.Product].
  321. // Default to
  322. // [Availability.IN_STOCK][google.cloud.retail.v2.Product.Availability.IN_STOCK].
  323. //
  324. // Google Merchant Center Property
  325. // [availability](https://support.google.com/merchants/answer/6324448).
  326. // Schema.org Property [Offer.availability](https://schema.org/availability).
  327. Availability availability = 19;
  328. // The available quantity of the item.
  329. google.protobuf.Int32Value available_quantity = 20;
  330. // Fulfillment information, such as the store IDs for in-store pickup or
  331. // region IDs for different shipping methods.
  332. //
  333. // All the elements must have distinct
  334. // [FulfillmentInfo.type][google.cloud.retail.v2.FulfillmentInfo.type].
  335. // Otherwise, an INVALID_ARGUMENT error is returned.
  336. repeated FulfillmentInfo fulfillment_info = 21;
  337. // Canonical URL directly linking to the product detail page.
  338. //
  339. // It is strongly recommended to provide a valid uri for the product,
  340. // otherwise the service performance could be significantly degraded.
  341. //
  342. // This field must be a UTF-8 encoded string with a length limit of 5,000
  343. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  344. //
  345. // Google Merchant Center property
  346. // [link](https://support.google.com/merchants/answer/6324416). Schema.org
  347. // property [Offer.url](https://schema.org/url).
  348. string uri = 22;
  349. // Product images for the product.Highly recommended to put the main image
  350. // to the first.
  351. //
  352. // A maximum of 300 images are allowed.
  353. //
  354. // Google Merchant Center property
  355. // [image_link](https://support.google.com/merchants/answer/6324350).
  356. // Schema.org property [Product.image](https://schema.org/image).
  357. repeated Image images = 23;
  358. // The target group associated with a given audience (e.g. male, veterans,
  359. // car owners, musicians, etc.) of the product.
  360. Audience audience = 24;
  361. // The color of the product.
  362. //
  363. // Google Merchant Center property
  364. // [color](https://support.google.com/merchants/answer/6324487). Schema.org
  365. // property [Product.color](https://schema.org/color).
  366. ColorInfo color_info = 25;
  367. // The size of the product. To represent different size systems or size types,
  368. // consider using this format: [[[size_system:]size_type:]size_value].
  369. //
  370. // For example, in "US:MENS:M", "US" represents size system; "MENS" represents
  371. // size type; "M" represents size value. In "GIRLS:27", size system is empty;
  372. // "GIRLS" represents size type; "27" represents size value. In "32 inches",
  373. // both size system and size type are empty, while size value is "32 inches".
  374. //
  375. // A maximum of 20 values are allowed per
  376. // [Product][google.cloud.retail.v2.Product]. Each value must be a UTF-8
  377. // encoded string with a length limit of 128 characters. Otherwise, an
  378. // INVALID_ARGUMENT error is returned.
  379. //
  380. // Google Merchant Center property
  381. // [size](https://support.google.com/merchants/answer/6324492),
  382. // [size_type](https://support.google.com/merchants/answer/6324497) and
  383. // [size_system](https://support.google.com/merchants/answer/6324502).
  384. // Schema.org property [Product.size](https://schema.org/size).
  385. repeated string sizes = 26;
  386. // The material of the product. For example, "leather", "wooden".
  387. //
  388. // A maximum of 5 values are allowed. Each value must be a UTF-8 encoded
  389. // string with a length limit of 128 characters. Otherwise, an
  390. // INVALID_ARGUMENT error is returned.
  391. //
  392. // Google Merchant Center property
  393. // [material](https://support.google.com/merchants/answer/6324410). Schema.org
  394. // property [Product.material](https://schema.org/material).
  395. repeated string materials = 27;
  396. // The pattern or graphic print of the product. For example, "striped", "polka
  397. // dot", "paisley".
  398. //
  399. // A maximum of 5 values are allowed per
  400. // [Product][google.cloud.retail.v2.Product]. Each value must be a UTF-8
  401. // encoded string with a length limit of 128 characters. Otherwise, an
  402. // INVALID_ARGUMENT error is returned.
  403. //
  404. // Google Merchant Center property
  405. // [pattern](https://support.google.com/merchants/answer/6324483). Schema.org
  406. // property [Product.pattern](https://schema.org/pattern).
  407. repeated string patterns = 28;
  408. // The condition of the product. Strongly encouraged to use the standard
  409. // values: "new", "refurbished", "used".
  410. //
  411. // A maximum of 5 values are allowed per
  412. // [Product][google.cloud.retail.v2.Product]. Each value must be a UTF-8
  413. // encoded string with a length limit of 128 characters. Otherwise, an
  414. // INVALID_ARGUMENT error is returned.
  415. //
  416. // Google Merchant Center property
  417. // [condition](https://support.google.com/merchants/answer/6324469).
  418. // Schema.org property
  419. // [Offer.itemCondition](https://schema.org/itemCondition).
  420. repeated string conditions = 29;
  421. // The promotions applied to the product. A maximum of 10 values are allowed
  422. // per [Product][google.cloud.retail.v2.Product].
  423. repeated Promotion promotions = 34;
  424. // The timestamp when the product is published by the retailer for the first
  425. // time, which indicates the freshness of the products. Note that this field
  426. // is different from
  427. // [available_time][google.cloud.retail.v2.Product.available_time], given it
  428. // purely describes product freshness regardless of when it is available on
  429. // search and recommendation.
  430. google.protobuf.Timestamp publish_time = 33;
  431. // Indicates which fields in the [Product][google.cloud.retail.v2.Product]s
  432. // are returned in [SearchResponse][google.cloud.retail.v2.SearchResponse].
  433. //
  434. // Supported fields for all [type][google.cloud.retail.v2.Product.type]s:
  435. //
  436. // * [audience][google.cloud.retail.v2.Product.audience]
  437. // * [availability][google.cloud.retail.v2.Product.availability]
  438. // * [brands][google.cloud.retail.v2.Product.brands]
  439. // * [color_info][google.cloud.retail.v2.Product.color_info]
  440. // * [conditions][google.cloud.retail.v2.Product.conditions]
  441. // * [gtin][google.cloud.retail.v2.Product.gtin]
  442. // * [materials][google.cloud.retail.v2.Product.materials]
  443. // * [name][google.cloud.retail.v2.Product.name]
  444. // * [patterns][google.cloud.retail.v2.Product.patterns]
  445. // * [price_info][google.cloud.retail.v2.Product.price_info]
  446. // * [rating][google.cloud.retail.v2.Product.rating]
  447. // * [sizes][google.cloud.retail.v2.Product.sizes]
  448. // * [title][google.cloud.retail.v2.Product.title]
  449. // * [uri][google.cloud.retail.v2.Product.uri]
  450. //
  451. // Supported fields only for
  452. // [Type.PRIMARY][google.cloud.retail.v2.Product.Type.PRIMARY] and
  453. // [Type.COLLECTION][google.cloud.retail.v2.Product.Type.COLLECTION]:
  454. //
  455. // * [categories][google.cloud.retail.v2.Product.categories]
  456. // * [description][google.cloud.retail.v2.Product.description]
  457. // * [images][google.cloud.retail.v2.Product.images]
  458. //
  459. // Supported fields only for
  460. // [Type.VARIANT][google.cloud.retail.v2.Product.Type.VARIANT]:
  461. //
  462. // * Only the first image in [images][google.cloud.retail.v2.Product.images]
  463. //
  464. // To mark [attributes][google.cloud.retail.v2.Product.attributes] as
  465. // retrievable, include paths of the form "attributes.key" where "key" is the
  466. // key of a custom attribute, as specified in
  467. // [attributes][google.cloud.retail.v2.Product.attributes].
  468. //
  469. // For [Type.PRIMARY][google.cloud.retail.v2.Product.Type.PRIMARY] and
  470. // [Type.COLLECTION][google.cloud.retail.v2.Product.Type.COLLECTION], the
  471. // following fields are always returned in
  472. // [SearchResponse][google.cloud.retail.v2.SearchResponse] by default:
  473. //
  474. // * [name][google.cloud.retail.v2.Product.name]
  475. //
  476. // For [Type.VARIANT][google.cloud.retail.v2.Product.Type.VARIANT], the
  477. // following fields are always returned in by default:
  478. //
  479. // * [name][google.cloud.retail.v2.Product.name]
  480. // * [color_info][google.cloud.retail.v2.Product.color_info]
  481. //
  482. // Maximum number of paths is 20. Otherwise, an INVALID_ARGUMENT error is
  483. // returned.
  484. google.protobuf.FieldMask retrievable_fields = 30;
  485. // Output only. Product variants grouped together on primary product which
  486. // share similar product attributes. It's automatically grouped by
  487. // [primary_product_id][google.cloud.retail.v2.Product.primary_product_id] for
  488. // all the product variants. Only populated for
  489. // [Type.PRIMARY][google.cloud.retail.v2.Product.Type.PRIMARY]
  490. // [Product][google.cloud.retail.v2.Product]s.
  491. //
  492. // Note: This field is OUTPUT_ONLY for
  493. // [ProductService.GetProduct][google.cloud.retail.v2.ProductService.GetProduct].
  494. // Do not set this field in API requests.
  495. repeated Product variants = 31 [(google.api.field_behavior) = OUTPUT_ONLY];
  496. }