Class: Google::Apis::VisionV1::AddProductToProductSetRequest
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::AddProductToProductSetRequest
- 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
Request message for the AddProductToProductSet
method.
Instance Attribute Summary collapse
-
#product ⇒ String
The resource name for the Product to be added to this ProductSet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AddProductToProductSetRequest
constructor
A new instance of AddProductToProductSetRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AddProductToProductSetRequest
Returns a new instance of AddProductToProductSetRequest
36 37 38 |
# File 'generated/google/apis/vision_v1/classes.rb', line 36 def initialize(**args) update!(**args) end |
Instance Attribute Details
#product ⇒ String
The resource name for the Product to be added to this ProductSet.
Format is:
projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID
Corresponds to the JSON property product
34 35 36 |
# File 'generated/google/apis/vision_v1/classes.rb', line 34 def product @product end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
41 42 43 |
# File 'generated/google/apis/vision_v1/classes.rb', line 41 def update!(**args) @product = args[:product] if args.key?(:product) end |