1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
"""Shelly Gen2 RPC based device models."""
from __future__ import annotations
from typing import TypedDict
class ShellyScript(TypedDict, total=False):
"""Shelly Script."""
id: int
name: str
enable: bool
running: bool
class ShellyScriptCode(TypedDict, total=False):
"""Shelly Script Code."""
data: str
class ShellyBLERpcConfig(TypedDict, total=False):
"""Shelly BLE RPC Config."""
enable: bool
class ShellyBLEConfig(TypedDict, total=False):
"""Shelly BLE Config."""
enable: bool
rpc: ShellyBLERpcConfig
class ShellyBLESetConfig(TypedDict, total=False):
"""Shelly BLE Set Config."""
restart_required: bool
class ShellyWsConfig(TypedDict, total=False):
"""Shelly Outbound Websocket Config."""
enable: bool
server: str | None
ssl_ca: str
class ShellyWsSetConfig(TypedDict, total=False):
"""Shelly Outbound Websocket Set Config."""
restart_required: bool
|