DBTEAMLOGExternalDriveBackupStatusChangedDetails
Objective-C
@interface DBTEAMLOGExternalDriveBackupStatusChangedDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGExternalDriveBackupStatusChangedDetails : NSObject, DBSerializable, NSCopying
The ExternalDriveBackupStatusChangedDetails
struct.
Modified external drive backup.
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 }
-
Previous status of this external drive backup.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatus *_Nonnull previousValue;
Swift
var previousValue: DBTEAMLOGExternalDriveBackupStatus { get }
-
Next status of this external drive backup.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatus *_Nonnull dNewValue;
Swift
var dNewValue: DBTEAMLOGExternalDriveBackupStatus { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDesktopDeviceSessionInfo: (nonnull DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSessionInfo previousValue: (nonnull DBTEAMLOGExternalDriveBackupStatus *) previousValue dNewValue: (nonnull DBTEAMLOGExternalDriveBackupStatus *) dNewValue;
Swift
init(desktopDeviceSessionInfo: DBTEAMLOGDesktopDeviceSessionLogInfo, previousValue: DBTEAMLOGExternalDriveBackupStatus, dNewValue: DBTEAMLOGExternalDriveBackupStatus)
Parameters
desktopDeviceSessionInfo
Device’s session logged information.
previousValue
Previous status of this external drive backup.
dNewValue
Next status of this external drive backup.
Return Value
An initialized instance.