Class: Google::Apis::DfareportingV2_8::PlacementGroupsListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_8::PlacementGroupsListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/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_8::PlacementGroup>
Placement group collection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PlacementGroupsListResponse
constructor
A new instance of PlacementGroupsListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PlacementGroupsListResponse
Returns a new instance of PlacementGroupsListResponse
8559 8560 8561 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8559 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
8547 8548 8549 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8547 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
8552 8553 8554 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8552 def next_page_token @next_page_token end |
#placement_groups ⇒ Array<Google::Apis::DfareportingV2_8::PlacementGroup>
Placement group collection.
Corresponds to the JSON property placementGroups
8557 8558 8559 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8557 def placement_groups @placement_groups end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8564 8565 8566 8567 8568 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8564 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 |