The extensions of the error.
(self)
| 7810 | return await _ctx.execute(str) |
| 7811 | |
| 7812 | async def values(self) -> list["ErrorValue"]: |
| 7813 | """The extensions of the error.""" |
| 7814 | _args: list[Arg] = [] |
| 7815 | _ctx = self._select("values", _args) |
| 7816 | return await _ctx.execute_object_list(ErrorValue) |
| 7817 | |
| 7818 | def with_value(self, name: str, value: JSON) -> Self: |
| 7819 | """Add a value to the error. |