Class: Google::Apis::VisionV1::RemoveProductFromProductSetRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RemoveProductFromProductSetRequest

Returns a new instance of RemoveProductFromProductSetRequest.



10278
10279
10280
# File 'generated/google/apis/vision_v1/classes.rb', line 10278

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#productString

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

Returns:

  • (String)


10276
10277
10278
# File 'generated/google/apis/vision_v1/classes.rb', line 10276

def product
  @product
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10283
10284
10285
# File 'generated/google/apis/vision_v1/classes.rb', line 10283

def update!(**args)
  @product = args[:product] if args.key?(:product)
end