Source code for pyrogram.raw.types.search_posts_flood

#  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 SearchPostsFlood(TLObject): # type: ignore """Indicates if the specified `global post search ยป <https://core.telegram.org/api/search#posts-tab>`_ requires payment. Constructor of :obj:`~pyrogram.raw.base.SearchPostsFlood`. Details: - Layer: ``229`` - ID: ``3E0B5B6A`` Parameters: total_daily (``int`` ``32-bit``): Total number of daily free search slots. remains (``int`` ``32-bit``): Remaining number of free search slots. stars_amount (``int`` ``64-bit``): The number of `Telegram Stars <https://core.telegram.org/api/stars>`_ to pay for each non-free search. query_is_free (``bool``, *optional*): The specified query is free (and it **will not use up free search slots** ). wait_till (``int`` ``32-bit``, *optional*): If there are no more search slots, specifies the unixtime when more search slots will be available. Functions: This object can be returned by 1 function. .. currentmodule:: pyrogram.raw.functions .. autosummary:: :nosignatures: channels.CheckSearchPostsFlood """ __slots__: List[str] = ["total_daily", "remains", "stars_amount", "query_is_free", "wait_till"] ID = 0x3e0b5b6a QUALNAME = "types.SearchPostsFlood" def __init__(self, *, total_daily: int, remains: int, stars_amount: int, query_is_free: Optional[bool] = None, wait_till: Optional[int] = None) -> None: self.total_daily = total_daily # int self.remains = remains # int self.stars_amount = stars_amount # long self.query_is_free = query_is_free # flags.0?true self.wait_till = wait_till # flags.1?int @staticmethod def read(b: BytesIO, *args: Any) -> "SearchPostsFlood": flags = Int.read(b) query_is_free = True if flags & (1 << 0) else False total_daily = Int.read(b) remains = Int.read(b) wait_till = Int.read(b) if flags & (1 << 1) else None stars_amount = Long.read(b) return SearchPostsFlood(total_daily=total_daily, remains=remains, stars_amount=stars_amount, query_is_free=query_is_free, wait_till=wait_till) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 0) if self.query_is_free else 0 flags |= (1 << 1) if self.wait_till is not None else 0 b.write(Int(flags)) b.write(Int(self.total_daily)) b.write(Int(self.remains)) if self.wait_till is not None: b.write(Int(self.wait_till)) b.write(Long(self.stars_amount)) return b.getvalue()