DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails
Objective-C
@interface DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails : NSObject, DBSerializable, NSCopying
The ExternalDriveBackupEligibilityStatusCheckedDetails
struct.
Checked external drive backup eligibility status.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Device’s session logged information.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGDesktopDeviceSessionLogInfo *_Nonnull desktopDeviceSessionInfo;
Swift
var desktopDeviceSessionInfo: DBTEAMLOGDesktopDeviceSessionLogInfo { get }
-
Current eligibility status of external drive backup.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupEligibilityStatus *_Nonnull status;
Swift
var status: DBTEAMLOGExternalDriveBackupEligibilityStatus { get }
-
Total number of valid external drive backup for all the team members.
Declaration
Objective-C
@property (nonatomic, readonly) NSNumber *_Nonnull numberOfExternalDriveBackup;
Swift
var numberOfExternalDriveBackup: NSNumber { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDesktopDeviceSessionInfo: (nonnull DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSessionInfo status: (nonnull DBTEAMLOGExternalDriveBackupEligibilityStatus *)status numberOfExternalDriveBackup: (nonnull NSNumber *)numberOfExternalDriveBackup;
Swift
init(desktopDeviceSessionInfo: DBTEAMLOGDesktopDeviceSessionLogInfo, status: DBTEAMLOGExternalDriveBackupEligibilityStatus, numberOfExternalDriveBackup: NSNumber)
Parameters
desktopDeviceSessionInfo
Device’s session logged information.
status
Current eligibility status of external drive backup.
numberOfExternalDriveBackup
Total number of valid external drive backup for all the team members.
Return Value
An initialized instance.