
it.auties.whatsapp.model.info.NotificationMessageInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whatsappweb4j Show documentation
Show all versions of whatsappweb4j Show documentation
Standalone fully-featured Whatsapp Web API for Java and Kotlin
package it.auties.whatsapp.model.info;
import it.auties.protobuf.base.ProtobufMessage;
import it.auties.protobuf.base.ProtobufProperty;
import it.auties.whatsapp.model.message.model.MessageContainer;
import it.auties.whatsapp.model.message.model.MessageKey;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.experimental.Accessors;
import lombok.extern.jackson.Jacksonized;
import static it.auties.protobuf.base.ProtobufType.*;
@AllArgsConstructor
@Data
@Builder
@Jacksonized
@Accessors(fluent = true)
public final class NotificationMessageInfo implements Info, ProtobufMessage {
@ProtobufProperty(index = 1, type = MESSAGE, implementation = MessageKey.class)
private MessageKey key;
@ProtobufProperty(index = 2, type = MESSAGE, implementation = MessageContainer.class)
private MessageContainer message;
@ProtobufProperty(index = 3, type = UINT64)
private long messageTimestamp;
@ProtobufProperty(index = 4, type = STRING)
private String participant;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy