Class: Google::Apis::DfareportingV2_6::City

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

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ City

Returns a new instance of City



1895
1896
1897
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1895

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)


1852
1853
1854
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1852

def country_code
  @country_code
end

#country_dart_idFixnum

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

Returns:

  • (Fixnum)


1857
1858
1859
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1857

def country_dart_id
  @country_dart_id
end

#dart_idFixnum

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

Returns:

  • (Fixnum)


1862
1863
1864
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1862

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)


1868
1869
1870
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1868

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)


1873
1874
1875
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1873

def metro_code
  @metro_code
end

#metro_dma_idFixnum

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

Returns:

  • (Fixnum)


1878
1879
1880
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1878

def metro_dma_id
  @metro_dma_id
end

#nameString

Name of this city. Corresponds to the JSON property name

Returns:

  • (String)


1883
1884
1885
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1883

def name
  @name
end

#region_codeString

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

Returns:

  • (String)


1888
1889
1890
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1888

def region_code
  @region_code
end

#region_dart_idFixnum

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

Returns:

  • (Fixnum)


1893
1894
1895
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1893

def region_dart_id
  @region_dart_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 1900

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