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

10 lines
173 B
Python
Generated

from enum import Enum
class LogsSource(str, Enum):
PERSISTENT = "persistent"
TEMPORARY = "temporary"
def __str__(self) -> str:
return str(self.value)