phone.LeaveGroupCallPresentation

class pyrogram.raw.functions.phone.LeaveGroupCallPresentation

Stop screen sharing in a group call

Details:
  • Layer: 223

  • ID: 1C50D144

Parameters:

call (InputGroupCall) – The group call

Returns:

Updates

TL Schema

phone.leaveGroupCallPresentation#1c50d144
call:InputGroupCall

= Updates

Parameter Tree

LeaveGroupCallPresentation
└── callInputGroupCall
├── InputGroupCall
│ ├── idlong
│ └── access_hashlong
│ └── slugstring
└── msg_idint

Example

await app.invoke(
    LeaveGroupCallPresentation(
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
    )
)