class SealdProxySession
objc
@interface SealdProxySession : NSObject
SealdProxySession holds information about a proxy session.
Members | Descriptions |
---|---|
proxySessionId | Id of the proxy session. |
created | Date of creation. |
rights | The rights for the access |
initWithProxySessionId:created:rights: | |
fromMobileSdk: | |
fromMobileSdkArray: |
proxySessionId
objc
@property (strong) NSString * proxySessionId;
Id of the proxy session.
created
objc
@property (strong) NSDate * created;
Date of creation.
rights
objc
@property (strong) SealdRecipientRights * rights;
The rights for the access
initWithProxySessionId:created:rights:
objc
- (instancetype) initWithProxySessionId:(NSString *)proxySessionId
created:(NSDate *)created
rights:(SealdRecipientRights *)rights;
fromMobileSdk:
objc
+ (instancetype) fromMobileSdk:(SealdSdkInternalsMobile_sdkProxySession *)d;
fromMobileSdkArray:
objc
+ (NSArray< SealdProxySession * > *) fromMobileSdkArray:(SealdSdkInternalsMobile_sdkRecipientsList *)nativeList;