Source code for pyrogram.raw.types.channel_participant
# 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 ChannelParticipant(TLObject): # type: ignore
"""Channel/supergroup participant
Constructor of :obj:`~pyrogram.raw.base.ChannelParticipant`.
Details:
- Layer: ``229``
- ID: ``1BD54456``
Parameters:
user_id (``int`` ``64-bit``):
Participant user ID
date (``int`` ``32-bit``):
Date joined
subscription_until_date (``int`` ``32-bit``, *optional*):
If set, contains the expiration date of the current `Telegram Star subscription period » <https://core.telegram.org/api/stars#star-subscriptions>`_ for the specified participant.
rank (``str``, *optional*):
The participant's `tag » <https://core.telegram.org/api/rank>`_.
"""
__slots__: List[str] = ["user_id", "date", "subscription_until_date", "rank"]
ID = 0x1bd54456
QUALNAME = "types.ChannelParticipant"
def __init__(self, *, user_id: int, date: int, subscription_until_date: Optional[int] = None, rank: Optional[str] = None) -> None:
self.user_id = user_id # long
self.date = date # int
self.subscription_until_date = subscription_until_date # flags.0?int
self.rank = rank # flags.2?string
@staticmethod
def read(b: BytesIO, *args: Any) -> "ChannelParticipant":
flags = Int.read(b)
user_id = Long.read(b)
date = Int.read(b)
subscription_until_date = Int.read(b) if flags & (1 << 0) else None
rank = String.read(b) if flags & (1 << 2) else None
return ChannelParticipant(user_id=user_id, date=date, subscription_until_date=subscription_until_date, rank=rank)
def write(self, *args) -> bytes:
b = BytesIO()
b.write(Int(self.ID, False))
flags = 0
flags |= (1 << 0) if self.subscription_until_date is not None else 0
flags |= (1 << 2) if self.rank is not None else 0
b.write(Int(flags))
b.write(Long(self.user_id))
b.write(Int(self.date))
if self.subscription_until_date is not None:
b.write(Int(self.subscription_until_date))
if self.rank is not None:
b.write(String(self.rank))
return b.getvalue()