mirror of https://github.com/home-assistant/core
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
"""Entity representing a Google Mail account."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.helpers.device_registry import DeviceEntryType, DeviceInfo
|
|
from homeassistant.helpers.entity import Entity, EntityDescription
|
|
|
|
from .api import AsyncConfigEntryAuth
|
|
from .const import DOMAIN, MANUFACTURER
|
|
|
|
|
|
class GoogleMailEntity(Entity):
|
|
"""An HA implementation for Google Mail entity."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
auth: AsyncConfigEntryAuth,
|
|
description: EntityDescription,
|
|
) -> None:
|
|
"""Initialize a Google Mail entity."""
|
|
self.auth = auth
|
|
self.entity_description = description
|
|
self._attr_unique_id = (
|
|
f"{auth.oauth_session.config_entry.entry_id}_{description.key}"
|
|
)
|
|
self._attr_device_info = DeviceInfo(
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
identifiers={(DOMAIN, auth.oauth_session.config_entry.entry_id)},
|
|
manufacturer=MANUFACTURER,
|
|
name=auth.oauth_session.config_entry.unique_id,
|
|
)
|