Class: Google::Apis::DfareportingV2_6::ListRegionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_6::ListRegionsResponse
- 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
Region List Response
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#regions ⇒ Array<Google::Apis::DfareportingV2_6::Region>
Region collection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRegionsResponse
constructor
A new instance of ListRegionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListRegionsResponse
Returns a new instance of ListRegionsResponse
9238 9239 9240 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9238 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#regionsListResponse".
Corresponds to the JSON property kind
9231 9232 9233 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9231 def kind @kind end |
#regions ⇒ Array<Google::Apis::DfareportingV2_6::Region>
Region collection.
Corresponds to the JSON property regions
9236 9237 9238 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9236 def regions @regions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9243 9244 9245 9246 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9243 def update!(**args) @kind = args[:kind] if args.key?(:kind) @regions = args[:regions] if args.key?(:regions) end |