Class: Google::Apis::DfareportingV2_8::MetrosListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV2_8::MetrosListResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/representations.rb 
Overview
Metro List Response
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #metros  ⇒ Array<Google::Apis::DfareportingV2_8::Metro> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metro collection.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MetrosListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MetrosListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MetrosListResponse
Returns a new instance of MetrosListResponse
      7242 7243 7244  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7242 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#metrosListResponse".
Corresponds to the JSON property kind
      7235 7236 7237  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7235 def kind @kind end  | 
  
#metros ⇒ Array<Google::Apis::DfareportingV2_8::Metro>
Metro collection.
Corresponds to the JSON property metros
      7240 7241 7242  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7240 def metros @metros end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7247 7248 7249 7250  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7247 def update!(**args) @kind = args[:kind] if args.key?(:kind) @metros = args[:metros] if args.key?(:metros) end  |