| 3 | |
| 4 | |
| 5 | class DTO(BaseModel): |
| 6 | model_config = ConfigDict( |
| 7 | extra="ignore", |
| 8 | alias_generator=AliasGenerator( |
| 9 | alias=to_camel, |
| 10 | validation_alias=to_camel, |
| 11 | serialization_alias=to_camel, |
| 12 | ), |
| 13 | populate_by_name=True, |
| 14 | ) |
| 15 | include: str | None = None |
| 16 | |
| 17 | |
| 18 | class Message(DTO): |
nothing calls this directly
no outgoing calls
no test coverage detected