MembersAddJobStatusV2Result
public enum MembersAddJobStatusV2Result : CustomStringConvertible, JSONRepresentable
The MembersAddJobStatusV2Result 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 membersAddV2, a corresponding item is returned in this list.
Declaration
Swift
case complete([Team.MemberAddV2Result])
-
The asynchronous job returned an error. The string contains an error message.
Declaration
Swift
case failed(String)
-
An unspecified error.
Declaration
Swift
case other
-
Declaration
Swift
public var description: String { get }