(self)
| 377 | ) |
| 378 | |
| 379 | def to_dict(self) -> Dict: |
| 380 | return { |
| 381 | "format_type": self.format_type.value, |
| 382 | "table_type": self.table_type, |
| 383 | "record_key": self.record_key, |
| 384 | "precombine_field": self.precombine_field, |
| 385 | "properties": self.properties, |
| 386 | } |
| 387 | |
| 388 | @classmethod |
| 389 | def from_dict(cls, data: Dict) -> "HudiFormat": |
no outgoing calls