phone.JoinGroupCallPresentation

class pyrogram.raw.functions.phone.JoinGroupCallPresentation

Start screen sharing in a call

Details:
  • Layer: 223

  • ID: CBEA6BC4

Parameters:
Returns:

Updates

TL Schema

phone.joinGroupCallPresentation#cbea6bc4
call:InputGroupCall
params:DataJSON

= Updates

Parameter Tree

JoinGroupCallPresentation
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── paramsDataJSON
└── DataJSON
└── datastring

Example

await app.invoke(
    JoinGroupCallPresentation(
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
        params=DataJSON(data="text"),
    )
)