TaskCompletionRule

public enum TaskCompletionRule : BoxEnum

Defines the condition that will mark a task as complete

  • Task is complete when all assignees complete it

    Declaration

    Swift

    case allAssignees
  • Task is complete when any assignees complete it

    Declaration

    Swift

    case anyAssignee
  • Custom value

    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 }