DBPAPERPaperDocUpdateErrorTag
Objective-C
enum DBPAPERPaperDocUpdateErrorTag : NSInteger {}
Swift
@frozen enum DBPAPERPaperDocUpdateErrorTag : Int, @unchecked Sendable
The DBPAPERPaperDocUpdateErrorTag
enum type represents the possible tag
states with which the DBPAPERPaperDocUpdateError
union can exist.
-
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
Objective-C
DBPAPERPaperDocUpdateErrorInsufficientPermissions
Swift
case insufficientPermissions = 0
-
(no description).
Declaration
Objective-C
DBPAPERPaperDocUpdateErrorOther
Swift
case other = 1
-
The required doc was not found.
Declaration
Objective-C
DBPAPERPaperDocUpdateErrorDocNotFound
Swift
case docNotFound = 2
-
The provided content was malformed and cannot be imported to Paper.
Declaration
Objective-C
DBPAPERPaperDocUpdateErrorContentMalformed
Swift
case contentMalformed = 3
-
The provided revision does not match the document head.
Declaration
Objective-C
DBPAPERPaperDocUpdateErrorRevisionMismatch
Swift
case revisionMismatch = 4
-
The newly created Paper doc would be too large, split the content into multiple docs.
Declaration
Objective-C
DBPAPERPaperDocUpdateErrorDocLengthExceeded
Swift
case docLengthExceeded = 5
-
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
DBPAPERPaperDocUpdateErrorImageSizeExceeded
Swift
case imageSizeExceeded = 6
-
This operation is not allowed on archived Paper docs.
Declaration
Objective-C
DBPAPERPaperDocUpdateErrorDocArchived
Swift
case docArchived = 7
-
This operation is not allowed on deleted Paper docs.
Declaration
Objective-C
DBPAPERPaperDocUpdateErrorDocDeleted
Swift
case docDeleted = 8