DBSHARINGFileActionTag
Objective-C
enum DBSHARINGFileActionTag : NSInteger {}
Swift
@frozen enum DBSHARINGFileActionTag : Int, @unchecked Sendable
The DBSHARINGFileActionTag
enum type represents the possible tag states
with which the DBSHARINGFileAction
union can exist.
-
Disable viewer information on the file.
Declaration
Objective-C
DBSHARINGFileActionDisableViewerInfo
Swift
case disableViewerInfo = 0
-
Change or edit contents of the file.
Declaration
Objective-C
DBSHARINGFileActionEditContents
Swift
case editContents = 1
-
Enable viewer information on the file.
Declaration
Objective-C
DBSHARINGFileActionEnableViewerInfo
Swift
case enableViewerInfo = 2
-
Add a member with view permissions.
Declaration
Objective-C
DBSHARINGFileActionInviteViewer
Swift
case inviteViewer = 3
-
Add a member with view permissions but no comment permissions.
Declaration
Objective-C
DBSHARINGFileActionInviteViewerNoComment
Swift
case inviteViewerNoComment = 4
-
Add a member with edit permissions.
Declaration
Objective-C
DBSHARINGFileActionInviteEditor
Swift
case inviteEditor = 5
-
Stop sharing this file.
Declaration
Objective-C
DBSHARINGFileActionUnshare
Swift
case unshare = 6
-
Relinquish one’s own membership to the file.
Declaration
Objective-C
DBSHARINGFileActionRelinquishMembership
Swift
case relinquishMembership = 7
-
Use create_view_link and create_edit_link instead.
Declaration
Objective-C
DBSHARINGFileActionShareLink
Swift
case shareLink = 8
-
Use create_view_link and create_edit_link instead.
Declaration
Objective-C
DBSHARINGFileActionCreateLink
Swift
case createLink = 9
-
Create a shared link to a file that only allows users to view the content.
Declaration
Objective-C
DBSHARINGFileActionCreateViewLink
Swift
case createViewLink = 10
-
Create a shared link to a file that allows users to edit the content.
Declaration
Objective-C
DBSHARINGFileActionCreateEditLink
Swift
case createEditLink = 11
-
(no description).
Declaration
Objective-C
DBSHARINGFileActionOther
Swift
case other = 12