PaperDocCreateError
public enum PaperDocCreateError : CustomStringConvertible, JSONRepresentable
The PaperDocCreateError union
-
Your account does not have permissions to perform this action. This may be due to it only having access to Paper as files in the Dropbox filesystem. For more information, refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide.
Declaration
Swift
case insufficientPermissions
-
An unspecified error.
Declaration
Swift
case other
-
The provided content was malformed and cannot be imported to Paper.
Declaration
Swift
case contentMalformed
-
The specified Paper folder is cannot be found.
Declaration
Swift
case folderNotFound
-
The newly created Paper doc would be too large. Please split the content into multiple docs.
Declaration
Swift
case docLengthExceeded
-
The imported document contains an image that is too large. The current limit is 1MB. This only applies to HTML with data URI.
Declaration
Swift
case imageSizeExceeded
-
Declaration
Swift
public var description: String { get }