discord-jda / JDA

Java wrapper for the popular chat & VOIP service: Discord https://discord.com
Apache License 2.0
4.26k stars 730 forks source link

Poll support #2649

Closed MinnDevelopment closed 4 months ago

MinnDevelopment commented 4 months ago

Pull Request Etiquette

Changes

Closes Issue: #2646

Description

Adds support for message polls.

Reference: https://github.com/discord/discord-api-docs/pull/6746

Feature Additions

Internal Additions

Test Additions

Example: Sending poll

channel.sendMessage("Hello guys! Check my poll:")
  .setPoll(
    MessagePollData.builder("Which programming language is better?")
      .addAnswer("Java", Emoji.fromFormatted("<:java:1006323566314274856>"))
      .addAnswer("Kotlin", Emoji.fromFormatted("<:kotlin:295940257797636096>"))
      .build())
  .queue()