We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c53972 + 6cec65a commit 225db97Copy full SHA for 225db97
src/main/java/com/whatsapp/api/domain/webhook/Reaction.java
@@ -6,13 +6,17 @@
6
* The type Reaction.
7
*
8
* @param emoji The emoji used for the reaction.
9
- * @param messageId Specifies the wamid of the message received that contained the reaction.
+ * @param messageId Specifies the wamid of the message received that contained
10
+ * the reaction.
11
+ * @param from Specifies the id of the sender who reacted for the message.
12
*/
13
public record Reaction(
14
15
@JsonProperty("emoji") String emoji,
16
- @JsonProperty("message_id") String messageId
17
+ @JsonProperty("message_id") String messageId,
18
+
19
+ @JsonProperty("from") String from
20
21
) {
22
}
0 commit comments