GetPollVotesResponse
List of individual votes in the poll
votes object[]required
Array of votes
Array [
memberIdstringrequired
Membership ID of the member who voted
Example:
ADK5NyCqIKoptionintegerrequired
Index of the selected answer option
]
totalVotersintegerrequired
Total number of voters
Example:
42allResultCountinteger<int64>required
Total number of vote records (for pagination)
Example:
100prevPageTokenstring
Previous page token
Example:
BDK5NyCqI4nextPageTokenstring
Next page token
Example:
BDK5NyCqI4GetPollVotesResponse
{
"votes": [
{
"memberId": "ADK5NyCqIK",
"option": 0
}
],
"totalVoters": 42,
"allResultCount": 100,
"prevPageToken": "BDK5NyCqI4",
"nextPageToken": "BDK5NyCqI4"
}