Class: Google::Apis::DfareportingV2_5::City
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_5::City
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_5/classes.rb,
generated/google/apis/dfareporting_v2_5/representations.rb,
generated/google/apis/dfareporting_v2_5/representations.rb
Overview
Contains information about a city that can be targeted by ads.
Instance Attribute Summary collapse
-
#country_code ⇒ String
Country code of the country to which this city belongs.
-
#country_dart_id ⇒ String
DART ID of the country to which this city belongs.
-
#dart_id ⇒ String
DART ID of this city.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#metro_code ⇒ String
Metro region code of the metro region (DMA) to which this city belongs.
-
#metro_dma_id ⇒ String
ID of the metro region (DMA) to which this city belongs.
-
#name ⇒ String
Name of this city.
-
#region_code ⇒ String
Region code of the region to which this city belongs.
-
#region_dart_id ⇒ String
DART ID of the region to which this city belongs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ City
constructor
A new instance of City.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ City
Returns a new instance of City
1886 1887 1888 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1886 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country_code ⇒ String
Country code of the country to which this city belongs.
Corresponds to the JSON property countryCode
1843 1844 1845 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1843 def country_code @country_code end |
#country_dart_id ⇒ String
DART ID of the country to which this city belongs.
Corresponds to the JSON property countryDartId
1848 1849 1850 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1848 def country_dart_id @country_dart_id end |
#dart_id ⇒ String
DART ID of this city. This is the ID used for targeting and generating reports.
Corresponds to the JSON property dartId
1853 1854 1855 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1853 def dart_id @dart_id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#city".
Corresponds to the JSON property kind
1859 1860 1861 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1859 def kind @kind end |
#metro_code ⇒ String
Metro region code of the metro region (DMA) to which this city belongs.
Corresponds to the JSON property metroCode
1864 1865 1866 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1864 def metro_code @metro_code end |
#metro_dma_id ⇒ String
ID of the metro region (DMA) to which this city belongs.
Corresponds to the JSON property metroDmaId
1869 1870 1871 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1869 def metro_dma_id @metro_dma_id end |
#name ⇒ String
Name of this city.
Corresponds to the JSON property name
1874 1875 1876 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1874 def name @name end |
#region_code ⇒ String
Region code of the region to which this city belongs.
Corresponds to the JSON property regionCode
1879 1880 1881 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1879 def region_code @region_code end |
#region_dart_id ⇒ String
DART ID of the region to which this city belongs.
Corresponds to the JSON property regionDartId
1884 1885 1886 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1884 def region_dart_id @region_dart_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1891 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) @kind = args[:kind] if args.key?(:kind) @metro_code = args[:metro_code] if args.key?(:metro_code) @metro_dma_id = args[:metro_dma_id] if args.key?(:metro_dma_id) @name = args[:name] if args.key?(:name) @region_code = args[:region_code] if args.key?(:region_code) @region_dart_id = args[:region_dart_id] if args.key?(:region_dart_id) end |