| 36 | |
| 37 | @dataclass |
| 38 | class FeastObjectDiff: |
| 39 | name: str |
| 40 | feast_object_type: FeastObjectType |
| 41 | current_feast_object: Optional[FeastObject] |
| 42 | new_feast_object: Optional[FeastObject] |
| 43 | feast_object_property_diffs: List[PropertyDiff] |
| 44 | transition_type: TransitionType |
| 45 | |
| 46 | |
| 47 | @dataclass |
no outgoing calls
no test coverage detected