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

it.auties.whatsapp.model.message.button.ButtonsMessageHeaderText Maven / Gradle / Ivy

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

import it.auties.protobuf.annotation.ProtobufDeserializer;
import it.auties.protobuf.annotation.ProtobufSerializer;

public record ButtonsMessageHeaderText(String text) implements ButtonsMessageHeader {
    @ProtobufDeserializer
    public static ButtonsMessageHeaderText of(String text) {
        return new ButtonsMessageHeaderText(text);
    }

    @ProtobufSerializer
    public String text() {
        return text;
    }

    @Override
    public Type buttonHeaderType() {
        return Type.TEXT;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy