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

com.replyyes.facebook.messenger.bean.InboundPayload 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.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

import lombok.Data;

/**
 * A {@link Callback} may potentially have a payload. This payload contains metadata specific to the
 * Messenger bot. It can be set in a previous @{link OutboundMessage} inside a @{link QuickReply} or app
 * configuration using the Getting Started button or static menu.
 */
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(Include.NON_NULL)
public class InboundPayload {
    /**
     * Custom data that will be sent back via webhook.
     */
    private String payload;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy