class SealdSsksAuthFactor
objc
@interface SealdSsksAuthFactor : NSObject
SealdSsksAuthFactor 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: |
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;