RelinquishFolderMembershipError
public enum RelinquishFolderMembershipError : CustomStringConvertible, JSONRepresentable
The RelinquishFolderMembershipError union
-
An unspecified error.
Declaration
Swift
case accessError(Sharing.SharedFolderAccessError)
-
The current user is the owner of the shared folder. Owners cannot relinquish membership to their own folders. Try unsharing or transferring ownership first.
Declaration
Swift
case folderOwner
-
The shared folder is currently mounted. Unmount the shared folder before relinquishing membership.
Declaration
Swift
case mounted
-
The current user has access to the shared folder via a group. You can’t relinquish membership to folders shared via groups.
Declaration
Swift
case groupAccess
-
This action cannot be performed on a team shared folder.
Declaration
Swift
case teamFolder
-
The current user does not have permission to perform this action.
Declaration
Swift
case noPermission
-
The current user only has inherited access to the shared folder. You can’t relinquish inherited membership to folders.
Declaration
Swift
case noExplicitAccess
-
An unspecified error.
Declaration
Swift
case other
-
Declaration
Swift
public var description: String { get }