Source code for pyrogram.raw.types.business_chat_link
# 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 BusinessChatLink(TLObject): # type: ignore
"""Contains info about a `business chat deep link ยป <https://core.telegram.org/api/business#business-chat-links>`_ created by the current account.
Constructor of :obj:`~pyrogram.raw.base.BusinessChatLink`.
Details:
- Layer: ``229``
- ID: ``B4AE666F``
Parameters:
link (``str``):
`Business chat deep link <https://core.telegram.org/api/links#business-chat-links>`_.
message (``str``):
Message to pre-fill in the message input field.
views (``int`` ``32-bit``):
Number of times the link was resolved (clicked/scanned/etc...).
entities (List of :obj:`MessageEntity <pyrogram.raw.base.MessageEntity>`, *optional*):
`Message entities for styled text <https://core.telegram.org/api/entities>`_
title (``str``, *optional*):
Human-readable name of the link, to simplify management in the UI (only visible to the creator of the link).
Functions:
This object can be returned by 2 functions.
.. currentmodule:: pyrogram.raw.functions
.. autosummary::
:nosignatures:
account.CreateBusinessChatLink
account.EditBusinessChatLink
"""
__slots__: List[str] = ["link", "message", "views", "entities", "title"]
ID = 0xb4ae666f
QUALNAME = "types.BusinessChatLink"
def __init__(self, *, link: str, message: str, views: int, entities: Optional[List["raw.base.MessageEntity"]] = None, title: Optional[str] = None) -> None:
self.link = link # string
self.message = message # string
self.views = views # int
self.entities = entities # flags.0?Vector<MessageEntity>
self.title = title # flags.1?string
@staticmethod
def read(b: BytesIO, *args: Any) -> "BusinessChatLink":
flags = Int.read(b)
link = String.read(b)
message = String.read(b)
entities = TLObject.read(b) if flags & (1 << 0) else []
title = String.read(b) if flags & (1 << 1) else None
views = Int.read(b)
return BusinessChatLink(link=link, message=message, views=views, entities=entities, title=title)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 0) if self.entities else 0
flags |= (1 << 1) if self.title is not None else 0
b.write(Int(flags))
b.write(String(self.link))
b.write(String(self.message))
if self.entities:
b.write(Vector(self.entities))
if self.title is not None:
b.write(String(self.title))
b.write(Int(self.views))
return b.getvalue()