(original_body: Dict[str, any])
| 7 | |
| 8 | |
| 9 | def _build_body(original_body: Dict[str, any]) -> Dict[str, any]: |
| 10 | body = {k: v for k, v in original_body.items() if v is not None} |
| 11 | body = convert_bool_to_0_or_1(body) |
| 12 | _parse_web_class_objects(body) |
| 13 | return body |
| 14 | |
| 15 | |
| 16 | def _build_request_headers( |
no test coverage detected