enums.py 442 B

12345678910111213141516171819202122
  1. # Generated by ariadne-codegen
  2. # Source: core/api/graphql/schemas/schema-latest.graphql
  3. from __future__ import annotations
  4. from enum import Enum
  5. class ArtifactCollectionState(str, Enum):
  6. DELETED = "DELETED"
  7. READY = "READY"
  8. class ArtifactCollectionType(str, Enum):
  9. PORTFOLIO = "PORTFOLIO"
  10. SEQUENCE = "SEQUENCE"
  11. class ArtifactState(str, Enum):
  12. COMMITTED = "COMMITTED"
  13. DELETED = "DELETED"
  14. PENDING = "PENDING"