Class: Google::Apis::DisplayvideoV1::ListSitesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::ListSitesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/representations.rb
Overview
Response message for SiteService.ListSites.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
-
#sites ⇒ Array<Google::Apis::DisplayvideoV1::Site>
The list of sites.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSitesResponse
constructor
A new instance of ListSitesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListSitesResponse
Returns a new instance of ListSitesResponse.
6146 6147 6148 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6146 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
6139 6140 6141 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6139 def next_page_token @next_page_token end |
#sites ⇒ Array<Google::Apis::DisplayvideoV1::Site>
The list of sites. This list will be absent if empty.
Corresponds to the JSON property sites
6144 6145 6146 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6144 def sites @sites end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6151 6152 6153 6154 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6151 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @sites = args[:sites] if args.key?(:sites) end |