mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
10 lines
389 B
Python
10 lines
389 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class EnergyAssessmentUploadPayload(BaseModel):
|
|
portfolio_id: int
|
|
# This is the energy assessment company/individual that conducted the energy assessment, where the data is uploaded
|
|
# against
|
|
surveyor: str
|
|
# is a code, like VEC001, which is used to identify the project and also where the data is uploaded against
|
|
project_code: str
|