messages.GetPollVotes

class pyrogram.raw.functions.messages.GetPollVotes

Get poll results for non-anonymous polls

Details:
  • Layer: 223

  • ID: B86E380E

Parameters:
  • peer (InputPeer) – Chat where the poll was sent

  • id (int 32-bit) – Message ID

  • limit (int 32-bit) – Number of results to return

  • option (bytes, optional) – Get only results for the specified poll option

  • offset (str, optional) – Offset for results, taken from the next_offset field of messages.votesList, initially an empty string. Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in messages.votesList if it is empty, to avoid an infinite loop.

Returns:

messages.VotesList

TL Schema

messages.getPollVotes#b86e380e
flags:#
peer:InputPeer
id:int
option:flags.0?bytes
offset:flags.1?string
limit:int

= messages.VotesList

Parameter Tree

GetPollVotes
├── peerInputPeer
│ ├── InputPeerEmpty
│ ├── InputPeerSelf
│ ├── InputPeerChat
│ │ └── chat_idlong
│ ├── InputPeerUser
│ │ ├── user_idlong
│ │ └── access_hashlong
│ ├── InputPeerChannel
│ │ ├── channel_idlong
│ │ └── access_hashlong
│ │ ├── peerInputPeer
│ │ │ ├── InputPeerEmpty
│ │ │ ├── InputPeerSelf
│ │ │ ├── InputPeerChat
│ │ │ ├── InputPeerUser
│ │ │ ├── InputPeerChannel
│ │ │ ├── InputPeerUserFromMessage
│ │ │ └── InputPeerChannelFromMessage
│ │ ├── msg_idint
│ │ └── user_idlong
│ ├── peerInputPeer
│ │ ├── InputPeerEmpty
│ │ ├── InputPeerSelf
│ │ ├── InputPeerChat
│ │ ├── InputPeerUser
│ │ ├── InputPeerChannel
│ │ ├── InputPeerUserFromMessage
│ │ └── InputPeerChannelFromMessage
│ ├── msg_idint
│ └── channel_idlong
├── idint
├── optionbytes (optional)
├── offsetstring (optional)
└── limitint

Example

await app.invoke(
    GetPollVotes(
        peer=await app.resolve_peer(chat_id),
        id=0,
        option=b"data",
        offset="text",
        limit=0,
    )
)