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

10 lines
159 B
Python
Generated

from enum import Enum
class SandboxOnTimeout(str, Enum):
KILL = "kill"
PAUSE = "pause"
def __str__(self) -> str:
return str(self.value)