DBPAPERPaperFolderCreateError

Objective-C

@interface DBPAPERPaperFolderCreateError : NSObject <DBSerializable, NSCopying>

Swift

class DBPAPERPaperFolderCreateError : NSObject, DBSerializable, NSCopying

The PaperFolderCreateError union.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

Constructors

  • Initializes union class with tag state of “insufficient_permissions”.

    Description of the “insufficient_permissions” tag state: 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

    - (nonnull instancetype)initWithInsufficientPermissions;

    Swift

    init(insufficientPermissions: ())

    Return Value

    An initialized instance.

  • Initializes union class with tag state of “other”.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithOther;

    Swift

    init(other: ())

    Return Value

    An initialized instance.

  • Initializes union class with tag state of “folder_not_found”.

    Description of the “folder_not_found” tag state: The specified parent Paper folder cannot be found.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithFolderNotFound;

    Swift

    init(folderNotFound: ())

    Return Value

    An initialized instance.

  • Initializes union class with tag state of “invalid_folder_id”.

    Description of the “invalid_folder_id” tag state: The folder id cannot be decrypted to valid folder id.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithInvalidFolderId;

    Swift

    init(invalidFolderId: ())

    Return Value

    An initialized instance.

Tag state methods

  • Retrieves whether the union’s current tag state has value “insufficient_permissions”.

    Declaration

    Objective-C

    - (BOOL)isInsufficientPermissions;

    Swift

    func isInsufficientPermissions() -> Bool

    Return Value

    Whether the union’s current tag state has value “insufficient_permissions”.

  • Retrieves whether the union’s current tag state has value “other”.

    Declaration

    Objective-C

    - (BOOL)isOther;

    Swift

    func isOther() -> Bool

    Return Value

    Whether the union’s current tag state has value “other”.

  • Retrieves whether the union’s current tag state has value “folder_not_found”.

    Declaration

    Objective-C

    - (BOOL)isFolderNotFound;

    Swift

    func isFolderNotFound() -> Bool

    Return Value

    Whether the union’s current tag state has value “folder_not_found”.

  • Retrieves whether the union’s current tag state has value “invalid_folder_id”.

    Declaration

    Objective-C

    - (BOOL)isInvalidFolderId;

    Swift

    func isInvalidFolderId() -> Bool

    Return Value

    Whether the union’s current tag state has value “invalid_folder_id”.

  • Retrieves string value of union’s current tag state.

    Declaration

    Objective-C

    - (nonnull NSString *)tagName;

    Swift

    func tagName() -> String

    Return Value

    A human-readable string representing the union’s current tag state.