Class: Google::Apis::RetailV2::GoogleCloudRetailV2RemoveLocalInventoriesRequest
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2::GoogleCloudRetailV2RemoveLocalInventoriesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2/classes.rb,
lib/google/apis/retail_v2/representations.rb,
lib/google/apis/retail_v2/representations.rb
Overview
Request message for ProductService.RemoveLocalInventories method.
Instance Attribute Summary collapse
-
#allow_missing ⇒ Boolean
(also: #allow_missing?)
If set to true, and the Product is not found, the local inventory removal request will still be processed and retained for at most 1 day and processed once the Product is created.
-
#place_ids ⇒ Array<String>
Required.
-
#remove_time ⇒ String
The time when the inventory deletions are issued.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2RemoveLocalInventoriesRequest
constructor
A new instance of GoogleCloudRetailV2RemoveLocalInventoriesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2RemoveLocalInventoriesRequest
Returns a new instance of GoogleCloudRetailV2RemoveLocalInventoriesRequest.
4249 4250 4251 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4249 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allow_missing ⇒ Boolean Also known as: allow_missing?
If set to true, and the Product is not found, the local inventory removal
request will still be processed and retained for at most 1 day and processed
once the Product is created. If set to false, a NOT_FOUND error is returned if
the Product is not found.
Corresponds to the JSON property allowMissing
4233 4234 4235 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4233 def allow_missing @allow_missing end |
#place_ids ⇒ Array<String>
Required. A list of place IDs to have their inventory deleted. At most 3000
place IDs are allowed per request.
Corresponds to the JSON property placeIds
4240 4241 4242 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4240 def place_ids @place_ids end |
#remove_time ⇒ String
The time when the inventory deletions are issued. Used to prevent out-of-order
updates and deletions on local inventory fields. If not provided, the internal
system time will be used.
Corresponds to the JSON property removeTime
4247 4248 4249 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4247 def remove_time @remove_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4254 4255 4256 4257 4258 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4254 def update!(**args) @allow_missing = args[:allow_missing] if args.key?(:allow_missing) @place_ids = args[:place_ids] if args.key?(:place_ids) @remove_time = args[:remove_time] if args.key?(:remove_time) end |