All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.optionfactory.whatsapp.dto.webhook.Reaction Maven / Gradle / Ivy

package net.optionfactory.whatsapp.dto.webhook;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * The type Reaction.
 *
 * @param emoji     The emoji used for the reaction.
 * @param messageId Specifies the wamid of the message received that contained the reaction.
 */
public record Reaction(

        @JsonProperty("emoji") String emoji,

        @JsonProperty("message_id") String messageId

) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy