Class: Google::Apis::ContentV2::PosStore
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::PosStore
 
- Defined in:
- generated/google/apis/content_v2/classes.rb,
 generated/google/apis/content_v2/representations.rb,
 generated/google/apis/content_v2/representations.rb
Overview
Store resource.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #store_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The street address of the store. 
- 
  
    
      #store_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A store identifier that is unique for the given merchant. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PosStore 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of PosStore. 
- 
  
    
      #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) ⇒ PosStore
Returns a new instance of PosStore
| 6680 6681 6682 | # File 'generated/google/apis/content_v2/classes.rb', line 6680 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
posStore".
Corresponds to the JSON property kind
| 6668 6669 6670 | # File 'generated/google/apis/content_v2/classes.rb', line 6668 def kind @kind end | 
#store_address ⇒ String
The street address of the store.
Corresponds to the JSON property storeAddress
| 6673 6674 6675 | # File 'generated/google/apis/content_v2/classes.rb', line 6673 def store_address @store_address end | 
#store_code ⇒ String
A store identifier that is unique for the given merchant.
Corresponds to the JSON property storeCode
| 6678 6679 6680 | # File 'generated/google/apis/content_v2/classes.rb', line 6678 def store_code @store_code end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 6685 6686 6687 6688 6689 | # File 'generated/google/apis/content_v2/classes.rb', line 6685 def update!(**args) @kind = args[:kind] if args.key?(:kind) @store_address = args[:store_address] if args.key?(:store_address) @store_code = args[:store_code] if args.key?(:store_code) end |