| 21 | |
| 22 | @dataclass |
| 23 | class InfraObjectDiff(Generic[InfraObjectProto]): |
| 24 | name: str |
| 25 | infra_object_type: str |
| 26 | current_infra_object: InfraObjectProto |
| 27 | new_infra_object: InfraObjectProto |
| 28 | infra_object_property_diffs: List[PropertyDiff] |
| 29 | transition_type: TransitionType |
| 30 | |
| 31 | |
| 32 | @dataclass |
no outgoing calls
no test coverage detected