13 lines
183 B
Python
13 lines
183 B
Python
|
|
from pydantic import BaseModel
|
|
|
|
from ..models.unit_volume import UnitVolume
|
|
|
|
|
|
class Volume(BaseModel):
|
|
"""The volume response."""
|
|
|
|
output_unit: UnitVolume
|
|
|
|
volume: float
|