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

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

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

public class HighlyStructuredCallButtonBuilder {
    private it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredMessage text;
    private it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredMessage phoneNumber;

    public HighlyStructuredCallButtonBuilder() {
        text = null;
        phoneNumber = null;
    }

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

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

    public it.auties.whatsapp.model.button.template.hsm.HighlyStructuredCallButton build() {
        return new it.auties.whatsapp.model.button.template.hsm.HighlyStructuredCallButton(text, phoneNumber);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy