phone.LeaveGroupCallPresentation

class pyrogram.raw.functions.phone.LeaveGroupCallPresentation

Stop screen sharing in a group call

Details:
  • Layer: 227

  • ID: 1C50D144

Parameters:

call (InputGroupCall) – The group call

Returns:

Updates

TL Schema

phone.leaveGroupCallPresentation#1c50d144
call:InputGroupCall

= Updates

Parameter Tree

LeaveGroupCallPresentation
└── call → InputGroupCall
├── InputGroupCall
│ ├── id → long
│ └── access_hash → long
│ └── slug → string
└── msg_id → int

Example

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