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.
1434 1435 1436 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1434 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 until the time a next page token is not returned,
even if the result set is empty.
Corresponds to the JSON property nextPageToken
1427 1428 1429 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1427 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
1432 1433 1434 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1432 def user_lists @user_lists end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1439 1440 1441 1442 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1439 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 |