Home Assistant Unofficial Reference 2024.12.1
typing.py
Go to the documentation of this file.
1 """Typings for the xiaomi_miio integration."""
2 
3 from typing import NamedTuple
4 
5 import voluptuous as vol
6 
7 
8 class ServiceMethodDetails(NamedTuple):
9  """Details for SERVICE_TO_METHOD mapping."""
10 
11  method: str
12  schema: vol.Schema | None = None