Interface PollOption

This object contains information about one answer option in a poll.

interface PollOption {
    text: string;
    text_entities?: MessageEntity[];
    voter_count: number;
}

Properties

text: string

Option text, 1-100 characters

text_entities?: MessageEntity[]

Special entities that appear in the option text. Currently, only custom emoji entities are allowed in poll option texts

voter_count: number

Number of users that voted for this option