class SealdTmrAuthFactor
objc
@interface SealdTmrAuthFactor : NSObject
SealdTmrAuthFactor represents a user's authentication factor
Members | Descriptions |
---|---|
value | The value of the authentication factor |
type | The type of authentication factor. Either @"EM" or @"SMS" |
initWithValue:type: | Initialize a SealdTmrAuthFactor instance. |
value
objc
@property (assign, readonly) NSString * value;
The value of the authentication factor
type
objc
@property (assign, readonly) NSString * type;
The type of authentication factor. Either @"EM"
or @"SMS"
initWithValue:type:
objc
- (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.