Class: Google::Apis::DfareportingV3_0::CountriesListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::CountriesListResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_0/classes.rb,
 generated/google/apis/dfareporting_v3_0/representations.rb,
 generated/google/apis/dfareporting_v3_0/representations.rb
Overview
Country List Response
Instance Attribute Summary collapse
- 
  
    
      #countries  ⇒ Array<Google::Apis::DfareportingV3_0::Country> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Country collection. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CountriesListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CountriesListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CountriesListResponse
Returns a new instance of CountriesListResponse
| 2697 2698 2699 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2697 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#countries ⇒ Array<Google::Apis::DfareportingV3_0::Country>
Country collection.
Corresponds to the JSON property countries
| 2689 2690 2691 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2689 def countries @countries end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#countriesListResponse".
Corresponds to the JSON property kind
| 2695 2696 2697 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2695 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2702 2703 2704 2705 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2702 def update!(**args) @countries = args[:countries] if args.key?(:countries) @kind = args[:kind] if args.key?(:kind) end |