Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.joaoapps_join.notify Namespace Reference

Classes

class  JoinNotificationService
 

Functions

JoinNotificationService|None get_service (HomeAssistant hass, ConfigType config, DiscoveryInfoType|None discovery_info=None)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string CONF_DEVICE_IDS = "device_ids"
 
string CONF_DEVICE_NAMES = "device_names"
 
 PLATFORM_SCHEMA
 

Detailed Description

Support for Join notifications.

Function Documentation

◆ get_service()

JoinNotificationService | None homeassistant.components.joaoapps_join.notify.get_service ( HomeAssistant  hass,
ConfigType  config,
DiscoveryInfoType | None   discovery_info = None 
)
Get the Join notification service.

Definition at line 37 of file notify.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.joaoapps_join.notify._LOGGER = logging.getLogger(__name__)
private

Definition at line 22 of file notify.py.

◆ CONF_DEVICE_IDS

string homeassistant.components.joaoapps_join.notify.CONF_DEVICE_IDS = "device_ids"

Definition at line 24 of file notify.py.

◆ CONF_DEVICE_NAMES

string homeassistant.components.joaoapps_join.notify.CONF_DEVICE_NAMES = "device_names"

Definition at line 25 of file notify.py.

◆ PLATFORM_SCHEMA

homeassistant.components.joaoapps_join.notify.PLATFORM_SCHEMA
Initial value:
1 = NOTIFY_PLATFORM_SCHEMA.extend(
2  {
3  vol.Required(CONF_API_KEY): cv.string,
4  vol.Optional(CONF_DEVICE_ID): cv.string,
5  vol.Optional(CONF_DEVICE_IDS): cv.string,
6  vol.Optional(CONF_DEVICE_NAMES): cv.string,
7  }
8 )

Definition at line 27 of file notify.py.