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);
}
}