DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails
Objective-C
@interface DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails : NSObject, DBSerializable, NSCopying
The PasswordStrengthRequirementsChangePolicyDetails
struct.
Changed team password strength requirements.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Old password strength policy.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMPOLICIESPasswordStrengthPolicy *_Nonnull previousValue;
Swift
var previousValue: DBTEAMPOLICIESPasswordStrengthPolicy { get }
-
New password strength policy.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMPOLICIESPasswordStrengthPolicy *_Nonnull dNewValue;
Swift
var dNewValue: DBTEAMPOLICIESPasswordStrengthPolicy { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithPreviousValue: (nonnull DBTEAMPOLICIESPasswordStrengthPolicy *)previousValue dNewValue: (nonnull DBTEAMPOLICIESPasswordStrengthPolicy *)dNewValue;
Swift
init(previousValue: DBTEAMPOLICIESPasswordStrengthPolicy, dNewValue: DBTEAMPOLICIESPasswordStrengthPolicy)
Parameters
previousValue
Old password strength policy.
dNewValue
New password strength policy.
Return Value
An initialized instance.