Files
e2b-dev--e2b/packages/python-sdk/e2b/api/client/models/sandbox_state.py
T
2026-07-13 12:47:58 +08:00

10 lines
163 B
Python
Generated

from enum import Enum
class SandboxState(str, Enum):
PAUSED = "paused"
RUNNING = "running"
def __str__(self) -> str:
return str(self.value)