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

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

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

public class InteractiveNativeFlowBuilder {
    private java.util.List buttons;
    private java.lang.String parameters;
    private int version;

    public InteractiveNativeFlowBuilder() {
        buttons = it.auties.protobuf.builtin.ProtobufRepeatedMixin.newList();
        parameters = null;
        version = 0;
    }

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

    public InteractiveNativeFlowBuilder parameters(java.lang.String parameters) {
        this.parameters = parameters;
        return this;
    }

    public InteractiveNativeFlowBuilder version(int version) {
        this.version = version;
        return this;
    }

    public it.auties.whatsapp.model.button.interactive.InteractiveNativeFlow build() {
        return new it.auties.whatsapp.model.button.interactive.InteractiveNativeFlow(buttons, parameters, version);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy