DBTEAMLOGFileLockingLockStatusChangedDetails
Objective-C
@interface DBTEAMLOGFileLockingLockStatusChangedDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGFileLockingLockStatusChangedDetails : NSObject, DBSerializable, NSCopying
The FileLockingLockStatusChangedDetails
struct.
Locked/unlocked editing for a file.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Previous lock status of the file.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGLockStatus *_Nonnull previousValue;
Swift
var previousValue: DBTEAMLOGLockStatus { get }
-
New lock status of the file.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGLockStatus *_Nonnull dNewValue;
Swift
var dNewValue: DBTEAMLOGLockStatus { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithPreviousValue:(nonnull DBTEAMLOGLockStatus *)previousValue dNewValue:(nonnull DBTEAMLOGLockStatus *)dNewValue;
Swift
init(previousValue: DBTEAMLOGLockStatus, dNewValue: DBTEAMLOGLockStatus)
Parameters
previousValue
Previous lock status of the file.
dNewValue
New lock status of the file.
Return Value
An initialized instance.