2023-09-29 15:51:03 -07:00
|
|
|
|
2024-01-06 18:32:21 -08:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2023-09-29 15:51:03 -07:00
|
|
|
|
|
|
|
from ..models.unit_density import UnitDensity
|
|
|
|
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class Density(BaseModel):
|
|
|
|
"""The density response."""
|
2023-09-29 15:51:03 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
density: float
|
2023-09-29 15:51:03 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
output_unit: UnitDensity
|
2024-01-06 18:32:21 -08:00
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|