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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/realtimebidding_v1/classes.rb,
generated/google/apis/realtimebidding_v1/representations.rb,
generated/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.



976
977
978
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 976

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 till the time a next page token is not returned (even if the result set is empty). Corresponds to the JSON property nextPageToken

Returns:

  • (String)


969
970
971
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 969

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



974
975
976
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 974

def user_lists
  @user_lists
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



981
982
983
984
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 981

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