DBTEAMPOLICIESTwoStepVerificationPolicy
Objective-C
@interface DBTEAMPOLICIESTwoStepVerificationPolicy
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMPOLICIESTwoStepVerificationPolicy : NSObject, DBSerializable, NSCopying
The TwoStepVerificationPolicy union.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Represents the union’s current tag state.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMPOLICIESTwoStepVerificationPolicyTag tag;Swift
var tag: DBTEAMPOLICIESTwoStepVerificationPolicyTag { get }
-
Initializes union class with tag state of “require_tfa_enable”.
Description of the “require_tfa_enable” tag state: Enabled require two factor authorization.
Declaration
Objective-C
- (nonnull instancetype)initWithRequireTfaEnable;Swift
init(requireTfaEnable: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “require_tfa_disable”.
Description of the “require_tfa_disable” tag state: Disabled require two factor authorization.
Declaration
Objective-C
- (nonnull instancetype)initWithRequireTfaDisable;Swift
init(requireTfaDisable: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “other”.
Declaration
Objective-C
- (nonnull instancetype)initWithOther;Swift
init(other: ())Return Value
An initialized instance.
-
Retrieves whether the union’s current tag state has value “require_tfa_enable”.
Declaration
Objective-C
- (BOOL)isRequireTfaEnable;Swift
func isRequireTfaEnable() -> BoolReturn Value
Whether the union’s current tag state has value “require_tfa_enable”.
-
Retrieves whether the union’s current tag state has value “require_tfa_disable”.
Declaration
Objective-C
- (BOOL)isRequireTfaDisable;Swift
func isRequireTfaDisable() -> BoolReturn Value
Whether the union’s current tag state has value “require_tfa_disable”.
-
Retrieves whether the union’s current tag state has value “other”.
Declaration
Objective-C
- (BOOL)isOther;Swift
func isOther() -> BoolReturn Value
Whether the union’s current tag state has value “other”.
-
Retrieves string value of union’s current tag state.
Declaration
Objective-C
- (nonnull NSString *)tagName;Swift
func tagName() -> StringReturn Value
A human-readable string representing the union’s current tag state.
View on GitHub
DBTEAMPOLICIESTwoStepVerificationPolicy Class Reference