net.optionfactory.whatsapp.dto.templates.FooterComponent Maven / Gradle / Ivy
package net.optionfactory.whatsapp.dto.templates;
import com.fasterxml.jackson.annotation.JsonInclude;
import net.optionfactory.whatsapp.dto.templates.type.ComponentType;
/**
* The type Footer component.
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class FooterComponent extends Component {
/**
* Instantiates a new Footer component.
*/
public FooterComponent() {
super(ComponentType.FOOTER);
}
}