class SealdTmrAccess
objc
@interface SealdTmrAccess : NSObject
SealdTmrAccess holds information about a TMR access.
Members | Descriptions |
---|---|
tmrAccessId | Id of the TMR access. |
created | Date of creation. |
authFactorType | The type of authentication factor. |
rights | The rights for the access |
initWithTmrAccessId:created:authFactorType:rights: | |
fromMobileSdk: | |
fromMobileSdkArray: |
tmrAccessId
objc
@property (strong) NSString * tmrAccessId;
Id of the TMR access.
created
objc
@property (strong) NSDate * created;
Date of creation.
authFactorType
objc
@property (strong) NSString * authFactorType;
The type of authentication factor.
rights
objc
@property (strong) SealdRecipientRights * rights;
The rights for the access
initWithTmrAccessId:created:authFactorType:rights:
objc
- (instancetype) initWithTmrAccessId:(NSString *)tmrAccessId
created:(NSDate *)created
authFactorType:(NSString *)authFactorType
rights:(SealdRecipientRights *)rights;
fromMobileSdk:
objc
+ (instancetype) fromMobileSdk:(SealdSdkInternalsMobile_sdkTmrAccess *)d;
fromMobileSdkArray:
objc
+ (NSArray< SealdTmrAccess * > *) fromMobileSdkArray:(SealdSdkInternalsMobile_sdkRecipientsList *)nativeList;