CamelCaseModel#

pydantic model safir.pydantic.CamelCaseModel#

pydantic.BaseModel configured to accept camel-case input.

This is a convenience class identical to BaseModel except with an alias generator configured so that it can be initialized with either camel-case or snake-case keys. Model exports with model_dump or model_dump_json also default to exporting in camel-case.

Parameters:

data (Any)

Config:
  • alias_generator: function = <function to_camel_case at 0x7fa7fceb5ee0>

  • populate_by_name: bool = True

  • validate_by_alias: bool = True

  • validate_by_name: bool = True