Class: Google::Apis::ContentV2::PosInventory
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::PosInventory
 
 
- Defined in:
 - generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb 
Overview
The absolute quantity of an item available at the given store.
Instance Attribute Summary collapse
- 
  
    
      #content_language  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The two-letter ISO 639-1 language code for the item.
 - 
  
    
      #gtin  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Global Trade Item Number.
 - 
  
    
      #item_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier for the item.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #price  ⇒ Google::Apis::ContentV2::Price 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current price of the item.
 - 
  
    
      #quantity  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The available quantity of the item.
 - 
  
    
      #store_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the merchant's store.
 - 
  
    
      #target_country  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The CLDR territory code for the item.
 - 
  
    
      #timestamp  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The inventory timestamp, in ISO 8601 format.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PosInventory 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PosInventory.
 - 
  
    
      #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) ⇒ PosInventory
Returns a new instance of PosInventory
      7577 7578 7579  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7577 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#content_language ⇒ String
The two-letter ISO 639-1 language code for the item.
Corresponds to the JSON property contentLanguage
      7533 7534 7535  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7533 def content_language @content_language end  | 
  
#gtin ⇒ String
Global Trade Item Number.
Corresponds to the JSON property gtin
      7538 7539 7540  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7538 def gtin @gtin end  | 
  
#item_id ⇒ String
A unique identifier for the item.
Corresponds to the JSON property itemId
      7543 7544 7545  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7543 def item_id @item_id end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
posInventory".
Corresponds to the JSON property kind
      7549 7550 7551  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7549 def kind @kind end  | 
  
#price ⇒ Google::Apis::ContentV2::Price
The current price of the item.
Corresponds to the JSON property price
      7554 7555 7556  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7554 def price @price end  | 
  
#quantity ⇒ Fixnum
The available quantity of the item.
Corresponds to the JSON property quantity
      7559 7560 7561  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7559 def quantity @quantity end  | 
  
#store_code ⇒ String
The identifier of the merchant's store. Either a storeCode inserted via the
API or the code of the store in Google My Business.
Corresponds to the JSON property storeCode
      7565 7566 7567  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7565 def store_code @store_code end  | 
  
#target_country ⇒ String
The CLDR territory code for the item.
Corresponds to the JSON property targetCountry
      7570 7571 7572  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7570 def target_country @target_country end  | 
  
#timestamp ⇒ String
The inventory timestamp, in ISO 8601 format.
Corresponds to the JSON property timestamp
      7575 7576 7577  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7575 def @timestamp end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7582 def update!(**args) @content_language = args[:content_language] if args.key?(:content_language) @gtin = args[:gtin] if args.key?(:gtin) @item_id = args[:item_id] if args.key?(:item_id) @kind = args[:kind] if args.key?(:kind) @price = args[:price] if args.key?(:price) @quantity = args[:quantity] if args.key?(:quantity) @store_code = args[:store_code] if args.key?(:store_code) @target_country = args[:target_country] if args.key?(:target_country) @timestamp = args[:timestamp] if args.key?(:timestamp) end  |