Class: Google::Apis::DfareportingV4::PlacementGroupsListResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb

Overview

Placement Group List Response

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PlacementGroupsListResponse

Returns a new instance of PlacementGroupsListResponse.



9221
9222
9223
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9221

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#placementGroupsListResponse". Corresponds to the JSON property kind

Returns:

  • (String)


9209
9210
9211
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9209

def kind
  @kind
end

#next_page_tokenString

Pagination token to be used for the next list operation. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


9214
9215
9216
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9214

def next_page_token
  @next_page_token
end

#placement_groupsArray<Google::Apis::DfareportingV4::PlacementGroup>

Placement group collection. Corresponds to the JSON property placementGroups



9219
9220
9221
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9219

def placement_groups
  @placement_groups
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9226
9227
9228
9229
9230
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 9226

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