Class: Google::Apis::DfareportingV2_7::Region
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_7::Region
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_7/classes.rb,
generated/google/apis/dfareporting_v2_7/representations.rb,
generated/google/apis/dfareporting_v2_7/representations.rb more...
Overview
Contains information about a region that can be targeted by ads.
Instance Attribute Summary collapse
-
#country_code ⇒ String
Country code of the country to which this region belongs.
-
#country_dart_id ⇒ Fixnum
DART ID of the country to which this region belongs.
-
#dart_id ⇒ Fixnum
DART ID of this region.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#name ⇒ String
Name of this region.
-
#region_code ⇒ String
Region code.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Region
constructor
A new instance of Region.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Region
Returns a new instance of Region
9299 9300 9301 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 9299 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country_code ⇒ String
Country code of the country to which this region belongs.
Corresponds to the JSON property countryCode
9271 9272 9273 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 9271 def country_code @country_code end |
#country_dart_id ⇒ Fixnum
DART ID of the country to which this region belongs.
Corresponds to the JSON property countryDartId
9276 9277 9278 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 9276 def country_dart_id @country_dart_id end |
#dart_id ⇒ Fixnum
DART ID of this region.
Corresponds to the JSON property dartId
9281 9282 9283 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 9281 def dart_id @dart_id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#region".
Corresponds to the JSON property kind
9287 9288 9289 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 9287 def kind @kind end |
#name ⇒ String
Name of this region.
Corresponds to the JSON property name
9292 9293 9294 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 9292 def name @name end |
#region_code ⇒ String
Region code.
Corresponds to the JSON property regionCode
9297 9298 9299 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 9297 def region_code @region_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9304 9305 9306 9307 9308 9309 9310 9311 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 9304 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) @name = args[:name] if args.key?(:name) @region_code = args[:region_code] if args.key?(:region_code) end |