Class: Google::Apis::DisplayvideoV3::ListSitesResponse

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

Overview

Response message for SiteService.ListSites.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSitesResponse

Returns a new instance of ListSitesResponse.



9233
9234
9235
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9233

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

Instance Attribute Details

#next_page_tokenString

A token to retrieve the next page of results. Pass this value in the page_token field in the subsequent call to ListSites method to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


9226
9227
9228
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9226

def next_page_token
  @next_page_token
end

#sitesArray<Google::Apis::DisplayvideoV3::Site>

The list of sites. This list will be absent if empty. Corresponds to the JSON property sites



9231
9232
9233
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9231

def sites
  @sites
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9238
9239
9240
9241
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9238

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @sites = args[:sites] if args.key?(:sites)
end