Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 374 Bytes

File metadata and controls

21 lines (14 loc) · 374 Bytes

ReportExecutionStatus

Example Usage

from gr4vy.models import ReportExecutionStatus

# Open enum: unrecognized values are captured as UnrecognizedStr
value: ReportExecutionStatus = "dispatched"

Values

This is an open enum. Unrecognized values will not fail type checks.

  • "dispatched"
  • "failed"
  • "pending"
  • "processing"
  • "succeeded"