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

net.optionfactory.whatsapp.dto.templates.QuickReplyButton Maven / Gradle / Ivy

package net.optionfactory.whatsapp.dto.templates;

import com.fasterxml.jackson.annotation.JsonInclude;
import net.optionfactory.whatsapp.dto.templates.type.ButtonType;

/**
 * The type Quick reply button.
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public class QuickReplyButton extends Button {
    /**
     * Instantiates a new Quick reply button.
     */
    protected QuickReplyButton() {
        super(ButtonType.QUICK_REPLY);
    }

    /**
     * Instantiates a new Quick reply button.
     *
     * @param text the text
     */
    public QuickReplyButton(String text) {
        super(ButtonType.QUICK_REPLY, text);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy