Layer 220
constructor
groupCallParticipantVideo#67753ac8 flags:# paused:flags.0?true endpoint:string source_groups:Vector<GroupCallParticipantVideoSourceGroup> audio_source:flags.1?int = GroupCallParticipantVideo;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
Paused flags.0?true Whether the stream is currently paused
Endpoint string Endpoint
SourceGroups Vector<GroupCallParticipantVideoSourceGroup> Source groups
AudioSource flags.1?int Audio source ID

Gogram Example

// Creating GroupCallParticipantVideo constructor
obj := &tg.GroupCallParticipantVideo{
    Endpoint: "...",
    SourceGroups: []tg.GroupCallParticipantVideoSourceGroup{&tg.GroupCallParticipantVideoSourceGroup{}},

    // Optional fields:
    // Paused: true,
    // AudioSource: 0,
}