lib/ittybit/tasks/types/tasks_get_response_status.rb



# frozen_string_literal: true

module Ittybit
  class Tasks
    class TasksGetResponseStatus
      PENDING = "pending"
      WAITING = "waiting"
      PROCESSING = "processing"
      READY = "ready"
      COMPLETED = "completed"
      FAILED = "failed"
      ERROR = "error"
      CANCELLED = "cancelled"
    end
  end
end