MemberAction
public enum MemberAction : CustomStringConvertible, JSONRepresentable
Actions that may be taken on members of a shared folder.
-
Allow the member to keep a copy of the folder when removing.
Declaration
Swift
case leaveACopy
-
Make the member an editor of the folder.
Declaration
Swift
case makeEditor
-
Make the member an owner of the folder.
Declaration
Swift
case makeOwner
-
Make the member a viewer of the folder.
Declaration
Swift
case makeViewer
-
Make the member a viewer of the folder without commenting permissions.
Declaration
Swift
case makeViewerNoComment
-
Remove the member from the folder.
Declaration
Swift
case remove
-
An unspecified error.
Declaration
Swift
case other
-
Declaration
Swift
public var description: String { get }