Class: Google::Apis::VisionV1::RemoveProductFromProductSetRequest
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::RemoveProductFromProductSetRequest
- 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 RemoveProductFromProductSet
method.
Instance Attribute Summary collapse
-
#product ⇒ String
The resource name for the Product to be removed from this ProductSet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RemoveProductFromProductSetRequest
constructor
A new instance of RemoveProductFromProductSetRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RemoveProductFromProductSetRequest
Returns a new instance of RemoveProductFromProductSetRequest
11874 11875 11876 |
# File 'generated/google/apis/vision_v1/classes.rb', line 11874 def initialize(**args) update!(**args) end |
Instance Attribute Details
#product ⇒ String
The resource name for the Product to be removed from this ProductSet.
Format is:
projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID
Corresponds to the JSON property product
11872 11873 11874 |
# File 'generated/google/apis/vision_v1/classes.rb', line 11872 def product @product end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11879 11880 11881 |
# File 'generated/google/apis/vision_v1/classes.rb', line 11879 def update!(**args) @product = args[:product] if args.key?(:product) end |