DBSHARINGSharedLinkPolicy

Objective-C

@interface DBSHARINGSharedLinkPolicy : NSObject <DBSerializable, NSCopying>

Swift

class DBSHARINGSharedLinkPolicy : NSObject, DBSerializable, NSCopying

The SharedLinkPolicy union.

Who can view shared links in this folder.

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 “anyone”.

    Description of the “anyone” tag state: Links can be shared with anyone.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithAnyone;

    Swift

    init(anyone: ())

    Return Value

    An initialized instance.

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

    Description of the “team” tag state: Links can be shared with anyone on the same team as the owner.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithTeam;

    Swift

    init(team: ())

    Return Value

    An initialized instance.

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

    Description of the “members” tag state: Links can only be shared among members of the shared folder.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithMembers;

    Swift

    init(members: ())

    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 “anyone”.

    Declaration

    Objective-C

    - (BOOL)isAnyone;

    Swift

    func isAnyone() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isTeam;

    Swift

    func isTeam() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isMembers;

    Swift

    func isMembers() -> Bool

    Return Value

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

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