Class: Google::Apis::DfareportingV4::Region
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::Region
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/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 ⇒ 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.
Constructor Details
#initialize(**args) ⇒ Region
Returns a new instance of Region.
10250 10251 10252 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10250 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
10222 10223 10224 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10222 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
10227 10228 10229 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10227 def country_dart_id @country_dart_id end |
#dart_id ⇒ Fixnum
DART ID of this region.
Corresponds to the JSON property dartId
10232 10233 10234 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10232 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
10238 10239 10240 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10238 def kind @kind end |
#name ⇒ String
Name of this region.
Corresponds to the JSON property name
10243 10244 10245 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10243 def name @name end |
#region_code ⇒ String
Region code.
Corresponds to the JSON property regionCode
10248 10249 10250 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10248 def region_code @region_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10255 10256 10257 10258 10259 10260 10261 10262 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10255 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 |