DBTEAMTeamReportFailureReasonTag

Objective-C

enum DBTEAMTeamReportFailureReasonTag : NSInteger {}

Swift

@frozen enum DBTEAMTeamReportFailureReasonTag : Int, @unchecked Sendable

The DBTEAMTeamReportFailureReasonTag enum type represents the possible tag states with which the DBTEAMTeamReportFailureReason union can exist.

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

    Declaration

    Objective-C

    DBTEAMTeamReportFailureReasonTemporaryError

    Swift

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

    Declaration

    Objective-C

    DBTEAMTeamReportFailureReasonManyReportsAtOnce

    Swift

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

    Declaration

    Objective-C

    DBTEAMTeamReportFailureReasonTooMuchData

    Swift

    case tooMuchData = 2
  • (no description).

    Declaration

    Objective-C

    DBTEAMTeamReportFailureReasonOther

    Swift

    case other = 3