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

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

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

import java.util.List;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import lombok.Data;

/**
 * All callbacks from the Facebook Messenger platform have a common structure. This
 * class represents that structure at its highest level. It contains one or more {@link Entry}
 * instances, each of which has the potential to contain one or more {@link Messaging} instances.
 *
 * https://developers.facebook.com/docs/messenger-platform/webhook-reference#format
 */
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class Callback {
    private String object;
    private List entry;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy