Source code for pyrogram.raw.types.chat_participant_admin

#  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 ChatParticipantAdmin(TLObject): # type: ignore """`Basic group <https://core.telegram.org/api/channel#basic-groups>`_ admin (not usable by supergroups). Constructor of :obj:`~pyrogram.raw.base.ChatParticipant`. Details: - Layer: ``229`` - ID: ``360D5D2`` Parameters: user_id (``int`` ``64-bit``): ID of a group member that is admin inviter_id (``int`` ``64-bit``): ID of the user that added the member to the group date (``int`` ``32-bit``): Date when the user was added rank (``str``, *optional*): The participant's `tag ยป <https://core.telegram.org/api/rank>`_. """ __slots__: List[str] = ["user_id", "inviter_id", "date", "rank"] ID = 0x360d5d2 QUALNAME = "types.ChatParticipantAdmin" def __init__(self, *, user_id: int, inviter_id: int, date: int, rank: Optional[str] = None) -> None: self.user_id = user_id # long self.inviter_id = inviter_id # long self.date = date # int self.rank = rank # flags.0?string @staticmethod def read(b: BytesIO, *args: Any) -> "ChatParticipantAdmin": flags = Int.read(b) user_id = Long.read(b) inviter_id = Long.read(b) date = Int.read(b) rank = String.read(b) if flags & (1 << 0) else None return ChatParticipantAdmin(user_id=user_id, inviter_id=inviter_id, date=date, rank=rank) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 0) if self.rank is not None else 0 b.write(Int(flags)) b.write(Long(self.user_id)) b.write(Long(self.inviter_id)) b.write(Int(self.date)) if self.rank is not None: b.write(String(self.rank)) return b.getvalue()