| 12345678910111213141516171819202122 |
- # Generated by ariadne-codegen
- # Source: core/api/graphql/schemas/schema-latest.graphql
- from __future__ import annotations
- from enum import Enum
- class ArtifactCollectionState(str, Enum):
- DELETED = "DELETED"
- READY = "READY"
- class ArtifactCollectionType(str, Enum):
- PORTFOLIO = "PORTFOLIO"
- SEQUENCE = "SEQUENCE"
- class ArtifactState(str, Enum):
- COMMITTED = "COMMITTED"
- DELETED = "DELETED"
- PENDING = "PENDING"
|