DBTEAMLOGPaperMemberPolicy

Objective-C

@interface DBTEAMLOGPaperMemberPolicy : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGPaperMemberPolicy : NSObject, DBSerializable, NSCopying

The PaperMemberPolicy union.

Policy for controlling if team members can share Paper documents externally.

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_with_link”.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithAnyoneWithLink;

    Swift

    init(anyoneWithLink: ())

    Return Value

    An initialized instance.

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithOnlyTeam;

    Swift

    init(onlyTeam: ())

    Return Value

    An initialized instance.

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithTeamAndExplicitlyShared;

    Swift

    init(teamAndExplicitlyShared: ())

    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_with_link”.

    Declaration

    Objective-C

    - (BOOL)isAnyoneWithLink;

    Swift

    func isAnyoneWithLink() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isOnlyTeam;

    Swift

    func isOnlyTeam() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isTeamAndExplicitlyShared;

    Swift

    func isTeamAndExplicitlyShared() -> Bool

    Return Value

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

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