DBPAPERInviteeInfoWithPermissionLevel
Objective-C
@interface DBPAPERInviteeInfoWithPermissionLevel
: NSObject <DBSerializable, NSCopying>
Swift
class DBPAPERInviteeInfoWithPermissionLevel : NSObject, DBSerializable, NSCopying
The InviteeInfoWithPermissionLevel struct.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Email address invited to the Paper doc.
Declaration
Objective-C
@property (nonatomic, readonly) DBSHARINGInviteeInfo *_Nonnull invitee;Swift
var invitee: DBSHARINGInviteeInfo { get } -
Permission level for the invitee.
Declaration
Objective-C
@property (nonatomic, readonly) DBPAPERPaperDocPermissionLevel *_Nonnull permissionLevel;Swift
var permissionLevel: DBPAPERPaperDocPermissionLevel { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithInvitee:(nonnull DBSHARINGInviteeInfo *)invitee permissionLevel:(nonnull DBPAPERPaperDocPermissionLevel *)permissionLevel;Swift
init(invitee: DBSHARINGInviteeInfo, permissionLevel: DBPAPERPaperDocPermissionLevel)Parameters
inviteeEmail address invited to the Paper doc.
permissionLevelPermission level for the invitee.
Return Value
An initialized instance.
View on GitHub
DBPAPERInviteeInfoWithPermissionLevel Class Reference