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

it.auties.whatsapp.model.button.template.hsm.HighlyStructuredFourRowTemplateSimpleBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.button.template.hsm;

public class HighlyStructuredFourRowTemplateSimpleBuilder {
    private it.auties.whatsapp.model.button.template.hsm.HighlyStructuredFourRowTemplateTitle title;
    private it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredMessage content;
    private it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredMessage footer;
    private java.util.List buttons;

    public HighlyStructuredFourRowTemplateSimpleBuilder() {
    }

    public HighlyStructuredFourRowTemplateSimpleBuilder title(it.auties.whatsapp.model.button.template.hsm.HighlyStructuredFourRowTemplateTitle title) {
        this.title = title;
        return this;
    }

    public HighlyStructuredFourRowTemplateSimpleBuilder content(it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredMessage content) {
        this.content = content;
        return this;
    }

    public HighlyStructuredFourRowTemplateSimpleBuilder footer(it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredMessage footer) {
        this.footer = footer;
        return this;
    }

    public HighlyStructuredFourRowTemplateSimpleBuilder buttons(java.util.List buttons) {
        this.buttons = buttons;
        return this;
    }

    public it.auties.whatsapp.model.button.template.hsm.HighlyStructuredFourRowTemplate build() {
        return it.auties.whatsapp.model.button.template.hsm.HighlyStructuredFourRowTemplate.simpleBuilder(title, content, footer, buttons);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy