Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sticker_ids, flags for Message/Webhook send request data #190

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add sticker_ids message send request data
  • Loading branch information
Doc94 committed Aug 10, 2024
commit 5c8678844c617a33f5800825c9e5a0f14415ba8a
Original file line number Diff line number Diff line change
@@ -3,7 +3,9 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import discord4j.discordjson.Id;
import discord4j.discordjson.possible.Possible;
import java.util.List;
import org.immutables.value.Value;

@Value.Immutable
@@ -21,4 +23,7 @@ static ImmutableMessageCreateRequest.Builder builder() {

@Deprecated
Possible<EmbedData> embed();

@JsonProperty("sticker_ids")
Possible<List<Id>> stickerIds();
}