MembersSetProfileError

public enum MembersSetProfileError : CustomStringConvertible, JSONRepresentable

The MembersSetProfileError 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
  • It is unsafe to use both external_id and new_external_id.

    Declaration

    Swift

    case externalIdAndNewExternalIdUnsafe
  • None of new_email, new_given_name, new_surname, or new_external_id are specified.

    Declaration

    Swift

    case noNewDataSpecified
  • Email is already reserved for another user.

    Declaration

    Swift

    case emailReservedForOtherUser
  • The external ID is already in use by another team member.

    Declaration

    Swift

    case externalIdUsedByOtherUser
  • Modifying deleted users is not allowed.

    Declaration

    Swift

    case setProfileDisallowed
  • Parameter new_email cannot be empty.

    Declaration

    Swift

    case paramCannotBeEmpty
  • Persistent ID is only available to teams with persistent ID SAML configuration. Please contact Dropbox for more information.

    Declaration

    Swift

    case persistentIdDisabled
  • The persistent ID is already in use by another team member.

    Declaration

    Swift

    case persistentIdUsedByOtherUser
  • Directory Restrictions option is not available.

    Declaration

    Swift

    case directoryRestrictedOff
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }