Class: Google::Apis::ContentV2_1::ProductsCustomBatchRequestEntry

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb

Overview

A batch entry encoding a single non-batch products request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ProductsCustomBatchRequestEntry

Returns a new instance of ProductsCustomBatchRequestEntry.



11024
11025
11026
# File 'lib/google/apis/content_v2_1/classes.rb', line 11024

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

Instance Attribute Details

#batch_idFixnum

An entry ID, unique within the batch request. Corresponds to the JSON property batchId

Returns:

  • (Fixnum)


10982
10983
10984
# File 'lib/google/apis/content_v2_1/classes.rb', line 10982

def batch_id
  @batch_id
end

#feed_idFixnum

The Content API feed id. Corresponds to the JSON property feedId

Returns:

  • (Fixnum)


10987
10988
10989
# File 'lib/google/apis/content_v2_1/classes.rb', line 10987

def feed_id
  @feed_id
end

#merchant_idFixnum

The ID of the managing account. Corresponds to the JSON property merchantId

Returns:

  • (Fixnum)


10992
10993
10994
# File 'lib/google/apis/content_v2_1/classes.rb', line 10992

def merchant_id
  @merchant_id
end

#method_propString

The method of the batch entry. Acceptable values are: - "delete" - "get" - "insert" - "update" Corresponds to the JSON property method

Returns:

  • (String)


10998
10999
11000
# File 'lib/google/apis/content_v2_1/classes.rb', line 10998

def method_prop
  @method_prop
end

#productGoogle::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. Product data. After inserting, updating, or deleting a product, it may take several minutes before changes take effect. Corresponds to the JSON property product



11006
11007
11008
# File 'lib/google/apis/content_v2_1/classes.rb', line 11006

def product
  @product
end

#product_idString

The ID of the product to get or delete. Only defined if the method is get or delete. Corresponds to the JSON property productId

Returns:

  • (String)


11012
11013
11014
# File 'lib/google/apis/content_v2_1/classes.rb', line 11012

def product_id
  @product_id
end

#update_maskString

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

Returns:

  • (String)


11022
11023
11024
# File 'lib/google/apis/content_v2_1/classes.rb', line 11022

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11029
11030
11031
11032
11033
11034
11035
11036
11037
# File 'lib/google/apis/content_v2_1/classes.rb', line 11029

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