Package com.dropbox.core.v2.paper
Class ListUsersOnFolderResponse
- java.lang.Object
- 
- com.dropbox.core.v2.paper.ListUsersOnFolderResponse
 
- 
 public class ListUsersOnFolderResponse extends java.lang.Object
- 
- 
Constructor SummaryConstructors Constructor Description ListUsersOnFolderResponse(java.util.List<InviteeInfo> invitees, java.util.List<UserInfo> users, Cursor cursor, boolean hasMore)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)CursorgetCursor()Pass the cursor intoDbxUserPaperRequests.docsFolderUsersListContinue(String,String)to paginate through all users.booleangetHasMore()Will be set to True if a subsequent call with the provided cursor toDbxUserPaperRequests.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.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
inviteesprotected final java.util.List<InviteeInfo> invitees 
 - 
usersprotected final java.util.List<UserInfo> users 
 - 
cursorprotected final Cursor cursor 
 - 
hasMoreprotected final boolean hasMore 
 
- 
 - 
Constructor Detail- 
ListUsersOnFolderResponsepublic ListUsersOnFolderResponse(java.util.List<InviteeInfo> invitees, java.util.List<UserInfo> users, Cursor cursor, boolean hasMore) - Parameters:
- invitees- List of email addresses that are invited on the Paper folder. Must not contain a- nullitem and not be- null.
- users- List of users that are invited on the Paper folder. Must not contain a- nullitem 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).
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getInviteespublic java.util.List<InviteeInfo> getInvitees() List of email addresses that are invited on the Paper folder.- Returns:
- value for this field, never null.
 
 - 
getUserspublic java.util.List<UserInfo> getUsers() List of users that are invited on the Paper folder.- Returns:
- value for this field, never null.
 
 - 
getCursorpublic Cursor getCursor() Pass the cursor intoDbxUserPaperRequests.docsFolderUsersListContinue(String,String)to paginate through all users. The cursor preserves all properties as specified in the original call toDbxUserPaperRequests.docsFolderUsersList(String,int).- Returns:
- value for this field, never null.
 
 - 
getHasMorepublic boolean getHasMore() Will be set to True if a subsequent call with the provided cursor toDbxUserPaperRequests.docsFolderUsersListContinue(String,String)returns immediately with some results. If set to False please allow some delay before making another call toDbxUserPaperRequests.docsFolderUsersListContinue(String,String).- Returns:
- value for this field.
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
toStringMultilinepublic java.lang.String toStringMultiline() Returns a String representation of this object formatted for easier readability.The returned String may contain newlines. - Returns:
- Formatted, multiline String representation of this object
 
 
- 
 
-