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.

Parameters:

kwargs (Any) –

Return type:

dict[str, Any]

model_dump_json(**kwargs)#

Export the model as JSON.

Overridden to change the default of by_alias from False to True, so that by default the exported dictionary uses camel-case.

Parameters:

kwargs (Any) –

Return type:

str