Skip to content

class SealdTmrAccess

objc
@interface SealdTmrAccess : NSObject

SealdTmrAccess holds information about a TMR access.

MembersDescriptions
tmrAccessIdId of the TMR access.
createdDate of creation.
authFactorTypeThe type of authentication factor.
rightsThe 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;