(cls, data: Dict)
| 263 | |
| 264 | @classmethod |
| 265 | def from_dict(cls, data: Dict) -> "DeltaFormat": |
| 266 | return cls( |
| 267 | checkpoint_location=data.get("checkpoint_location"), |
| 268 | properties=data.get("properties", {}), |
| 269 | ) |
| 270 | |
| 271 | def to_proto(self) -> "TableFormatProto": |
| 272 | """Convert to protobuf TableFormat message""" |