ChannelAdminLogEventActionParticipantUnmute

class pyrogram.raw.types.ChannelAdminLogEventActionParticipantUnmute

A group call participant was unmuted

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 227

  • ID: E64429C0

Parameters:

participant (GroupCallParticipant) – The participant that was unmuted

TL Schema

channelAdminLogEventActionParticipantUnmute#e64429c0
participant:GroupCallParticipant

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionParticipantUnmute
└── participant → GroupCallParticipant
├── muted → true (optional)
├── left → true (optional)
├── can_self_unmute → true (optional)
├── just_joined → true (optional)
├── versioned → true (optional)
├── min → true (optional)
├── muted_by_you → true (optional)
├── volume_by_admin → true (optional)
├── is_self → true (optional)
├── video_joined → true (optional)
├── peer → Peer
│ ├── PeerUser
│ │ └── user_id → long
│ ├── PeerChat
│ │ └── chat_id → long
│ └── PeerChannel
│ └── channel_id → long
├── date → int
├── active_date → int (optional)
├── source → int
├── volume → int (optional)
├── about → string (optional)
├── raise_hand_rating → long (optional)
├── video → GroupCallParticipantVideo (optional)
│ ├── paused → true (optional)
│ ├── endpoint → string
│ ├── source_groups → Vector < GroupCallParticipantVideoSourceGroup >
│ └── audio_source → int (optional)
├── presentation → GroupCallParticipantVideo (optional)
│ ├── paused → true (optional)
│ ├── endpoint → string
│ ├── source_groups → Vector < GroupCallParticipantVideoSourceGroup >
│ └── audio_source → int (optional)
└── paid_stars_total → long (optional)

Example

ChannelAdminLogEventActionParticipantUnmute(
    participant=GroupCallParticipant(
        peer=PeerUser(user_id=0),
        date=0,
        source=0
    ),
)