Home Assistant Unofficial Reference 2024.12.1
hassio.py
Go to the documentation of this file.
1 """Hassio Discovery data."""
2 
3 from dataclasses import dataclass
4 from typing import Any
5 
6 from homeassistant.data_entry_flow import BaseServiceInfo
7 
8 
9 @dataclass(slots=True)
11  """Prepared info from hassio entries."""
12 
13  config: dict[str, Any]
14  name: str
15  slug: str
16  uuid: str