Source code for pyrogram.raw.types.stars_topup_option
# 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 StarsTopupOption(TLObject): # type: ignore
"""`Telegram Stars topup option <https://core.telegram.org/api/stars>`_.
Constructor of :obj:`~pyrogram.raw.base.StarsTopupOption`.
Details:
- Layer: ``229``
- ID: ``BD915C0``
Parameters:
stars (``int`` ``64-bit``):
Amount of Telegram stars.
currency (``str``):
Three-letter ISO 4217 `currency <https://core.telegram.org/bots/payments#supported-currencies>`_ code
amount (``int`` ``64-bit``):
Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of ``US$ 1.45`` pass ``amount = 145``. See the exp parameter in `currencies.json <https://core.telegram.org/bots/payments/currencies.json>`_, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).
extended (``bool``, *optional*):
If set, the option must only be shown in the full list of topup options.
store_product (``str``, *optional*):
Identifier of the store product associated with the option, official apps only.
Functions:
This object can be returned by 1 function.
.. currentmodule:: pyrogram.raw.functions
.. autosummary::
:nosignatures:
payments.GetStarsTopupOptions
"""
__slots__: List[str] = ["stars", "currency", "amount", "extended", "store_product"]
ID = 0xbd915c0
QUALNAME = "types.StarsTopupOption"
def __init__(self, *, stars: int, currency: str, amount: int, extended: Optional[bool] = None, store_product: Optional[str] = None) -> None:
self.stars = stars # long
self.currency = currency # string
self.amount = amount # long
self.extended = extended # flags.1?true
self.store_product = store_product # flags.0?string
@staticmethod
def read(b: BytesIO, *args: Any) -> "StarsTopupOption":
flags = Int.read(b)
extended = True if flags & (1 << 1) else False
stars = Long.read(b)
store_product = String.read(b) if flags & (1 << 0) else None
currency = String.read(b)
amount = Long.read(b)
return StarsTopupOption(stars=stars, currency=currency, amount=amount, extended=extended, store_product=store_product)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 1) if self.extended else 0
flags |= (1 << 0) if self.store_product is not None else 0
b.write(Int(flags))
b.write(Long(self.stars))
if self.store_product is not None:
b.write(String(self.store_product))
b.write(String(self.currency))
b.write(Long(self.amount))
return b.getvalue()