Class: Google::Apis::DfareportingV2_1::ListPlacementGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::ListPlacementGroupsResponse
- 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
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_1::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::Hashable
Constructor Details
#initialize(**args) ⇒ ListPlacementGroupsResponse
Returns a new instance of ListPlacementGroupsResponse
7692 7693 7694 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7692 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
7680 7681 7682 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7680 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
7685 7686 7687 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7685 def next_page_token @next_page_token end |
#placement_groups ⇒ Array<Google::Apis::DfareportingV2_1::PlacementGroup>
Placement group collection.
Corresponds to the JSON property placementGroups
7690 7691 7692 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7690 def placement_groups @placement_groups end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7697 7698 7699 7700 7701 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 7697 def update!(**args) @kind = args[:kind] unless args[:kind].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? @placement_groups = args[:placement_groups] unless args[:placement_groups].nil? end |