DBTEAMMembersAddJobStatusTag

Objective-C

enum DBTEAMMembersAddJobStatusTag : NSInteger {}

Swift

@frozen enum DBTEAMMembersAddJobStatusTag : Int, @unchecked Sendable

The DBTEAMMembersAddJobStatusTag enum type represents the possible tag states with which the DBTEAMMembersAddJobStatus union can exist.

  • The asynchronous job is still in progress.

    Declaration

    Objective-C

    DBTEAMMembersAddJobStatusInProgress

    Swift

    case inProgress = 0
  • The asynchronous job has finished. For each member that was specified in the parameter MembersAddArg that was provided to membersAdd, a corresponding item is returned in this list.

    Declaration

    Objective-C

    DBTEAMMembersAddJobStatusComplete

    Swift

    case complete = 1
  • The asynchronous job returned an error. The string contains an error message.

    Declaration

    Objective-C

    DBTEAMMembersAddJobStatusFailed

    Swift

    case failed = 2