Source code for pyrogram.raw.types.quick_reply

#  Pyrogram - Telegram MTProto API Client Library for Python
#  Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
#  This file is part of Pyrogram.
#
#  Pyrogram is free software: you can redistribute it and/or modify
#  it under the terms of the GNU Lesser General Public License as published
#  by the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  Pyrogram is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public License
#  along with Pyrogram.  If not, see <http://www.gnu.org/licenses/>.

from io import BytesIO

from pyrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from pyrogram.raw.core import TLObject
from pyrogram import raw
from typing import List, Optional, Any

# # # # # # # # # # # # # # # # # # # # # # # #
#               !!! WARNING !!!               #
#          This is a generated file!          #
# All changes made in this file will be lost! #
# # # # # # # # # # # # # # # # # # # # # # # #


[docs] class QuickReply(TLObject): # type: ignore """A `quick reply shortcut <https://core.telegram.org/api/business#quick-reply-shortcuts>`_. Constructor of :obj:`~pyrogram.raw.base.QuickReply`. Details: - Layer: ``229`` - ID: ``697102B`` Parameters: shortcut_id (``int`` ``32-bit``): Unique shortcut ID. shortcut (``str``): Shortcut name. top_message (``int`` ``32-bit``): ID of the last message in the shortcut. count (``int`` ``32-bit``): Total number of messages in the shortcut. """ __slots__: List[str] = ["shortcut_id", "shortcut", "top_message", "count"] ID = 0x697102b QUALNAME = "types.QuickReply" def __init__(self, *, shortcut_id: int, shortcut: str, top_message: int, count: int) -> None: self.shortcut_id = shortcut_id # int self.shortcut = shortcut # string self.top_message = top_message # int self.count = count # int @staticmethod def read(b: BytesIO, *args: Any) -> "QuickReply": # No flags shortcut_id = Int.read(b) shortcut = String.read(b) top_message = Int.read(b) count = Int.read(b) return QuickReply(shortcut_id=shortcut_id, shortcut=shortcut, top_message=top_message, count=count) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) # No flags b.write(Int(self.shortcut_id)) b.write(String(self.shortcut)) b.write(Int(self.top_message)) b.write(Int(self.count)) return b.getvalue()