Class: Google::Apis::DfareportingV3_5::City

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v3_5/classes.rb,
lib/google/apis/dfareporting_v3_5/representations.rb,
lib/google/apis/dfareporting_v3_5/representations.rb

Overview

Contains information about a city that can be targeted by ads.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ City

Returns a new instance of City.



1960
1961
1962
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1960

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)


1917
1918
1919
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1917

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)


1922
1923
1924
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1922

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)


1927
1928
1929
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1927

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)


1933
1934
1935
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1933

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)


1938
1939
1940
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1938

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)


1943
1944
1945
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1943

def metro_dma_id
  @metro_dma_id
end

#nameString

Name of this city. Corresponds to the JSON property name

Returns:

  • (String)


1948
1949
1950
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1948

def name
  @name
end

#region_codeString

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

Returns:

  • (String)


1953
1954
1955
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1953

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)


1958
1959
1960
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1958

def region_dart_id
  @region_dart_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1965

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