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

it.auties.whatsapp.model.info.NotificationMessageInfoBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.info;

public class NotificationMessageInfoBuilder {
    private it.auties.whatsapp.model.message.model.ChatMessageKey key;
    private it.auties.whatsapp.model.message.model.MessageContainer message;
    private long messageTimestampSeconds;
    private java.util.Optional participant;

    public NotificationMessageInfoBuilder() {
        key = null;
        message = null;
        messageTimestampSeconds = 0l;
        participant = it.auties.protobuf.builtin.ProtobufOptionalMixin.newOptional();
    }

    public NotificationMessageInfoBuilder key(it.auties.whatsapp.model.message.model.ChatMessageKey key) {
        this.key = key;
        return this;
    }

    public NotificationMessageInfoBuilder message(it.auties.whatsapp.model.message.model.MessageContainer message) {
        this.message = message;
        return this;
    }

    public NotificationMessageInfoBuilder messageTimestampSeconds(long messageTimestampSeconds) {
        this.messageTimestampSeconds = messageTimestampSeconds;
        return this;
    }

    public NotificationMessageInfoBuilder participant(java.lang.String participant) {
        this.participant = it.auties.protobuf.builtin.ProtobufOptionalMixin.ofOptional(participant);
        return this;
    }

    public it.auties.whatsapp.model.info.NotificationMessageInfo build() {
        return new it.auties.whatsapp.model.info.NotificationMessageInfo(key, message, messageTimestampSeconds, participant);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy