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

it.auties.whatsapp.model.message.standard.PollCreationMessageSimpleBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.message.standard;

public class PollCreationMessageSimpleBuilder {
    private java.lang.String title;
    private java.util.List selectableOptions;

    public PollCreationMessageSimpleBuilder() {
    }

    public PollCreationMessageSimpleBuilder title(java.lang.String title) {
        this.title = title;
        return this;
    }

    public PollCreationMessageSimpleBuilder selectableOptions(java.util.List selectableOptions) {
        this.selectableOptions = selectableOptions;
        return this;
    }

    public it.auties.whatsapp.model.message.standard.PollCreationMessage build() {
        return it.auties.whatsapp.model.message.standard.PollCreationMessage.simpleBuilder(title, selectableOptions);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy