Package com.dropbox.core.v2.paper
Class ListPaperDocsResponse
- java.lang.Object
- 
- com.dropbox.core.v2.paper.ListPaperDocsResponse
 
- 
 public class ListPaperDocsResponse extends java.lang.Object
- 
- 
Constructor SummaryConstructors Constructor Description ListPaperDocsResponse(java.util.List<java.lang.String> docIds, 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.docsListContinue(String)to paginate through all files.java.util.List<java.lang.String>getDocIds()The list of Paper doc IDs that can be used to access the given Paper docs or supplied to other API methods.booleangetHasMore()Will be set to True if a subsequent call with the provided cursor toDbxUserPaperRequests.docsListContinue(String)returns immediately with some results.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
docIdsprotected final java.util.List<java.lang.String> docIds 
 - 
cursorprotected final Cursor cursor 
 - 
hasMoreprotected final boolean hasMore 
 
- 
 - 
Constructor Detail- 
ListPaperDocsResponsepublic ListPaperDocsResponse(java.util.List<java.lang.String> docIds, Cursor cursor, boolean hasMore)- Parameters:
- docIds- The list of Paper doc IDs that can be used to access the given Paper docs or supplied to other API methods. The list is sorted in the order specified by the initial call to- DbxUserPaperRequests.docsList(com.dropbox.core.v2.paper.ListPaperDocsArgs). Must not contain a- nullitem and not be- null.
- cursor- Pass the cursor into- DbxUserPaperRequests.docsListContinue(String)to paginate through all files. The cursor preserves all properties as specified in the original call to- DbxUserPaperRequests.docsList(com.dropbox.core.v2.paper.ListPaperDocsArgs). Must not be- null.
- hasMore- Will be set to True if a subsequent call with the provided cursor to- DbxUserPaperRequests.docsListContinue(String)returns immediately with some results. If set to False please allow some delay before making another call to- DbxUserPaperRequests.docsListContinue(String).
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getDocIdspublic java.util.List<java.lang.String> getDocIds() The list of Paper doc IDs that can be used to access the given Paper docs or supplied to other API methods. The list is sorted in the order specified by the initial call toDbxUserPaperRequests.docsList(com.dropbox.core.v2.paper.ListPaperDocsArgs).- Returns:
- value for this field, never null.
 
 - 
getCursorpublic Cursor getCursor() Pass the cursor intoDbxUserPaperRequests.docsListContinue(String)to paginate through all files. The cursor preserves all properties as specified in the original call toDbxUserPaperRequests.docsList(com.dropbox.core.v2.paper.ListPaperDocsArgs).- Returns:
- value for this field, never null.
 
 - 
getHasMorepublic boolean getHasMore() Will be set to True if a subsequent call with the provided cursor toDbxUserPaperRequests.docsListContinue(String)returns immediately with some results. If set to False please allow some delay before making another call toDbxUserPaperRequests.docsListContinue(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
 
 
- 
 
-