(value: BaseModel)
| 218 | |
| 219 | |
| 220 | def _base_model_encoder(value: BaseModel) -> DocumentValue: |
| 221 | return _map_value_to_document_value(value.dict()) |
| 222 | |
| 223 | |
| 224 | def _dict_encoder(value: Dict[str, Any]) -> Dict[str, DocumentValue]: |
nothing calls this directly
no test coverage detected
searching dependent graphs…