Class: Google::Apis::ContentV2::PosDataProviders
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::PosDataProviders
 
 
- Defined in:
 - generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #country  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Country code.
 - 
  
    
      #pos_data_providers  ⇒ Array<Google::Apis::ContentV2::PosDataProvidersPosDataProvider> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of POS data providers.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PosDataProviders 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PosDataProviders.
 - 
  
    
      #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) ⇒ PosDataProviders
Returns a new instance of PosDataProviders
      7484 7485 7486  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7484 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#country ⇒ String
Country code.
Corresponds to the JSON property country
      7477 7478 7479  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7477 def country @country end  | 
  
#pos_data_providers ⇒ Array<Google::Apis::ContentV2::PosDataProvidersPosDataProvider>
A list of POS data providers.
Corresponds to the JSON property posDataProviders
      7482 7483 7484  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7482 def pos_data_providers @pos_data_providers end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7489 7490 7491 7492  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 7489 def update!(**args) @country = args[:country] if args.key?(:country) @pos_data_providers = args[:pos_data_providers] if args.key?(:pos_data_providers) end  |