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

Parameters

Name Type Description
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 GroupCallParticipantVideoObj constructor
obj := &tg.GroupCallParticipantVideoObj{
    Endpoint: "Hello, World!",
    SourceGroups: []tg.GroupCallParticipantVideoSourceGroup{&tg.GroupCallParticipantVideoSourceGroup{}},

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