Class: Google::Apis::DfareportingV3_1::Metro

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_1/classes.rb,
generated/google/apis/dfareporting_v3_1/representations.rb,
generated/google/apis/dfareporting_v3_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::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Metro

Returns a new instance of Metro



7343
7344
7345
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7343

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)


7309
7310
7311
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7309

def country_code
  @country_code
end

#country_dart_idFixnum

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

Returns:

  • (Fixnum)


7314
7315
7316
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7314

def country_dart_id
  @country_dart_id
end

#dart_idFixnum

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

Returns:

  • (Fixnum)


7319
7320
7321
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7319

def dart_id
  @dart_id
end

#dma_idFixnum

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:

  • (Fixnum)


7325
7326
7327
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7325

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)


7331
7332
7333
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7331

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)


7336
7337
7338
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7336

def metro_code
  @metro_code
end

#nameString

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

Returns:

  • (String)


7341
7342
7343
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7341

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7348
7349
7350
7351
7352
7353
7354
7355
7356
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7348

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