Class: Google::Apis::DfareportingV2_1::Metro

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable
Defined in:
generated/google/apis/dfareporting_v2_1/classes.rb,
generated/google/apis/dfareporting_v2_1/representations.rb,
generated/google/apis/dfareporting_v2_1/representations.rb

Overview

Contains information about a metro region that can be targeted by ads.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Metro

Returns a new instance of Metro.



6389
6390
6391
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6389

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#country_codeString

Country code of the country to which this metro region belongs. Corresponds to the JSON property countryCode

Returns:

  • (String)


6355
6356
6357
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6355

def country_code
  @country_code
end

#country_dart_idString

DART ID of the country to which this metro region belongs. Corresponds to the JSON property countryDartId

Returns:

  • (String)


6360
6361
6362
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6360

def country_dart_id
  @country_dart_id
end

#dart_idString

DART ID of this metro region. Corresponds to the JSON property dartId

Returns:

  • (String)


6365
6366
6367
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6365

def dart_id
  @dart_id
end

#dma_idString

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

Returns:

  • (String)


6371
6372
6373
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6371

def dma_id
  @dma_id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#metro". Corresponds to the JSON property kind

Returns:

  • (String)


6377
6378
6379
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6377

def kind
  @kind
end

#metro_codeString

Metro code of this metro region. This is equivalent to dma_id. Corresponds to the JSON property metroCode

Returns:

  • (String)


6382
6383
6384
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6382

def metro_code
  @metro_code
end

#nameString

Name of this metro region. Corresponds to the JSON property name

Returns:

  • (String)


6387
6388
6389
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6387

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6394
6395
6396
6397
6398
6399
6400
6401
6402
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6394

def update!(**args)
  @country_code = args[:country_code] unless args[:country_code].nil?
  @country_dart_id = args[:country_dart_id] unless args[:country_dart_id].nil?
  @dart_id = args[:dart_id] unless args[:dart_id].nil?
  @dma_id = args[:dma_id] unless args[:dma_id].nil?
  @kind = args[:kind] unless args[:kind].nil?
  @metro_code = args[:metro_code] unless args[:metro_code].nil?
  @name = args[:name] unless args[:name].nil?
end