TeamReportFailureReason

public enum TeamReportFailureReason : CustomStringConvertible, JSONRepresentable

The TeamReportFailureReason union

  • We couldn’t create the report, but we think this was a fluke. Everything should work if you try it again.

    Declaration

    Swift

    case temporaryError
  • Too many other reports are being created right now. Try creating this report again once the others finish.

    Declaration

    Swift

    case manyReportsAtOnce
  • We couldn’t create the report. Try creating the report again with less data.

    Declaration

    Swift

    case tooMuchData
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }