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

it.auties.whatsapp.model.button.interactive.InteractiveBodyBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.button.interactive;

public class InteractiveBodyBuilder {
    private java.lang.String content;

    public InteractiveBodyBuilder() {
        content = null;
    }

    public InteractiveBodyBuilder content(java.lang.String content) {
        this.content = content;
        return this;
    }

    public it.auties.whatsapp.model.button.interactive.InteractiveBody build() {
        return new it.auties.whatsapp.model.button.interactive.InteractiveBody(content);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy