Skip to content

class SealdTmrAuthFactor

objc
@interface SealdTmrAuthFactor : NSObject
@interface SealdTmrAuthFactor : NSObject

SealdTmrAuthFactor represents a user's authentication factor

MembersDescriptions
valueThe value of the authentication factor
typeThe type of authentication factor. Either @"EM" or @"SMS"
initWithValue:type:Initialize a SealdTmrAuthFactor instance.

value

objc
@property (assign, readonly) NSString * value;
@property (assign, readonly) NSString * value;

The value of the authentication factor

type

objc
@property (assign, readonly) NSString * type;
@property (assign, readonly) NSString * type;

The type of authentication factor. Either @"EM" or @"SMS"

initWithValue:type:

objc
- (instancetype) initWithValue:(NSString *)value
                          type:(NSString *)type;
- (instancetype) initWithValue:(NSString *)value
                          type:(NSString *)type;

Initialize a SealdTmrAuthFactor instance.

Parameters

  • value The value of the authentication factor.

  • type The type of authentication factor.