Class: Google::Apis::RealtimebiddingV1::ListUserListsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListUserListsResponse

Returns a new instance of ListUserListsResponse.



1420
1421
1422
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1420

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


1413
1414
1415
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1413

def next_page_token
  @next_page_token
end

#user_listsArray<Google::Apis::RealtimebiddingV1::UserList>

List of user lists from the search. Corresponds to the JSON property userLists



1418
1419
1420
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1418

def user_lists
  @user_lists
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1425
1426
1427
1428
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1425

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