Class: Google::Apis::VisionV1::Product
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::Product
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1/classes.rb,
generated/google/apis/vision_v1/representations.rb,
generated/google/apis/vision_v1/representations.rb
Overview
A Product contains ReferenceImages.
Instance Attribute Summary collapse
-
#description ⇒ String
User-provided metadata to be stored with this product.
-
#display_name ⇒ String
The user-provided name for this Product.
-
#name ⇒ String
The resource name of the product.
-
#product_category ⇒ String
Immutable.
-
#product_labels ⇒ Array<Google::Apis::VisionV1::KeyValue>
Key-value pairs that can be attached to a product.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Product
constructor
A new instance of Product.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Product
Returns a new instance of Product
9917 9918 9919 |
# File 'generated/google/apis/vision_v1/classes.rb', line 9917 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
User-provided metadata to be stored with this product. Must be at most 4096
characters long.
Corresponds to the JSON property description
9878 9879 9880 |
# File 'generated/google/apis/vision_v1/classes.rb', line 9878 def description @description end |
#display_name ⇒ String
The user-provided name for this Product. Must not be empty. Must be at most
4096 characters long.
Corresponds to the JSON property displayName
9884 9885 9886 |
# File 'generated/google/apis/vision_v1/classes.rb', line 9884 def display_name @display_name end |
#name ⇒ String
The resource name of the product.
Format is:
projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID
.
This field is ignored when creating a product.
Corresponds to the JSON property name
9892 9893 9894 |
# File 'generated/google/apis/vision_v1/classes.rb', line 9892 def name @name end |
#product_category ⇒ String
Immutable. The category for the product identified by the reference image.
This should
be either "homegoods-v2", "apparel-v2", or "toys-v2". The legacy categories
"homegoods", "apparel", and "toys" are still supported, but these should
not be used for new products.
Corresponds to the JSON property productCategory
9901 9902 9903 |
# File 'generated/google/apis/vision_v1/classes.rb', line 9901 def product_category @product_category end |
#product_labels ⇒ Array<Google::Apis::VisionV1::KeyValue>
Key-value pairs that can be attached to a product. At query time,
constraints can be specified based on the product_labels.
Note that integer values can be provided as strings, e.g. "1199". Only
strings with integer values can match a range-based restriction which is
to be supported soon.
Multiple values can be assigned to the same key. One product may have up to
500 product_labels.
Notice that the total number of distinct product_labels over all products
in one ProductSet cannot exceed 1M, otherwise the product search pipeline
will refuse to work for that ProductSet.
Corresponds to the JSON property productLabels
9915 9916 9917 |
# File 'generated/google/apis/vision_v1/classes.rb', line 9915 def product_labels @product_labels end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9922 9923 9924 9925 9926 9927 9928 |
# File 'generated/google/apis/vision_v1/classes.rb', line 9922 def update!(**args) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @product_category = args[:product_category] if args.key?(:product_category) @product_labels = args[:product_labels] if args.key?(:product_labels) end |