Source code for hydrogram.raw.functions.messages.search_stickers

#  Hydrogram - Telegram MTProto API Client Library for Python
#  Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
#  This file is part of Hydrogram.
#
#  Hydrogram 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.
#
#  Hydrogram 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 Hydrogram.  If not, see <http://www.gnu.org/licenses/>.

from io import BytesIO

from hydrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from hydrogram.raw.core import TLObject
from hydrogram 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 SearchStickers(TLObject): # type: ignore """Search for stickers using AI-powered keyword search Details: - Layer: ``223`` - ID: ``29B1C66A`` Parameters: q (``str``): The search term emoticon (``str``): Space-separated list of emojis to search for lang_code (List of ``str``): List of possible IETF language tags of the user's input language; may be empty if unknown offset (``int`` ``32-bit``): Offset for pagination limit (``int`` ``32-bit``): Maximum number of results to return, see pagination hash (``int`` ``64-bit``): Hash used for caching, for more info click here. The hash may be generated locally by using the ids of the returned or stored sticker documents. emojis (``bool``, *optional*): If set, returns custom emoji stickers Returns: :obj:`messages.FoundStickers <hydrogram.raw.base.messages.FoundStickers>` """ __slots__: List[str] = ["q", "emoticon", "lang_code", "offset", "limit", "hash", "emojis"] ID = 0x29b1c66a QUALNAME = "functions.messages.SearchStickers" def __init__(self, *, q: str, emoticon: str, lang_code: List[str], offset: int, limit: int, hash: int, emojis: Optional[bool] = None) -> None: self.q = q # string self.emoticon = emoticon # string self.lang_code = lang_code # Vector<string> self.offset = offset # int self.limit = limit # int self.hash = hash # long self.emojis = emojis # flags.0?true @staticmethod def read(b: BytesIO, *args: Any) -> "SearchStickers": flags = Int.read(b) emojis = True if flags & (1 << 0) else False q = String.read(b) emoticon = String.read(b) lang_code = TLObject.read(b, String) offset = Int.read(b) limit = Int.read(b) hash = Long.read(b) return SearchStickers(q=q, emoticon=emoticon, lang_code=lang_code, offset=offset, limit=limit, hash=hash, emojis=emojis) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 0) if self.emojis else 0 b.write(Int(flags)) b.write(String(self.q)) b.write(String(self.emoticon)) b.write(Vector(self.lang_code, String)) b.write(Int(self.offset)) b.write(Int(self.limit)) b.write(Long(self.hash)) return b.getvalue()