phone.GetGroupCallStars

class pyrogram.raw.functions.phone.GetGroupCallStars

{schema}

Details:
  • Layer: 223

  • ID: 6F636302

Parameters:

call (InputGroupCall)

Returns:

phone.GroupCallStars

TL Schema

phone.getGroupCallStars#6f636302
call:InputGroupCall

= phone.GroupCallStars

Parameter Tree

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

Example

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