FirestoreSettings#
- pydantic model gafaelfawr.config.FirestoreSettings#
pydantic model of Firestore configuration.
- Parameters:
data (
Any
) –
Show JSON schema
{ "title": "FirestoreSettings", "description": "pydantic model of Firestore configuration.", "type": "object", "properties": { "project": { "title": "Project", "type": "string" } }, "required": [ "project" ] }
- Fields:
- field project: str [Required]#
Project containing the Firestore collections.
- model_dump(**kwargs)#
Export the model as a dictionary.
Overridden to change the default of
by_alias
from False to True, so that by default the exported dictionary uses camel-case.