(cls, data: Dict)
| 163 | |
| 164 | @classmethod |
| 165 | def from_dict(cls, data: Dict) -> "IcebergFormat": |
| 166 | return cls( |
| 167 | catalog=data.get("catalog"), |
| 168 | namespace=data.get("namespace"), |
| 169 | properties=data.get("properties", {}), |
| 170 | ) |
| 171 | |
| 172 | def to_proto(self) -> "TableFormatProto": |
| 173 | """Convert to protobuf TableFormat message""" |