Class: Google::Apis::ContentV2_1::ProductsCustomBatchRequestEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::ProductsCustomBatchRequestEntry
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Overview
A batch entry encoding a single non-batch products request.
Instance Attribute Summary collapse
-
#batch_id ⇒ Fixnum
An entry ID, unique within the batch request.
-
#feed_id ⇒ Fixnum
The Content API feed id.
-
#merchant_id ⇒ Fixnum
The ID of the managing account.
-
#method_prop ⇒ String
The method of the batch entry.
-
#product ⇒ Google::Apis::ContentV2_1::Product
Required product attributes are primarily defined by the products data specification.
-
#product_id ⇒ String
The ID of the product to get or delete.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProductsCustomBatchRequestEntry
constructor
A new instance of ProductsCustomBatchRequestEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProductsCustomBatchRequestEntry
Returns a new instance of ProductsCustomBatchRequestEntry.
9143 9144 9145 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9143 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch_id ⇒ Fixnum
An entry ID, unique within the batch request.
Corresponds to the JSON property batchId
9105 9106 9107 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9105 def batch_id @batch_id end |
#feed_id ⇒ Fixnum
The Content API feed id.
Corresponds to the JSON property feedId
9110 9111 9112 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9110 def feed_id @feed_id end |
#merchant_id ⇒ Fixnum
The ID of the managing account.
Corresponds to the JSON property merchantId
9115 9116 9117 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9115 def merchant_id @merchant_id end |
#method_prop ⇒ String
The method of the batch entry. Acceptable values are:
- "
delete
" - "
get
" - "
insert
" Corresponds to the JSON propertymethod
9124 9125 9126 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9124 def method_prop @method_prop end |
#product ⇒ Google::Apis::ContentV2_1::Product
Required product attributes are primarily defined by the products data
specification. See the Products Data Specification Help Center article for
information.
Some attributes are country-specific, so make sure you select the appropriate
country in the drop-down selector at the top of the page.
Product data. After inserting, updating, or deleting a product, it may take
several minutes before changes take effect.
Corresponds to the JSON property product
9135 9136 9137 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9135 def product @product end |
#product_id ⇒ String
The ID of the product to get or delete. Only defined if the method is get
or
delete
.
Corresponds to the JSON property productId
9141 9142 9143 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9141 def product_id @product_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9148 9149 9150 9151 9152 9153 9154 9155 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9148 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @feed_id = args[:feed_id] if args.key?(:feed_id) @merchant_id = args[:merchant_id] if args.key?(:merchant_id) @method_prop = args[:method_prop] if args.key?(:method_prop) @product = args[:product] if args.key?(:product) @product_id = args[:product_id] if args.key?(:product_id) end |