Repository URL to install this package:
|
Version:
2.1.15 ▾
|
# 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! #
# # # # # # # # # # # # # # # # # # # # # # # #
class SetInlineBotResults(TLObject): # type: ignore
"""Telegram API function.
Details:
- Layer: ``176``
- ID: ``BB12A419``
Parameters:
query_id (``int`` ``64-bit``):
N/A
results (List of :obj:`InputBotInlineResult <pyrogram.raw.base.InputBotInlineResult>`):
N/A
cache_time (``int`` ``32-bit``):
N/A
gallery (``bool``, *optional*):
N/A
private (``bool``, *optional*):
N/A
next_offset (``str``, *optional*):
N/A
switch_pm (:obj:`InlineBotSwitchPM <pyrogram.raw.base.InlineBotSwitchPM>`, *optional*):
N/A
switch_webview (:obj:`InlineBotWebView <pyrogram.raw.base.InlineBotWebView>`, *optional*):
N/A
Returns:
``bool``
"""
__slots__: List[str] = ["query_id", "results", "cache_time", "gallery", "private", "next_offset", "switch_pm", "switch_webview"]
ID = 0xbb12a419
QUALNAME = "functions.messages.SetInlineBotResults"
def __init__(self, *, query_id: int, results: List["raw.base.InputBotInlineResult"], cache_time: int, gallery: Optional[bool] = None, private: Optional[bool] = None, next_offset: Optional[str] = None, switch_pm: "raw.base.InlineBotSwitchPM" = None, switch_webview: "raw.base.InlineBotWebView" = None) -> None:
self.query_id = query_id # long
self.results = results # Vector<InputBotInlineResult>
self.cache_time = cache_time # int
self.gallery = gallery # flags.0?true
self.private = private # flags.1?true
self.next_offset = next_offset # flags.2?string
self.switch_pm = switch_pm # flags.3?InlineBotSwitchPM
self.switch_webview = switch_webview # flags.4?InlineBotWebView
@staticmethod
def read(b: BytesIO, *args: Any) -> "SetInlineBotResults":
flags = Int.read(b)
gallery = True if flags & (1 << 0) else False
private = True if flags & (1 << 1) else False
query_id = Long.read(b)
results = TLObject.read(b)
cache_time = Int.read(b)
next_offset = String.read(b) if flags & (1 << 2) else None
switch_pm = TLObject.read(b) if flags & (1 << 3) else None
switch_webview = TLObject.read(b) if flags & (1 << 4) else None
return SetInlineBotResults(query_id=query_id, results=results, cache_time=cache_time, gallery=gallery, private=private, next_offset=next_offset, switch_pm=switch_pm, switch_webview=switch_webview)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 0) if self.gallery else 0
flags |= (1 << 1) if self.private else 0
flags |= (1 << 2) if self.next_offset is not None else 0
flags |= (1 << 3) if self.switch_pm is not None else 0
flags |= (1 << 4) if self.switch_webview is not None else 0
b.write(Int(flags))
b.write(Long(self.query_id))
b.write(Vector(self.results))
b.write(Int(self.cache_time))
if self.next_offset is not None:
b.write(String(self.next_offset))
if self.switch_pm is not None:
b.write(self.switch_pm.write())
if self.switch_webview is not None:
b.write(self.switch_webview.write())
return b.getvalue()