Source code for pyrogram.raw.functions.payments.get_star_gift_auction_state
# 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 GetStarGiftAuctionState(TLObject): # type: ignore
"""Returns info about a `collectible gift auction » <https://core.telegram.org/api/auctions>`_; also subscribes the user to auction updates, see `here » <https://core.telegram.org/api/auctions>`_ for more info on the full flow.
.. include:: /_includes/usable-by/users.rst
Details:
- Layer: ``229``
- ID: ``5C9FF4D6``
Parameters:
auction (:obj:`InputStarGiftAuction <pyrogram.raw.base.InputStarGiftAuction>`):
Either the ID of the gift linked to the auction, or an `auction deep link slug » <https://core.telegram.org/api/links#auction-links>`_.
version (``int`` ``32-bit``):
Initially ``0``, then set to the returned `starGiftAuctionState <https://core.telegram.org/constructor/starGiftAuctionState>`_. ``version``, to avoid refetching results if they haven't changed.
Returns:
:obj:`payments.StarGiftAuctionState <pyrogram.raw.base.payments.StarGiftAuctionState>`
"""
__slots__: List[str] = ["auction", "version"]
ID = 0x5c9ff4d6
QUALNAME = "functions.payments.GetStarGiftAuctionState"
def __init__(self, *, auction: "raw.base.InputStarGiftAuction", version: int) -> None:
self.auction = auction # InputStarGiftAuction
self.version = version # int
@staticmethod
def read(b: BytesIO, *args: Any) -> "GetStarGiftAuctionState":
# No flags
auction = TLObject.read(b)
version = Int.read(b)
return GetStarGiftAuctionState(auction=auction, version=version)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
# No flags
b.write(self.auction.write())
b.write(Int(self.version))
return b.getvalue()