public class ListUsersOnFolderResponse
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected Cursor |
cursor |
protected boolean |
hasMore |
protected java.util.List<InviteeInfo> |
invitees |
protected java.util.List<UserInfo> |
users |
Constructor and Description |
---|
ListUsersOnFolderResponse(java.util.List<InviteeInfo> invitees,
java.util.List<UserInfo> users,
Cursor cursor,
boolean hasMore) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
Cursor |
getCursor()
Pass the cursor into
DbxUserPaperRequests.docsFolderUsersListContinue(String,String) to
paginate through all users. |
boolean |
getHasMore()
Will be set to True if a subsequent call with the provided cursor to
DbxUserPaperRequests.docsFolderUsersListContinue(String,String)
returns immediately with some results. |
java.util.List<InviteeInfo> |
getInvitees()
List of email addresses that are invited on the Paper folder.
|
java.util.List<UserInfo> |
getUsers()
List of users that are invited on the Paper folder.
|
int |
hashCode() |
java.lang.String |
toString() |
java.lang.String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
protected final java.util.List<InviteeInfo> invitees
protected final java.util.List<UserInfo> users
protected final Cursor cursor
protected final boolean hasMore
public ListUsersOnFolderResponse(java.util.List<InviteeInfo> invitees, java.util.List<UserInfo> users, Cursor cursor, boolean hasMore)
invitees
- List of email addresses that are invited on the Paper
folder. Must not contain a null
item and not be null
.users
- List of users that are invited on the Paper folder. Must
not contain a null
item and not be null
.cursor
- Pass the cursor into DbxUserPaperRequests.docsFolderUsersListContinue(String,String)
to
paginate through all users. The cursor preserves all properties as
specified in the original call to DbxUserPaperRequests.docsFolderUsersList(String,int)
. Must not be
null
.hasMore
- Will be set to True if a subsequent call with the
provided cursor to DbxUserPaperRequests.docsFolderUsersListContinue(String,String)
returns immediately with some results. If set to False please allow
some delay before making another call to DbxUserPaperRequests.docsFolderUsersListContinue(String,String)
.java.lang.IllegalArgumentException
- If any argument does not meet its
preconditions.public java.util.List<InviteeInfo> getInvitees()
null
.public java.util.List<UserInfo> getUsers()
null
.public Cursor getCursor()
DbxUserPaperRequests.docsFolderUsersListContinue(String,String)
to
paginate through all users. The cursor preserves all properties as
specified in the original call to DbxUserPaperRequests.docsFolderUsersList(String,int)
.null
.public boolean getHasMore()
DbxUserPaperRequests.docsFolderUsersListContinue(String,String)
returns immediately with some results. If set to False please allow some
delay before making another call to DbxUserPaperRequests.docsFolderUsersListContinue(String,String)
.public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toStringMultiline()
The returned String may contain newlines.