DBPAPERPaperApiCursorErrorTag
Objective-C
enum DBPAPERPaperApiCursorErrorTag : NSInteger {}
Swift
@frozen enum DBPAPERPaperApiCursorErrorTag : Int, @unchecked Sendable
The DBPAPERPaperApiCursorErrorTag
enum type represents the possible tag
states with which the DBPAPERPaperApiCursorError
union can exist.
-
The provided cursor is expired.
Declaration
Objective-C
DBPAPERPaperApiCursorErrorExpiredCursor
Swift
case expiredCursor = 0
-
The provided cursor is invalid.
Declaration
Objective-C
DBPAPERPaperApiCursorErrorInvalidCursor
Swift
case invalidCursor = 1
-
The provided cursor contains invalid user.
Declaration
Objective-C
DBPAPERPaperApiCursorErrorWrongUserInCursor
Swift
case wrongUserInCursor = 2
-
Indicates that the cursor has been invalidated. Call the corresponding non-continue endpoint to obtain a new cursor.
Declaration
Objective-C
DBPAPERPaperApiCursorErrorReset
Swift
case reset = 3
-
(no description).
Declaration
Objective-C
DBPAPERPaperApiCursorErrorOther
Swift
case other = 4