TaskAction
public enum TaskAction : BoxEnum
The action the task assignee will be prompted to perform
-
Approval task that can be approved or rejected
Declaration
Swift
case review -
General task which can be completed
Declaration
Swift
case complete -
Custom task action
Declaration
Swift
case customValue(String) -
Creates a new value
Declaration
Swift
public init(_ value: String) -
Returns string representation of type that can be used in a request.
Declaration
Swift
public var description: String { get }
TaskAction Enumeration Reference