MembersTransferFilesError

public enum MembersTransferFilesError : CustomStringConvertible, JSONRepresentable

The MembersTransferFilesError union

  • No matching user found. The provided team_member_id, email, or external_id does not exist on this team.

    Declaration

    Swift

    case userNotFound
  • The user is not a member of the team.

    Declaration

    Swift

    case userNotInTeam
  • An unspecified error.

    Declaration

    Swift

    case other
  • Expected removed user and transfer_dest user to be different.

    Declaration

    Swift

    case removedAndTransferDestShouldDiffer
  • Expected removed user and transfer_admin user to be different.

    Declaration

    Swift

    case removedAndTransferAdminShouldDiffer
  • No matching user found for the argument transfer_dest_id.

    Declaration

    Swift

    case transferDestUserNotFound
  • The provided transfer_dest_id does not exist on this team.

    Declaration

    Swift

    case transferDestUserNotInTeam
  • The provided transfer_admin_id does not exist on this team.

    Declaration

    Swift

    case transferAdminUserNotInTeam
  • No matching user found for the argument transfer_admin_id.

    Declaration

    Swift

    case transferAdminUserNotFound
  • The transfer_admin_id argument must be provided when file transfer is requested.

    Declaration

    Swift

    case unspecifiedTransferAdminId
  • Specified transfer_admin user is not a team admin.

    Declaration

    Swift

    case transferAdminIsNotAdmin
  • The recipient user’s email is not verified.

    Declaration

    Swift

    case recipientNotVerified
  • Declaration

    Swift

    public var description: String { get }