Skip to content
On this page

class SealdSsksAuthFactor

objc
@interface SealdSsksAuthFactor : NSObject

SealdSsksAuthFactor represents a user's authentication factor

MembersDescriptions
valueThe value of the authentication factor
typeThe 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;