Source code for pyrogram.raw.types.star_gift_collection

#  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 StarGiftCollection(TLObject): # type: ignore """Represents a `star gift collection ยป <https://core.telegram.org/api/gifts#gift-collections>`_. Constructor of :obj:`~pyrogram.raw.base.StarGiftCollection`. Details: - Layer: ``229`` - ID: ``9D6B13B0`` Parameters: collection_id (``int`` ``32-bit``): The ID of the collection. title (``str``): Title of the collection. gifts_count (``int`` ``32-bit``): Number of gifts in the collection. hash (``int`` ``64-bit``): Field to use **instead of ``collection_id``** when generating the hash to pass to `payments.getStarGiftCollections <https://core.telegram.org/method/payments.getStarGiftCollections>`_. icon (:obj:`Document <pyrogram.raw.base.Document>`, *optional*): Optional icon for the collection, taken from the first gift in the collection. Functions: This object can be returned by 2 functions. .. currentmodule:: pyrogram.raw.functions .. autosummary:: :nosignatures: payments.CreateStarGiftCollection payments.UpdateStarGiftCollection """ __slots__: List[str] = ["collection_id", "title", "gifts_count", "hash", "icon"] ID = 0x9d6b13b0 QUALNAME = "types.StarGiftCollection" def __init__(self, *, collection_id: int, title: str, gifts_count: int, hash: int, icon: "raw.base.Document" = None) -> None: self.collection_id = collection_id # int self.title = title # string self.gifts_count = gifts_count # int self.hash = hash # long self.icon = icon # flags.0?Document @staticmethod def read(b: BytesIO, *args: Any) -> "StarGiftCollection": flags = Int.read(b) collection_id = Int.read(b) title = String.read(b) icon = TLObject.read(b) if flags & (1 << 0) else None gifts_count = Int.read(b) hash = Long.read(b) return StarGiftCollection(collection_id=collection_id, title=title, gifts_count=gifts_count, hash=hash, icon=icon) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 0) if self.icon is not None else 0 b.write(Int(flags)) b.write(Int(self.collection_id)) b.write(String(self.title)) if self.icon is not None: b.write(self.icon.write()) b.write(Int(self.gifts_count)) b.write(Long(self.hash)) return b.getvalue()