Skip to content

class SealdRecipientWithRights

objc
@interface SealdRecipientWithRights : NSObject
@interface SealdRecipientWithRights : NSObject

SealdRecipientWithRights represents a recipient with associated rights.

MembersDescriptions
recipientIdInternal Seald IDs. Returned for users with sdk.getCurrentAccountInfo, for groups when creating them
rightsThe rights for the associated recipient ID
initWithRecipientId:rights:Initialize a SealdRecipientWithRights instance.

recipientId

objc
@property (strong) NSString * recipientId;
@property (strong) NSString * recipientId;

Internal Seald IDs. Returned for users with sdk.getCurrentAccountInfo, for groups when creating them

rights

objc
@property (strong) SealdRecipientRights * rights;
@property (strong) SealdRecipientRights * rights;

The rights for the associated recipient ID

initWithRecipientId:rights:

objc
- (instancetype) initWithRecipientId:(NSString *)recipientId
                              rights:(SealdRecipientRights *)rights;
- (instancetype) initWithRecipientId:(NSString *)recipientId
                              rights:(SealdRecipientRights *)rights;

Initialize a SealdRecipientWithRights instance.

Parameters

  • recipientId The sealdId of the recipient.

  • rights The rights for the associated recipient ID.