Source code for pyrogram.raw.functions.bots.update_star_ref_program

#  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 UpdateStarRefProgram(TLObject): # type: ignore """Create, edit or delete the `affiliate program <https://core.telegram.org/api/bots/referrals>`_ of a bot we own .. include:: /_includes/usable-by/users.rst Details: - Layer: ``229`` - ID: ``778B5AB3`` Parameters: bot (:obj:`InputUser <pyrogram.raw.base.InputUser>`): The bot commission_permille (``int`` ``32-bit``): The permille commission rate: it indicates the share of Telegram Stars received by affiliates for every transaction made by users they referred inside of the bot. The minimum and maximum values for this parameter are contained in the `starref_min_commission_permille <https://core.telegram.org/api/config#starref-min-commission-permille>`_ and `starref_max_commission_permille <https://core.telegram.org/api/config#starref-max-commission-permille>`_ client configuration parameters. Can be ``0`` to terminate the affiliate program. Both the duration and the commission may only be raised after creation of the program: to lower them, the program must first be terminated and a new one created. duration_months (``int`` ``32-bit``, *optional*): Indicates the duration of the affiliate program; if not set, there is no expiration date. Returns: :obj:`StarRefProgram <pyrogram.raw.base.StarRefProgram>` """ __slots__: List[str] = ["bot", "commission_permille", "duration_months"] ID = 0x778b5ab3 QUALNAME = "functions.bots.UpdateStarRefProgram" def __init__(self, *, bot: "raw.base.InputUser", commission_permille: int, duration_months: Optional[int] = None) -> None: self.bot = bot # InputUser self.commission_permille = commission_permille # int self.duration_months = duration_months # flags.0?int @staticmethod def read(b: BytesIO, *args: Any) -> "UpdateStarRefProgram": flags = Int.read(b) bot = TLObject.read(b) commission_permille = Int.read(b) duration_months = Int.read(b) if flags & (1 << 0) else None return UpdateStarRefProgram(bot=bot, commission_permille=commission_permille, duration_months=duration_months) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 0) if self.duration_months is not None else 0 b.write(Int(flags)) b.write(self.bot.write()) b.write(Int(self.commission_permille)) if self.duration_months is not None: b.write(Int(self.duration_months)) return b.getvalue()