Skip to content

Status Codes

// Luma task state constants
const (
	LumaTaskStateQueued     = "queued"     // Queued
	LumaTaskStatePending    = "pending"    // Pending
	LumaTaskStateProcessing = "processing" // Processing
	LumaTaskStateCompleted  = "completed"  // Completed
	LumaTaskStateFailed     = "failed"     // Failed
	LumaTaskStateError      = "error"      // Error (used in error responses)
)