You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

enums.py 279B

12345678910111213141516
  1. from enum import StrEnum
  2. class CreatedByRole(StrEnum):
  3. ACCOUNT = "account"
  4. END_USER = "end_user"
  5. class UserFrom(StrEnum):
  6. ACCOUNT = "account"
  7. END_USER = "end-user"
  8. class WorkflowRunTriggeredFrom(StrEnum):
  9. DEBUGGING = "debugging"
  10. APP_RUN = "app-run"