-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathmodels.py
More file actions
30 lines (24 loc) · 833 Bytes
/
models.py
File metadata and controls
30 lines (24 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from __future__ import annotations
from dataclasses import dataclass, field
from enum import Enum
class Status(str, Enum):
SUCCESS = "success"
UNSUPPORTED = "unsupported"
ERROR = "error"
@dataclass
class TranslationResult:
feldera_schema: str = ""
feldera_query: str = ""
unsupported: list[str] = field(default_factory=list)
warnings: list[str] = field(default_factory=list)
explanations: list[str] = field(default_factory=list)
status: Status = Status.SUCCESS
def to_dict(self) -> dict:
return {
"feldera_schema": self.feldera_schema,
"feldera_query": self.feldera_query,
"unsupported": self.unsupported,
"warnings": self.warnings,
"explanations": self.explanations,
"status": self.status.value,
}