yandex-music-api/yandex_music/account/alert_button.py

48 行
1.5 KiB
Python
Raw 通常表示 履歴

from typing import TYPE_CHECKING, Optional
from yandex_music import YandexMusicObject
from yandex_music.utils import model
if TYPE_CHECKING:
from yandex_music import Client
@model
class AlertButton(YandexMusicObject):
"""Класс, представляющий кнопку в предупреждении.
Attributes:
text (:obj:`str`): Текст кнопки.
bg_color (:obj:`str`): Цвет заднего фона.
text_color (:obj:`str`): Цвет текста.
uri (:obj:`str`): Ссылка куда ведёт кнопка.
client (:obj:`yandex_music.Client`, optional): Клиент Yandex Music.
"""
text: str
bg_color: str
text_color: str
uri: str
client: Optional['Client'] = None
def __post_init__(self):
self._id_attrs = (self.text, self.uri)
@classmethod
def de_json(cls, data: dict, client: 'Client') -> Optional['AlertButton']:
"""Десериализация объекта.
Args:
data (:obj:`dict`): Поля и значения десериализуемого объекта.
client (:obj:`yandex_music.Client`, optional): Клиент Yandex Music.
Returns:
:obj:`yandex_music.AlertButton`: Кнопка в статусе о подписки.
"""
if not data:
return None
data = super(AlertButton, cls).de_json(data, client)
return cls(client=client, **data)