Package com.dropbox.core.v2.filerequests
Class ListFileRequestsV2Result
- java.lang.Object
- 
- com.dropbox.core.v2.filerequests.ListFileRequestsV2Result
 
- 
 public class ListFileRequestsV2Result extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringcursorprotected java.util.List<FileRequest>fileRequestsprotected booleanhasMore
 - 
Constructor SummaryConstructors Constructor Description ListFileRequestsV2Result(java.util.List<FileRequest> fileRequests, java.lang.String cursor, boolean hasMore)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetCursor()Pass the cursor intoDbxUserFileRequestsRequests.listContinue(String)to obtain additional file requests.java.util.List<FileRequest>getFileRequests()The file requests owned by this user.booleangetHasMore()Is true if there are additional file requests that have not been returned yet.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
fileRequestsprotected final java.util.List<FileRequest> fileRequests 
 - 
cursorprotected final java.lang.String cursor 
 - 
hasMoreprotected final boolean hasMore 
 
- 
 - 
Constructor Detail- 
ListFileRequestsV2Resultpublic ListFileRequestsV2Result(java.util.List<FileRequest> fileRequests, java.lang.String cursor, boolean hasMore) Result forDbxUserFileRequestsRequests.listV2(long)andDbxUserFileRequestsRequests.listContinue(String).- Parameters:
- fileRequests- The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder. Must not contain a- nullitem and not be- null.
- cursor- Pass the cursor into- DbxUserFileRequestsRequests.listContinue(String)to obtain additional file requests. Must not be- null.
- hasMore- Is true if there are additional file requests that have not been returned yet. An additional call to :route:list/continue` can retrieve them.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getFileRequestspublic java.util.List<FileRequest> getFileRequests() The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder.- Returns:
- value for this field, never null.
 
 - 
getCursorpublic java.lang.String getCursor() Pass the cursor intoDbxUserFileRequestsRequests.listContinue(String)to obtain additional file requests.- Returns:
- value for this field, never null.
 
 - 
getHasMorepublic boolean getHasMore() Is true if there are additional file requests that have not been returned yet. An additional call to :route:list/continue` can retrieve them.- 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
 
 
- 
 
-