Class: Google::Apis::DfareportingV2_1::City

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 city 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) ⇒ City

Returns a new instance of City.



1867
1868
1869
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1867

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

Instance Attribute Details

#country_codeString

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

Returns:

  • (String)


1824
1825
1826
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1824

def country_code
  @country_code
end

#country_dart_idString

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

Returns:

  • (String)


1829
1830
1831
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1829

def country_dart_id
  @country_dart_id
end

#dart_idString

DART ID of this city. This is the ID used for targeting and generating reports. Corresponds to the JSON property dartId

Returns:

  • (String)


1834
1835
1836
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1834

def dart_id
  @dart_id
end

#kindString

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

Returns:

  • (String)


1840
1841
1842
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1840

def kind
  @kind
end

#metro_codeString

Metro region code of the metro region (DMA) to which this city belongs. Corresponds to the JSON property metroCode

Returns:

  • (String)


1845
1846
1847
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1845

def metro_code
  @metro_code
end

#metro_dma_idString

ID of the metro region (DMA) to which this city belongs. Corresponds to the JSON property metroDmaId

Returns:

  • (String)


1850
1851
1852
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1850

def metro_dma_id
  @metro_dma_id
end

#nameString

Name of this city. Corresponds to the JSON property name

Returns:

  • (String)


1855
1856
1857
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1855

def name
  @name
end

#region_codeString

Region code of the region to which this city belongs. Corresponds to the JSON property regionCode

Returns:

  • (String)


1860
1861
1862
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1860

def region_code
  @region_code
end

#region_dart_idString

DART ID of the region to which this city belongs. Corresponds to the JSON property regionDartId

Returns:

  • (String)


1865
1866
1867
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1865

def region_dart_id
  @region_dart_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 1872

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?
  @kind = args[:kind] unless args[:kind].nil?
  @metro_code = args[:metro_code] unless args[:metro_code].nil?
  @metro_dma_id = args[:metro_dma_id] unless args[:metro_dma_id].nil?
  @name = args[:name] unless args[:name].nil?
  @region_code = args[:region_code] unless args[:region_code].nil?
  @region_dart_id = args[:region_dart_id] unless args[:region_dart_id].nil?
end