Get the parsed JSON body of the request. May be synchronous or asynchronous depending on the backend.
(self)
| 66 | |
| 67 | @abstractmethod # kept as method (may be sync or async) |
| 68 | def get_json(self): # pragma: no cover - interface |
| 69 | """Get the parsed JSON body of the request. |
| 70 | |
| 71 | May be synchronous or asynchronous depending on the backend. |
| 72 | """ |
| 73 | raise NotImplementedError() |
| 74 | |
| 75 | @property # pragma: no cover - interface |
| 76 | @abstractmethod |
no outgoing calls