Files
hatchet/sdks/python/hatchet_sdk/labels.py
T
2025-03-11 14:57:13 -04:00

9 lines
182 B
Python

from pydantic import BaseModel
class DesiredWorkerLabel(BaseModel):
value: str | int
required: bool = False
weight: int | None = None
comparator: int | None = None