ChannelAdminLogEventActionParticipantVolume

class pyrogram.raw.types.ChannelAdminLogEventActionParticipantVolume

channelAdminLogEvent.user_id has set the volume of participant.peer to participant.volume

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 227

  • ID: 3E7F6847

Parameters:

participant (GroupCallParticipant) – The participant whose volume was changed

TL Schema

channelAdminLogEventActionParticipantVolume#3e7f6847
participant:GroupCallParticipant

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionParticipantVolume
└── 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

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