MembersAddJobStatus

public enum MembersAddJobStatus : CustomStringConvertible, JSONRepresentable

The MembersAddJobStatus union

  • The asynchronous job is still in progress.

    Declaration

    Swift

    case inProgress
  • 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

    Swift

    case complete([Team.MemberAddResult])
  • The asynchronous job returned an error. The string contains an error message.

    Declaration

    Swift

    case failed(String)
  • Declaration

    Swift

    public var description: String { get }