Class: Google::Apis::ContentV2::PosCustomBatchRequestEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::PosCustomBatchRequestEntry
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#batch_id ⇒ Fixnum
An entry ID, unique within the batch request.
-
#inventory ⇒ Google::Apis::ContentV2::PosInventory
The absolute quantity of an item available at the given store.
-
#merchant_id ⇒ Fixnum
The ID of the POS data provider.
-
#method_prop ⇒ String
The method of the batch entry.
-
#sale ⇒ Google::Apis::ContentV2::PosSale
The change of the available quantity of an item at the given store.
-
#store ⇒ Google::Apis::ContentV2::PosStore
Store resource.
-
#store_code ⇒ String
The store code.
-
#target_merchant_id ⇒ Fixnum
The ID of the account for which to get/submit data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PosCustomBatchRequestEntry
constructor
A new instance of PosCustomBatchRequestEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PosCustomBatchRequestEntry
Returns a new instance of PosCustomBatchRequestEntry.
8086 8087 8088 |
# File 'lib/google/apis/content_v2/classes.rb', line 8086 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
8048 8049 8050 |
# File 'lib/google/apis/content_v2/classes.rb', line 8048 def batch_id @batch_id end |
#inventory ⇒ Google::Apis::ContentV2::PosInventory
The absolute quantity of an item available at the given store.
Corresponds to the JSON property inventory
8053 8054 8055 |
# File 'lib/google/apis/content_v2/classes.rb', line 8053 def inventory @inventory end |
#merchant_id ⇒ Fixnum
The ID of the POS data provider.
Corresponds to the JSON property merchantId
8058 8059 8060 |
# File 'lib/google/apis/content_v2/classes.rb', line 8058 def merchant_id @merchant_id end |
#method_prop ⇒ String
The method of the batch entry. Acceptable values are: - "delete" - "get" -
"insert" - "inventory" - "sale"
Corresponds to the JSON property method
8064 8065 8066 |
# File 'lib/google/apis/content_v2/classes.rb', line 8064 def method_prop @method_prop end |
#sale ⇒ Google::Apis::ContentV2::PosSale
The change of the available quantity of an item at the given store.
Corresponds to the JSON property sale
8069 8070 8071 |
# File 'lib/google/apis/content_v2/classes.rb', line 8069 def sale @sale end |
#store ⇒ Google::Apis::ContentV2::PosStore
Store resource.
Corresponds to the JSON property store
8074 8075 8076 |
# File 'lib/google/apis/content_v2/classes.rb', line 8074 def store @store end |
#store_code ⇒ String
The store code. This should be set only if the method is delete or get.
Corresponds to the JSON property storeCode
8079 8080 8081 |
# File 'lib/google/apis/content_v2/classes.rb', line 8079 def store_code @store_code end |
#target_merchant_id ⇒ Fixnum
The ID of the account for which to get/submit data.
Corresponds to the JSON property targetMerchantId
8084 8085 8086 |
# File 'lib/google/apis/content_v2/classes.rb', line 8084 def target_merchant_id @target_merchant_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 |
# File 'lib/google/apis/content_v2/classes.rb', line 8091 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) @method_prop = args[:method_prop] if args.key?(:method_prop) @sale = args[:sale] if args.key?(:sale) @store = args[:store] if args.key?(:store) @store_code = args[:store_code] if args.key?(:store_code) @target_merchant_id = args[:target_merchant_id] if args.key?(:target_merchant_id) end |