Dropbox .NET SDK
Show / Hide Table of Contents

Class ListPaperDocsResponse

The list paper docs response object

Inheritance
object
ListPaperDocsResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class ListPaperDocsResponse

Constructors

View Source

ListPaperDocsResponse(IEnumerable<string>, Cursor, bool)

Initializes a new instance of the ListPaperDocsResponse class.

Declaration
public ListPaperDocsResponse(IEnumerable<string> docIds, Cursor cursor, bool hasMore)
Parameters
Type Name Description
IEnumerable<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).

bool 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

View Source

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).

Declaration
public Cursor Cursor { get; protected set; }
Property Value
Type Description
Cursor
View Source

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
IList<string>
View Source

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
bool
  • View Source
In this article
Back to top Dropbox .NET SDK