it.auties.whatsapp.model.sync.SyncActionMessage Maven / Gradle / Ivy
package it.auties.whatsapp.model.sync;
import it.auties.protobuf.annotation.ProtobufMessage;
import it.auties.protobuf.annotation.ProtobufProperty;
import it.auties.whatsapp.model.message.model.ChatMessageKey;
import static it.auties.protobuf.model.ProtobufType.INT64;
import static it.auties.protobuf.model.ProtobufType.OBJECT;
@ProtobufMessage(name = "SyncActionMessage")
public record SyncActionMessage(@ProtobufProperty(index = 1, type = OBJECT) ChatMessageKey key,
@ProtobufProperty(index = 2, type = INT64) Long timestamp) {
}