DBTEAMLOGExternalDriveBackupStatus
Objective-C
@interface DBTEAMLOGExternalDriveBackupStatus
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGExternalDriveBackupStatus : NSObject, DBSerializable, NSCopying
The ExternalDriveBackupStatus
union.
External Drive Backup status
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) DBTEAMLOGExternalDriveBackupStatusTag tag;
Swift
var tag: DBTEAMLOGExternalDriveBackupStatusTag { get }
-
Initializes union class with tag state of “broken”.
Declaration
Objective-C
- (nonnull instancetype)initWithBroken;
Swift
init(broken: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “created”.
Declaration
Objective-C
- (nonnull instancetype)initWithCreated;
Swift
init(created: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “created_or_broken”.
Declaration
Objective-C
- (nonnull instancetype)initWithCreatedOrBroken;
Swift
init(createdOrBroken: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “deleted”.
Declaration
Objective-C
- (nonnull instancetype)initWithDeleted;
Swift
init(deleted: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “empty”.
Declaration
Objective-C
- (nonnull instancetype)initWithEmpty;
Swift
init(empty: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “unknown”.
Declaration
Objective-C
- (nonnull instancetype)initWithUnknown;
Swift
init(unknown: ())
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 “broken”.
Declaration
Objective-C
- (BOOL)isBroken;
Swift
func isBroken() -> Bool
Return Value
Whether the union’s current tag state has value “broken”.
-
Retrieves whether the union’s current tag state has value “created”.
Declaration
Objective-C
- (BOOL)isCreated;
Swift
func isCreated() -> Bool
Return Value
Whether the union’s current tag state has value “created”.
-
Retrieves whether the union’s current tag state has value “created_or_broken”.
Declaration
Objective-C
- (BOOL)isCreatedOrBroken;
Swift
func isCreatedOrBroken() -> Bool
Return Value
Whether the union’s current tag state has value “created_or_broken”.
-
Retrieves whether the union’s current tag state has value “deleted”.
Declaration
Objective-C
- (BOOL)isDeleted;
Swift
func isDeleted() -> Bool
Return Value
Whether the union’s current tag state has value “deleted”.
-
Retrieves whether the union’s current tag state has value “empty”.
Declaration
Objective-C
- (BOOL)isEmpty;
Swift
func isEmpty() -> Bool
Return Value
Whether the union’s current tag state has value “empty”.
-
Retrieves whether the union’s current tag state has value “unknown”.
Declaration
Objective-C
- (BOOL)isUnknown;
Swift
func isUnknown() -> Bool
Return Value
Whether the union’s current tag state has value “unknown”.
-
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.