Source code for pyrogram.raw.types.business_greeting_message
# 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 BusinessGreetingMessage(TLObject): # type: ignore
"""Describes a `Telegram Business greeting <https://core.telegram.org/api/business#greeting-messages>`_, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.
Constructor of :obj:`~pyrogram.raw.base.BusinessGreetingMessage`.
Details:
- Layer: ``229``
- ID: ``E519ABAB``
Parameters:
shortcut_id (``int`` ``32-bit``):
ID of a `quick reply shorcut, containing the greeting messages to send, see here ยป for more info <https://core.telegram.org/api/business#quick-reply-shortcuts>`_.
recipients (:obj:`BusinessRecipients <pyrogram.raw.base.BusinessRecipients>`):
Allowed recipients for the greeting messages.
no_activity_days (``int`` ``32-bit``):
The number of days after which a private chat will be considered as inactive; currently, must be one of 7, 14, 21, or 28.
"""
__slots__: List[str] = ["shortcut_id", "recipients", "no_activity_days"]
ID = 0xe519abab
QUALNAME = "types.BusinessGreetingMessage"
def __init__(self, *, shortcut_id: int, recipients: "raw.base.BusinessRecipients", no_activity_days: int) -> None:
self.shortcut_id = shortcut_id # int
self.recipients = recipients # BusinessRecipients
self.no_activity_days = no_activity_days # int
@staticmethod
def read(b: BytesIO, *args: Any) -> "BusinessGreetingMessage":
# No flags
shortcut_id = Int.read(b)
recipients = TLObject.read(b)
no_activity_days = Int.read(b)
return BusinessGreetingMessage(shortcut_id=shortcut_id, recipients=recipients, no_activity_days=no_activity_days)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
# No flags
b.write(Int(self.shortcut_id))
b.write(self.recipients.write())
b.write(Int(self.no_activity_days))
return b.getvalue()