class Google::Apis::ContentV2_1::ProductsCustomBatchRequestEntry
A batch entry encoding a single non-batch products request.
Attributes
An entry ID, unique within the batch request. Corresponds to the JSON property `batchId` @return [Fixnum]
The Content API Supplemental Feed ID. If present then product insertion or deletion applies to a supplemental feed instead of primary Content API feed. Corresponds to the JSON property `feedId` @return [Fixnum]
The ID of the managing account. Corresponds to the JSON property `merchantId` @return [Fixnum]
The method of the batch entry. Acceptable values are: - “`delete`” - “`get`” - “`insert`” - “`update`” Corresponds to the JSON property `method` @return [String]
Required product attributes are primarily defined by the products data specification. See the Products Data Specification Help Center article for information. Product
data. After inserting, updating, or deleting a product, it may take several minutes before changes take effect. Corresponds to the JSON property `product` @return [Google::Apis::ContentV2_1::Product]
The ID of the product to get or mutate. Only defined if the method is `get`, ` delete`, or `update`. Corresponds to the JSON property `productId` @return [String]
The comma-separated list of product attributes to be updated. Example: `“title, salePrice”`. Attributes specified in the update mask without a value specified in the body will be deleted from the product. Only top-level product attributes can be updated. If not defined, product attributes with set values will be updated and other attributes will stay unchanged. Only defined if the method is `update`. Corresponds to the JSON property `updateMask` @return [String]
Public Class Methods
# File lib/google/apis/content_v2_1/classes.rb, line 11229 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 11234 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) @update_mask = args[:update_mask] if args.key?(:update_mask) end