Class: Google::Apis::ContentV2::InventoryBatchRequestEntry

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ InventoryBatchRequestEntry

Returns a new instance of InventoryBatchRequestEntry



2536
2537
2538
# File 'generated/google/apis/content_v2/classes.rb', line 2536

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)


2513
2514
2515
# File 'generated/google/apis/content_v2/classes.rb', line 2513

def batch_id
  @batch_id
end

#inventoryGoogle::Apis::ContentV2::Inventory

Price and availability of the product. Corresponds to the JSON property inventory



2518
2519
2520
# File 'generated/google/apis/content_v2/classes.rb', line 2518

def inventory
  @inventory
end

#merchant_idString

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

Returns:

  • (String)


2523
2524
2525
# File 'generated/google/apis/content_v2/classes.rb', line 2523

def merchant_id
  @merchant_id
end

#product_idString

The ID of the product for which to update price and availability. Corresponds to the JSON property productId

Returns:

  • (String)


2528
2529
2530
# File 'generated/google/apis/content_v2/classes.rb', line 2528

def product_id
  @product_id
end

#store_codeString

The code of the store for which to update price and availability. Use online to update price and availability of an online product. Corresponds to the JSON property storeCode

Returns:

  • (String)


2534
2535
2536
# File 'generated/google/apis/content_v2/classes.rb', line 2534

def store_code
  @store_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2541
2542
2543
2544
2545
2546
2547
# File 'generated/google/apis/content_v2/classes.rb', line 2541

def update!(**args)
  @batch_id = args[:batch_id] if args.key?(:batch_id)
  @inventory = args[:inventory] if args.key?(:inventory)
  @merchant_id = args[:merchant_id] if args.key?(:merchant_id)
  @product_id = args[:product_id] if args.key?(:product_id)
  @store_code = args[:store_code] if args.key?(:store_code)
end