ListPaperDocsResponse

public class ListPaperDocsResponse : CustomStringConvertible, JSONRepresentable

The ListPaperDocsResponse struct

  • 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 docsList.

    Declaration

    Swift

    public let docIds: [String]
  • Pass the cursor into docsListContinue to paginate through all files. The cursor preserves all properties as specified in the original call to docsList.

    Declaration

    Swift

    public let cursor: Paper.Cursor
  • Will be set to True if a subsequent call with the provided cursor to docsListContinue returns immediately with some results. If set to False please allow some delay before making another call to docsListContinue.

    Declaration

    Swift

    public let hasMore: Bool
  • Declaration

    Swift

    public var description: String { get }