Source code for pyrogram.raw.types.my_boost
# 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 MyBoost(TLObject): # type: ignore
"""Contains information about a single `boost slot » <https://core.telegram.org/api/boost>`_.
Constructor of :obj:`~pyrogram.raw.base.MyBoost`.
Details:
- Layer: ``229``
- ID: ``C448415C``
Parameters:
slot (``int`` ``32-bit``):
`Boost slot ID » <https://core.telegram.org/api/boost>`_
date (``int`` ``32-bit``):
When (unixtime) we started boosting the ``peer``, ``0`` otherwise.
expires (``int`` ``32-bit``):
Indicates the (unixtime) expiration date of the boost in ``peer`` ( ``0`` if ``peer`` is not set).
peer (:obj:`Peer <pyrogram.raw.base.Peer>`, *optional*):
If set, indicates this slot is currently occupied, i.e. we are `boosting <https://core.telegram.org/api/boost>`_ this peer. Note that we can assign multiple boost slots to the same peer.
cooldown_until_date (``int`` ``32-bit``, *optional*):
If ``peer`` is set, indicates the (unixtime) date after which this boost can be reassigned to another channel.
"""
__slots__: List[str] = ["slot", "date", "expires", "peer", "cooldown_until_date"]
ID = 0xc448415c
QUALNAME = "types.MyBoost"
def __init__(self, *, slot: int, date: int, expires: int, peer: "raw.base.Peer" = None, cooldown_until_date: Optional[int] = None) -> None:
self.slot = slot # int
self.date = date # int
self.expires = expires # int
self.peer = peer # flags.0?Peer
self.cooldown_until_date = cooldown_until_date # flags.1?int
@staticmethod
def read(b: BytesIO, *args: Any) -> "MyBoost":
flags = Int.read(b)
slot = Int.read(b)
peer = TLObject.read(b) if flags & (1 << 0) else None
date = Int.read(b)
expires = Int.read(b)
cooldown_until_date = Int.read(b) if flags & (1 << 1) else None
return MyBoost(slot=slot, date=date, expires=expires, peer=peer, cooldown_until_date=cooldown_until_date)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 0) if self.peer is not None else 0
flags |= (1 << 1) if self.cooldown_until_date is not None else 0
b.write(Int(flags))
b.write(Int(self.slot))
if self.peer is not None:
b.write(self.peer.write())
b.write(Int(self.date))
b.write(Int(self.expires))
if self.cooldown_until_date is not None:
b.write(Int(self.cooldown_until_date))
return b.getvalue()