Class: Google::Apis::VisionV1::RemoveProductFromProductSetRequest
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::RemoveProductFromProductSetRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vision_v1/classes.rb,
lib/google/apis/vision_v1/representations.rb,
lib/google/apis/vision_v1/representations.rb
Overview
Request message for the RemoveProductFromProductSet
method.
Instance Attribute Summary collapse
-
#product ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RemoveProductFromProductSetRequest
constructor
A new instance of RemoveProductFromProductSetRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RemoveProductFromProductSetRequest
Returns a new instance of RemoveProductFromProductSetRequest.
9786 9787 9788 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9786 def initialize(**args) update!(**args) end |
Instance Attribute Details
#product ⇒ String
Required. 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
9784 9785 9786 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9784 def product @product end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9791 9792 9793 |
# File 'lib/google/apis/vision_v1/classes.rb', line 9791 def update!(**args) @product = args[:product] if args.key?(:product) end |