removePollVote

fun removePollVote(messageId: String, pollId: String, voteId: String): Call<Vote>

Remove a vote for a poll in a message.

Parameters

messageId

The message id where the poll is.

pollId

The poll id.

voteId

The id of the vote to remove.


fun removePollVote(messageId: String, pollId: String, vote: Vote): Call<Vote>

Deprecated

Use removePollVote(messageId: String, pollId: String, voteId: String) instead.

Remove a vote for a poll in a message.

Return

Executable async Call responsible for removing a vote.

Parameters

messageId

The message id where the poll is.

pollId

The poll id.

vote

The vote to remove.