Returns utf-8 decoded request body
(request: 'HTTPrettyRequestEmpty')
| 200 | |
| 201 | |
| 202 | def get_httpretty_request_body(request: 'HTTPrettyRequestEmpty') -> Dict[str, Any]: |
| 203 | """Returns utf-8 decoded request body""" |
| 204 | return json.loads(request.body.decode('utf-8')) |
no outgoing calls
no test coverage detected