phone.GroupCallStreamChannels

class pyrogram.raw.base.phone.GroupCallStreamChannels

Info about RTMP streams in a group call or livestream

Constructors:

This base type has 1 constructor available.

phone.GroupCallStreamChannels

Info about RTMP streams in a group call or livestream

Functions:

This object can be returned by 1 function.

phone.GetGroupCallStreamChannels

Get info about RTMP streams in a group call or livestream.

TL Schema

phone.groupCallStreamChannels#d0e482b2
channels:Vector<GroupCallStreamChannel>

= phone.GroupCallStreamChannels

Parameter Tree

GroupCallStreamChannels
└── channelsVector < GroupCallStreamChannel >
├── channelint
├── scaleint
└── last_timestamp_mslong

Example

GroupCallStreamChannels(
    channels=[
            GroupCallStreamChannel(
                channel=0,
                scale=0,
                last_timestamp_ms=0
            )
        ],
)