Class: Google::Apis::RealtimebiddingV1::ListUserListsResponse
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::ListUserListsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/realtimebidding_v1/classes.rb,
lib/google/apis/realtimebidding_v1/representations.rb,
lib/google/apis/realtimebidding_v1/representations.rb
Overview
The list user list response.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The continuation page token to send back to the server in a subsequent request.
-
#user_lists ⇒ Array<Google::Apis::RealtimebiddingV1::UserList>
List of user lists from the search.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListUserListsResponse
constructor
A new instance of ListUserListsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListUserListsResponse
Returns a new instance of ListUserListsResponse.
1417 1418 1419 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1417 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The continuation page token to send back to the server in a subsequent request.
Due to a currently known issue, it is recommended that the caller keep
invoking the list method till the time a next page token is not returned (even
if the result set is empty).
Corresponds to the JSON property nextPageToken
1410 1411 1412 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1410 def next_page_token @next_page_token end |
#user_lists ⇒ Array<Google::Apis::RealtimebiddingV1::UserList>
List of user lists from the search.
Corresponds to the JSON property userLists
1415 1416 1417 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1415 def user_lists @user_lists end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1422 1423 1424 1425 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1422 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @user_lists = args[:user_lists] if args.key?(:user_lists) end |