it.auties.whatsapp.model.button.template.hsm.HighlyStructuredURLButton Maven / Gradle / Ivy
package it.auties.whatsapp.model.button.template.hsm;
import it.auties.protobuf.annotation.ProtobufMessage;
import it.auties.protobuf.annotation.ProtobufProperty;
import it.auties.protobuf.model.ProtobufType;
import it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredMessage;
/**
* A model class that represents an url button
*/
@ProtobufMessage(name = "TemplateButton.URLButton")
public record HighlyStructuredURLButton(
@ProtobufProperty(index = 1, type = ProtobufType.OBJECT)
HighlyStructuredMessage text,
@ProtobufProperty(index = 2, type = ProtobufType.OBJECT)
HighlyStructuredMessage url
) implements HighlyStructuredButton {
@Override
public Type buttonType() {
return Type.URL;
}
}