Source code for pyrogram.raw.types.saved_star_gift

#  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 SavedStarGift(TLObject): # type: ignore """Represents a `gift <https://core.telegram.org/api/gifts>`_ owned by a peer. Constructor of :obj:`~pyrogram.raw.base.SavedStarGift`. Details: - Layer: ``229`` - ID: ``41DF43FC`` Parameters: date (``int`` ``32-bit``): Reception date of the gift. gift (:obj:`StarGift <pyrogram.raw.base.StarGift>`): The collectible gift. name_hidden (``bool``, *optional*): If set, the gift sender in ``from_id`` and the ``message`` are set only for the receiver of the gift. unsaved (``bool``, *optional*): If set, the gift is **not** pinned on the user's profile. refunded (``bool``, *optional*): This gift was upgraded to a `collectible gift » <https://core.telegram.org/api/gifts#collectible-gifts>`_ and then re-downgraded to a regular gift because a request to refund the payment related to the upgrade was made, and the money was returned. can_upgrade (``bool``, *optional*): Only set for non-collectible gifts, if they can be upgraded to a `collectible gift » <https://core.telegram.org/api/gifts#collectible-gifts>`_. pinned_to_top (``bool``, *optional*): Whether this gift is pinned on top of the user's profile page. upgrade_separate (``bool``, *optional*): If set, someone already `separately pre-paid <https://core.telegram.org/api/gifts#prepaying-for-someone-elses-upgrade>`_ for the upgrade of this gift. from_id (:obj:`Peer <pyrogram.raw.base.Peer>`, *optional*): Sender of the gift (unset for anonymous gifts). message (:obj:`TextWithEntities <pyrogram.raw.base.TextWithEntities>`, *optional*): Message attached to the gift. msg_id (``int`` ``32-bit``, *optional*): For gifts received by users, ID to use in `inputSavedStarGiftUser <https://core.telegram.org/constructor/inputSavedStarGiftUser>`_ constructors. saved_id (``int`` ``64-bit``, *optional*): For gifts received by channels, ID to use in `inputSavedStarGiftChat <https://core.telegram.org/constructor/inputSavedStarGiftChat>`_ constructors. convert_stars (``int`` ``64-bit``, *optional*): For non-collectible gifts, the receiver of this gift may convert it to this many Telegram Stars, instead of displaying it on their profile page. upgrade_stars (``int`` ``64-bit``, *optional*): **Only** for **pre-paid** non-collectible gifts, the number of Telegram Stars the sender has **already paid** to `convert the gift into a collectible gift » <https://core.telegram.org/api/gifts#collectible-gifts>`_ (this is different from the meaning of the flag in `messageActionStarGift <https://core.telegram.org/constructor/messageActionStarGift>`_, where it signals the upgrade price for not yet upgraded gifts). can_export_at (``int`` ``32-bit``, *optional*): If set, indicates that the current gift can't be `exported to the TON blockchain » <https://core.telegram.org/api/gifts#withdraw-a-collectible-gift-to-the-ton-blockchain>`_ yet: the owner will be able to export it at the specified unixtime. transfer_stars (``int`` ``64-bit``, *optional*): If set, indicates that the gift can be `transferred » <https://core.telegram.org/api/gifts#transferring-collectible-gifts>`_ to another user by paying the specified amount of stars. can_transfer_at (``int`` ``32-bit``, *optional*): If set, indicates that the current gift can't be `transferred » <https://core.telegram.org/api/gifts#transferring-collectible-gifts>`_ yet: the owner will be able to transfer it at the specified unixtime. can_resell_at (``int`` ``32-bit``, *optional*): If set, indicates that the current gift can't be `resold » <https://core.telegram.org/api/gifts#reselling-collectible-gifts>`_ yet: the owner will be able to put it up for sale at the specified unixtime. collection_id (List of ``int`` ``32-bit``, *optional*): IDs of the `collections » <https://core.telegram.org/api/gifts#gift-collections>`_ that this gift is a part of. prepaid_upgrade_hash (``str``, *optional*): `Hash to prepay for a gift upgrade separately » <https://core.telegram.org/api/gifts#prepaying-for-someone-elses-upgrade>`_. drop_original_details_stars (``int`` ``64-bit``, *optional*): If set, the `starGiftAttributeOriginalDetails <https://core.telegram.org/constructor/starGiftAttributeOriginalDetails>`_ attribute of this gift may be removed by paying the specified amount of stars, see `here » <https://core.telegram.org/api/gifts#dropping-the-original-details-of-an-upgraded-gift>`_ for the full flow. gift_num (``int`` ``32-bit``, *optional*): Collectible number assigned to the gift, if already known. can_craft_at (``int`` ``32-bit``, *optional*): If set, this gift can be used for `crafting » <https://core.telegram.org/api/gifts#crafting-collectible-gifts>`_ only starting from the specified unixtime. """ __slots__: List[str] = ["date", "gift", "name_hidden", "unsaved", "refunded", "can_upgrade", "pinned_to_top", "upgrade_separate", "from_id", "message", "msg_id", "saved_id", "convert_stars", "upgrade_stars", "can_export_at", "transfer_stars", "can_transfer_at", "can_resell_at", "collection_id", "prepaid_upgrade_hash", "drop_original_details_stars", "gift_num", "can_craft_at"] ID = 0x41df43fc QUALNAME = "types.SavedStarGift" def __init__(self, *, date: int, gift: "raw.base.StarGift", name_hidden: Optional[bool] = None, unsaved: Optional[bool] = None, refunded: Optional[bool] = None, can_upgrade: Optional[bool] = None, pinned_to_top: Optional[bool] = None, upgrade_separate: Optional[bool] = None, from_id: "raw.base.Peer" = None, message: "raw.base.TextWithEntities" = None, msg_id: Optional[int] = None, saved_id: Optional[int] = None, convert_stars: Optional[int] = None, upgrade_stars: Optional[int] = None, can_export_at: Optional[int] = None, transfer_stars: Optional[int] = None, can_transfer_at: Optional[int] = None, can_resell_at: Optional[int] = None, collection_id: Optional[List[int]] = None, prepaid_upgrade_hash: Optional[str] = None, drop_original_details_stars: Optional[int] = None, gift_num: Optional[int] = None, can_craft_at: Optional[int] = None) -> None: self.date = date # int self.gift = gift # StarGift self.name_hidden = name_hidden # flags.0?true self.unsaved = unsaved # flags.5?true self.refunded = refunded # flags.9?true self.can_upgrade = can_upgrade # flags.10?true self.pinned_to_top = pinned_to_top # flags.12?true self.upgrade_separate = upgrade_separate # flags.17?true self.from_id = from_id # flags.1?Peer self.message = message # flags.2?TextWithEntities self.msg_id = msg_id # flags.3?int self.saved_id = saved_id # flags.11?long self.convert_stars = convert_stars # flags.4?long self.upgrade_stars = upgrade_stars # flags.6?long self.can_export_at = can_export_at # flags.7?int self.transfer_stars = transfer_stars # flags.8?long self.can_transfer_at = can_transfer_at # flags.13?int self.can_resell_at = can_resell_at # flags.14?int self.collection_id = collection_id # flags.15?Vector<int> self.prepaid_upgrade_hash = prepaid_upgrade_hash # flags.16?string self.drop_original_details_stars = drop_original_details_stars # flags.18?long self.gift_num = gift_num # flags.19?int self.can_craft_at = can_craft_at # flags.20?int @staticmethod def read(b: BytesIO, *args: Any) -> "SavedStarGift": flags = Int.read(b) name_hidden = True if flags & (1 << 0) else False unsaved = True if flags & (1 << 5) else False refunded = True if flags & (1 << 9) else False can_upgrade = True if flags & (1 << 10) else False pinned_to_top = True if flags & (1 << 12) else False upgrade_separate = True if flags & (1 << 17) else False from_id = TLObject.read(b) if flags & (1 << 1) else None date = Int.read(b) gift = TLObject.read(b) message = TLObject.read(b) if flags & (1 << 2) else None msg_id = Int.read(b) if flags & (1 << 3) else None saved_id = Long.read(b) if flags & (1 << 11) else None convert_stars = Long.read(b) if flags & (1 << 4) else None upgrade_stars = Long.read(b) if flags & (1 << 6) else None can_export_at = Int.read(b) if flags & (1 << 7) else None transfer_stars = Long.read(b) if flags & (1 << 8) else None can_transfer_at = Int.read(b) if flags & (1 << 13) else None can_resell_at = Int.read(b) if flags & (1 << 14) else None collection_id = TLObject.read(b, Int) if flags & (1 << 15) else [] prepaid_upgrade_hash = String.read(b) if flags & (1 << 16) else None drop_original_details_stars = Long.read(b) if flags & (1 << 18) else None gift_num = Int.read(b) if flags & (1 << 19) else None can_craft_at = Int.read(b) if flags & (1 << 20) else None return SavedStarGift(date=date, gift=gift, name_hidden=name_hidden, unsaved=unsaved, refunded=refunded, can_upgrade=can_upgrade, pinned_to_top=pinned_to_top, upgrade_separate=upgrade_separate, from_id=from_id, message=message, msg_id=msg_id, saved_id=saved_id, convert_stars=convert_stars, upgrade_stars=upgrade_stars, can_export_at=can_export_at, transfer_stars=transfer_stars, can_transfer_at=can_transfer_at, can_resell_at=can_resell_at, collection_id=collection_id, prepaid_upgrade_hash=prepaid_upgrade_hash, drop_original_details_stars=drop_original_details_stars, gift_num=gift_num, can_craft_at=can_craft_at) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 0) if self.name_hidden else 0 flags |= (1 << 5) if self.unsaved else 0 flags |= (1 << 9) if self.refunded else 0 flags |= (1 << 10) if self.can_upgrade else 0 flags |= (1 << 12) if self.pinned_to_top else 0 flags |= (1 << 17) if self.upgrade_separate else 0 flags |= (1 << 1) if self.from_id is not None else 0 flags |= (1 << 2) if self.message is not None else 0 flags |= (1 << 3) if self.msg_id is not None else 0 flags |= (1 << 11) if self.saved_id is not None else 0 flags |= (1 << 4) if self.convert_stars is not None else 0 flags |= (1 << 6) if self.upgrade_stars is not None else 0 flags |= (1 << 7) if self.can_export_at is not None else 0 flags |= (1 << 8) if self.transfer_stars is not None else 0 flags |= (1 << 13) if self.can_transfer_at is not None else 0 flags |= (1 << 14) if self.can_resell_at is not None else 0 flags |= (1 << 15) if self.collection_id else 0 flags |= (1 << 16) if self.prepaid_upgrade_hash is not None else 0 flags |= (1 << 18) if self.drop_original_details_stars is not None else 0 flags |= (1 << 19) if self.gift_num is not None else 0 flags |= (1 << 20) if self.can_craft_at is not None else 0 b.write(Int(flags)) if self.from_id is not None: b.write(self.from_id.write()) b.write(Int(self.date)) b.write(self.gift.write()) if self.message is not None: b.write(self.message.write()) if self.msg_id is not None: b.write(Int(self.msg_id)) if self.saved_id is not None: b.write(Long(self.saved_id)) if self.convert_stars is not None: b.write(Long(self.convert_stars)) if self.upgrade_stars is not None: b.write(Long(self.upgrade_stars)) if self.can_export_at is not None: b.write(Int(self.can_export_at)) if self.transfer_stars is not None: b.write(Long(self.transfer_stars)) if self.can_transfer_at is not None: b.write(Int(self.can_transfer_at)) if self.can_resell_at is not None: b.write(Int(self.can_resell_at)) if self.collection_id: b.write(Vector(self.collection_id, Int)) if self.prepaid_upgrade_hash is not None: b.write(String(self.prepaid_upgrade_hash)) if self.drop_original_details_stars is not None: b.write(Long(self.drop_original_details_stars)) if self.gift_num is not None: b.write(Int(self.gift_num)) if self.can_craft_at is not None: b.write(Int(self.can_craft_at)) return b.getvalue()