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

com.replyyes.facebook.messenger.bean.MessageResponse Maven / Gradle / Ivy

There is a newer version: 0.1.0
Show newest version
package com.replyyes.facebook.messenger.bean;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

import lombok.Data;

/**
 * Represents the response payload that is returned from the Facebook API whenever a message
 * is sent to a user
 *
 * https://developers.facebook.com/docs/messenger-platform/send-api-reference#response
 */
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class MessageResponse {
    @JsonProperty("recipient_id")
    private String recipientId;

    @JsonProperty("message_id")
    private String messageId;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy