RemoveFolderMemberError

public enum RemoveFolderMemberError : CustomStringConvertible, JSONRepresentable

The RemoveFolderMemberError union

  • An unspecified error.

    Declaration

    Swift

    case accessError(Sharing.SharedFolderAccessError)
  • An unspecified error.

    Declaration

    Swift

    case memberError(Sharing.SharedFolderMemberError)
  • The target user is the owner of the shared folder. You can’t remove this user until ownership has been transferred to another member.

    Declaration

    Swift

    case folderOwner
  • The target user has access to the shared folder via a group.

    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
  • This shared folder has too many files for leaving a copy. You can still remove this user without leaving a copy.

    Declaration

    Swift

    case tooManyFiles
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }