Optional metadata returned by editor operations.
| 25 | |
| 26 | @dataclass(**_DATACLASS_KWARGS) |
| 27 | class ApplyPatchResult: |
| 28 | """Optional metadata returned by editor operations.""" |
| 29 | |
| 30 | status: Literal["completed", "failed"] | None = None |
| 31 | output: str | None = None |
| 32 | |
| 33 | |
| 34 | @runtime_checkable |
no outgoing calls