Class ListPaperDocsResponse
The list paper docs response object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class ListPaperDocsResponse
Constructors
| Improve this Doc View SourceListPaperDocsResponse(IEnumerable<String>, Cursor, Boolean)
Initializes a new instance of the ListPaperDocsResponse class.
Declaration
public ListPaperDocsResponse(IEnumerable<string> docIds, Cursor cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<System.String> | 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 DocsListAsync(ListPaperDocsArgs). |
Cursor | cursor | Pass the cursor into DocsListContinueAsync(ListPaperDocsContinueArgs) to paginate through all files. The cursor preserves all properties as specified in the original call to DocsListAsync(ListPaperDocsArgs). |
System.Boolean | hasMore | Will be set to True if a subsequent call with the provided cursor to DocsListContinueAsync(ListPaperDocsContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsListContinueAsync(ListPaperDocsContinueArgs). |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into DocsListContinueAsync(ListPaperDocsContinueArgs) to paginate through all files. The cursor preserves all properties as specified in the original call to DocsListAsync(ListPaperDocsArgs).
Declaration
public Cursor Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
Cursor |
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 DocsListAsync(ListPaperDocsArgs).
Declaration
public IList<string> DocIds { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
HasMore
Will be set to True if a subsequent call with the provided cursor to DocsListContinueAsync(ListPaperDocsContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsListContinueAsync(ListPaperDocsContinueArgs).
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |