class SealdTmrAuthFactor
objc
@interface SealdTmrAuthFactor : NSObjectSealdTmrAuthFactor 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
valueThe value of the authentication factor.typeThe type of authentication factor.