Show / Hide Table of Contents

Class ListPaperDocsResponse

The list paper docs response object

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

Constructors

| Improve this Doc View Source

ListPaperDocsResponse(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 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
| Improve this Doc 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
System.Collections.Generic.IList<System.String>
| Improve this Doc 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
System.Boolean
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListPaperDocsResponse(IEnumerable<String>, Cursor, Boolean)
  • Properties
    • Cursor
    • DocIds
    • HasMore
Back to top Generated by DocFX