DBFILESPaperContentErrorTag
Objective-C
enum DBFILESPaperContentErrorTag : NSInteger {}
Swift
@frozen enum DBFILESPaperContentErrorTag : Int, @unchecked Sendable
The DBFILESPaperContentErrorTag enum type represents the possible tag
states with which the DBFILESPaperContentError union can exist.
-
Your account does not have permissions to edit Paper docs.
Declaration
Objective-C
DBFILESPaperContentErrorInsufficientPermissionsSwift
case insufficientPermissions = 0 -
The provided content was malformed and cannot be imported to Paper.
Declaration
Objective-C
DBFILESPaperContentErrorContentMalformedSwift
case contentMalformed = 1 -
The Paper doc would be too large, split the content into multiple docs.
Declaration
Objective-C
DBFILESPaperContentErrorDocLengthExceededSwift
case docLengthExceeded = 2 -
The imported document contains an image that is too large. The current limit is 1MB. This only applies to HTML with data URI.
Declaration
Objective-C
DBFILESPaperContentErrorImageSizeExceededSwift
case imageSizeExceeded = 3 -
(no description).
Declaration
Objective-C
DBFILESPaperContentErrorOtherSwift
case other = 4
View on GitHub
DBFILESPaperContentErrorTag Enumeration Reference