Class: Google::Apis::DfareportingV2_5::ListPlacementGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_5::ListPlacementGroupsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_5/classes.rb,
generated/google/apis/dfareporting_v2_5/representations.rb,
generated/google/apis/dfareporting_v2_5/representations.rb
Overview
Placement Group List Response
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
-
#placement_groups ⇒ Array<Google::Apis::DfareportingV2_5::PlacementGroup>
Placement group collection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPlacementGroupsResponse
constructor
A new instance of ListPlacementGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListPlacementGroupsResponse
Returns a new instance of ListPlacementGroupsResponse
8159 8160 8161 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 8159 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#placementGroupsListResponse".
Corresponds to the JSON property kind
8147 8148 8149 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 8147 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
8152 8153 8154 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 8152 def next_page_token @next_page_token end |
#placement_groups ⇒ Array<Google::Apis::DfareportingV2_5::PlacementGroup>
Placement group collection.
Corresponds to the JSON property placementGroups
8157 8158 8159 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 8157 def placement_groups @placement_groups end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8164 8165 8166 8167 8168 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 8164 def update!(**args) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @placement_groups = args[:placement_groups] if args.key?(:placement_groups) end |