DBTEAMLOGAccountLockOrUnlockedDetails
Objective-C
@interface DBTEAMLOGAccountLockOrUnlockedDetails
    : NSObject <DBSerializable, NSCopying>
                Swift
class DBTEAMLOGAccountLockOrUnlockedDetails : NSObject, DBSerializable, NSCopying
                The AccountLockOrUnlockedDetails struct.
Unlocked/locked account after failed sign in attempts.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
- 
                  
                  
The previous account status.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGAccountState *_Nonnull previousValue;Swift
var previousValue: DBTEAMLOGAccountState { get } - 
                  
                  
The new account status.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGAccountState *_Nonnull dNewValue;Swift
var dNewValue: DBTEAMLOGAccountState { get } 
- 
                  
                  
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithPreviousValue:(nonnull DBTEAMLOGAccountState *)previousValue dNewValue:(nonnull DBTEAMLOGAccountState *)dNewValue;Swift
init(previousValue: DBTEAMLOGAccountState, dNewValue: DBTEAMLOGAccountState)Parameters
previousValueThe previous account status.
dNewValueThe new account status.
Return Value
An initialized instance.
 
View on GitHub
        DBTEAMLOGAccountLockOrUnlockedDetails Class Reference