DBTEAMCOMMONMemberSpaceLimitType
Objective-C
@interface DBTEAMCOMMONMemberSpaceLimitType
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMCOMMONMemberSpaceLimitType : NSObject, DBSerializable, NSCopying
The MemberSpaceLimitType
union.
The type of the space limit imposed on a team member.
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) DBTEAMCOMMONMemberSpaceLimitTypeTag tag;
Swift
var tag: DBTEAMCOMMONMemberSpaceLimitTypeTag { get }
-
Initializes union class with tag state of “off”.
Description of the “off” tag state: The team member does not have imposed space limit.
Declaration
Objective-C
- (nonnull instancetype)initWithOff;
Swift
init(off: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “alert_only”.
Description of the “alert_only” tag state: The team member has soft imposed space limit - the limit is used for display and for notifications.
Declaration
Objective-C
- (nonnull instancetype)initWithAlertOnly;
Swift
init(alertOnly: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “stop_sync”.
Description of the “stop_sync” tag state: The team member has hard imposed space limit - Dropbox file sync will stop after the limit is reached.
Declaration
Objective-C
- (nonnull instancetype)initWithStopSync;
Swift
init(stopSync: ())
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 “off”.
Declaration
Objective-C
- (BOOL)isOff;
Swift
func isOff() -> Bool
Return Value
Whether the union’s current tag state has value “off”.
-
Retrieves whether the union’s current tag state has value “alert_only”.
Declaration
Objective-C
- (BOOL)isAlertOnly;
Swift
func isAlertOnly() -> Bool
Return Value
Whether the union’s current tag state has value “alert_only”.
-
Retrieves whether the union’s current tag state has value “stop_sync”.
Declaration
Objective-C
- (BOOL)isStopSync;
Swift
func isStopSync() -> Bool
Return Value
Whether the union’s current tag state has value “stop_sync”.
-
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.