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
previousValue
The previous account status.
dNewValue
The new account status.
Return Value
An initialized instance.