Class: Google::Apis::DfareportingV2_1::Region
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::Region
- 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 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 ⇒ String
DART ID of the country to which this region belongs.
-
#dart_id ⇒ String
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::Hashable
Constructor Details
#initialize(**args) ⇒ Region
Returns a new instance of Region
8595 8596 8597 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8595 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
8567 8568 8569 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8567 def country_code @country_code end |
#country_dart_id ⇒ String
DART ID of the country to which this region belongs.
Corresponds to the JSON property countryDartId
8572 8573 8574 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8572 def country_dart_id @country_dart_id end |
#dart_id ⇒ String
DART ID of this region.
Corresponds to the JSON property dartId
8577 8578 8579 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8577 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
8583 8584 8585 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8583 def kind @kind end |
#name ⇒ String
Name of this region.
Corresponds to the JSON property name
8588 8589 8590 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8588 def name @name end |
#region_code ⇒ String
Region code.
Corresponds to the JSON property regionCode
8593 8594 8595 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8593 def region_code @region_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8600 8601 8602 8603 8604 8605 8606 8607 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 8600 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? @name = args[:name] unless args[:name].nil? @region_code = args[:region_code] unless args[:region_code].nil? end |