package domain // Entity is a resolvable, controllable Home Assistant entity. type Entity struct { // EntityID is the Home Assistant entity identifier, e.g. "light.living_room". EntityID string // FriendlyName is the user-facing name used to resolve Alexa's Device slot. FriendlyName string // Domain is the entity_id prefix (light, switch, climate) and selects which // ha-gateway RPC family Controller.ExecuteAction dispatches to. Domain string }