phone.GetGroupCallStars

class pyrogram.raw.functions.phone.GetGroupCallStars

{schema}

Details:
  • Layer: 227

  • ID: 6F636302

Parameters:

call (InputGroupCall)

Returns:

phone.GroupCallStars

TL Schema

phone.getGroupCallStars#6f636302
call:InputGroupCall

= phone.GroupCallStars

Parameter Tree

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

Example

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