SharingAllowlistRemoveError

public enum SharingAllowlistRemoveError : CustomStringConvertible, JSONRepresentable

The SharingAllowlistRemoveError union

  • One of provided values is not valid.

    Declaration

    Swift

    case malformedEntry(String)
  • One or more provided values do not exist.

    Declaration

    Swift

    case entriesDoNotExist(String)
  • Neither single domain nor email provided.

    Declaration

    Swift

    case noEntriesProvided
  • Too many entries provided within one call.

    Declaration

    Swift

    case tooManyEntriesProvided
  • Unknown error.

    Declaration

    Swift

    case unknownError
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }