Class: Google::Apis::DfareportingV3_4::PlacementGroupsListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::PlacementGroupsListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/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::DfareportingV3_4::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.
Constructor Details
#initialize(**args) ⇒ PlacementGroupsListResponse
Returns a new instance of PlacementGroupsListResponse.
9339 9340 9341 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9339 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
9327 9328 9329 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9327 def kind @kind end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
9332 9333 9334 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9332 def next_page_token @next_page_token end |
#placement_groups ⇒ Array<Google::Apis::DfareportingV3_4::PlacementGroup>
Placement group collection.
Corresponds to the JSON property placementGroups
9337 9338 9339 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9337 def placement_groups @placement_groups end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9344 9345 9346 9347 9348 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9344 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 |