ChannelAdminLogEventActionParticipantVolume

class pyrogram.raw.types.ChannelAdminLogEventActionParticipantVolume

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

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 223

  • ID: 3E7F6847

Parameters:

participant (GroupCallParticipant) – The participant whose volume was changed

TL Schema

channelAdminLogEventActionParticipantVolume#3e7f6847
participant:GroupCallParticipant

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionParticipantVolume
└── participantGroupCallParticipant
├── mutedtrue (optional)
├── lefttrue (optional)
├── can_self_unmutetrue (optional)
├── just_joinedtrue (optional)
├── versionedtrue (optional)
├── mintrue (optional)
├── muted_by_youtrue (optional)
├── volume_by_admintrue (optional)
├── is_selftrue (optional)
├── video_joinedtrue (optional)
├── peerPeer
│ ├── PeerUser
│ │ └── user_idlong
│ ├── PeerChat
│ │ └── chat_idlong
│ └── PeerChannel
│ └── channel_idlong
├── dateint
├── active_dateint (optional)
├── sourceint
├── volumeint (optional)
├── aboutstring (optional)
├── raise_hand_ratinglong (optional)
├── videoGroupCallParticipantVideo (optional)
│ ├── pausedtrue (optional)
│ ├── endpointstring
│ ├── source_groupsVector < GroupCallParticipantVideoSourceGroup >
│ └── audio_sourceint (optional)
├── presentationGroupCallParticipantVideo (optional)
│ ├── pausedtrue (optional)
│ ├── endpointstring
│ ├── source_groupsVector < GroupCallParticipantVideoSourceGroup >
│ └── audio_sourceint (optional)
└── paid_stars_totallong (optional)

Example

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