phone.JoinGroupCallPresentation
- class pyrogram.raw.functions.phone.JoinGroupCallPresentation
Start screen sharing in a call
- Details:
Layer:
223ID:
CBEA6BC4
- Parameters:
call (
InputGroupCall) – The group callparams (
DataJSON) – WebRTC parameters
- Returns:
TL Schema
phone.joinGroupCallPresentation#cbea6bc4
call:InputGroupCall
params:DataJSON
= Updates
Parameter Tree
JoinGroupCallPresentation
├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int└── params →
DataJSON└──
DataJSON└── data →
stringExample
await app.invoke(
JoinGroupCallPresentation(
call=InputGroupCall(
id=0,
access_hash=0
),
params=DataJSON(data="text"),
)
)