DBSHARINGRequestedLinkAccessLevel

Objective-C

@interface DBSHARINGRequestedLinkAccessLevel
    : NSObject <DBSerializable, NSCopying>

Swift

class DBSHARINGRequestedLinkAccessLevel : NSObject, DBSerializable, NSCopying

The RequestedLinkAccessLevel 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 “viewer”.

    Description of the “viewer” tag state: Users who use the link can view and comment on the content.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithViewer;

    Swift

    init(viewer: ())

    Return Value

    An initialized instance.

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

    Description of the “editor” tag state: Users who use the link can edit, view and comment on the content. Note not all file types support edit links yet.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithEditor;

    Swift

    init(editor: ())

    Return Value

    An initialized instance.

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

    Description of the “max” tag state: Request for the maximum access level you can set the link to.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithMax;

    Swift

    init(max: ())

    Return Value

    An initialized instance.

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

    Description of the “default” tag state: Request for the default access level the user has set.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDefault_;

    Swift

    init(default_: ())

    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.

Tag state methods

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

    Declaration

    Objective-C

    - (BOOL)isViewer;

    Swift

    func isViewer() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isEditor;

    Swift

    func isEditor() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isMax;

    Swift

    func isMax() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isDefault_;

    Swift

    func isDefault_() -> Bool

    Return Value

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

  • 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 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.