Class: Google::Apis::DfareportingV2_8::Metro
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::Metro
 
- 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
Contains information about a metro region that can be targeted by ads.
Instance Attribute Summary collapse
- 
  
    
      #country_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Country code of the country to which this metro region belongs. 
- 
  
    
      #country_dart_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    DART ID of the country to which this metro region belongs. 
- 
  
    
      #dart_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    DART ID of this metro region. 
- 
  
    
      #dma_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    DMA ID of this metro region. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #metro_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Metro code of this metro region. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of this metro region. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Metro 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Metro. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Metro
Returns a new instance of Metro
| 7209 7210 7211 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7209 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#country_code ⇒ String
Country code of the country to which this metro region belongs.
Corresponds to the JSON property countryCode
| 7175 7176 7177 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7175 def country_code @country_code end | 
#country_dart_id ⇒ Fixnum
DART ID of the country to which this metro region belongs.
Corresponds to the JSON property countryDartId
| 7180 7181 7182 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7180 def country_dart_id @country_dart_id end | 
#dart_id ⇒ Fixnum
DART ID of this metro region.
Corresponds to the JSON property dartId
| 7185 7186 7187 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7185 def dart_id @dart_id end | 
#dma_id ⇒ Fixnum
DMA ID of this metro region. This is the ID used for targeting and generating
reports, and is equivalent to metro_code.
Corresponds to the JSON property dmaId
| 7191 7192 7193 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7191 def dma_id @dma_id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#metro".
Corresponds to the JSON property kind
| 7197 7198 7199 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7197 def kind @kind end | 
#metro_code ⇒ String
Metro code of this metro region. This is equivalent to dma_id.
Corresponds to the JSON property metroCode
| 7202 7203 7204 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7202 def metro_code @metro_code end | 
#name ⇒ String
Name of this metro region.
Corresponds to the JSON property name
| 7207 7208 7209 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7207 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 7214 7215 7216 7217 7218 7219 7220 7221 7222 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 7214 def update!(**args) @country_code = args[:country_code] if args.key?(:country_code) @country_dart_id = args[:country_dart_id] if args.key?(:country_dart_id) @dart_id = args[:dart_id] if args.key?(:dart_id) @dma_id = args[:dma_id] if args.key?(:dma_id) @kind = args[:kind] if args.key?(:kind) @metro_code = args[:metro_code] if args.key?(:metro_code) @name = args[:name] if args.key?(:name) end |