lib/ittybit/types/task_status.rb



# frozen_string_literal: true

module Ittybit
  # Current status of the task.
  class TaskStatus
    PENDING = "pending"
    WAITING = "waiting"
    PROCESSING = "processing"
    READY = "ready"
    COMPLETED = "completed"
    FAILED = "failed"
    ERROR = "error"
    CANCELLED = "cancelled"
  end
end