Layer 220
GroupCallParticipantVideo
Info about a video stream
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 |
Returns
GroupCallParticipantVideoGogram Example
// Creating GroupCallParticipantVideo constructor obj := &tg.GroupCallParticipantVideo{ Endpoint: "...", SourceGroups: []tg.GroupCallParticipantVideoSourceGroup{&tg.GroupCallParticipantVideoSourceGroup{}}, // Optional fields: // Paused: true, // AudioSource: 0, }