Исходный код aiogram.types.game

from .animation import Animation
from .base import Deserializable
from .message_entity import MessageEntity
from .photo_size import PhotoSize


[документация]class Game(Deserializable): """ This object represents a game. Use BotFather to create and edit games, their short names will act as unique identifiers. https://core.telegram.org/bots/api#game """ def __init__(self, title, description, photo, text, text_entities, animation): self.title = title self.description = description self.photo = photo self.text = text self.text_entities = text_entities self.animation = animation @classmethod def de_json(cls, raw_data): title = raw_data.get('title') description = raw_data.get('description') photo = PhotoSize.deserialize(raw_data.get('photo')) text = raw_data.get('text') text_entities = MessageEntity.deserialize(raw_data.get('text_entities')) animation = Animation.deserialize(raw_data.get('animation')) return Game(title, description, photo, text, text_entities, animation)