I have a model:
class Cars(BaseModel):
numberOfCars: int = Field(0,alias='Number of cars')
I have a dict with:
{
"Number of cars":3
}
How can I create an instance of Cars by using this model?` Is there something like 'by_alias' when using this?