target.py 210 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. from typing import Dict
  3. from pydantic import BaseModel
  4. class TemperatureTarget(BaseModel):
  5. is_customized: bool
  6. is_temporary: bool
  7. target_schedule: Dict
  8. extent: float