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.
- 
                  
                  
Represents the union’s current tag state.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGPaperMemberPolicyTag tag;Swift
var tag: DBTEAMLOGPaperMemberPolicyTag { get } 
- 
                  
                  
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.
 
- 
                  
                  
Retrieves whether the union’s current tag state has value “anyone_with_link”.
Declaration
Objective-C
- (BOOL)isAnyoneWithLink;Swift
func isAnyoneWithLink() -> BoolReturn 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() -> BoolReturn 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() -> BoolReturn 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() -> BoolReturn 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() -> StringReturn Value
A human-readable string representing the union’s current tag state.
 
View on GitHub
        DBTEAMLOGPaperMemberPolicy Class Reference