it.auties.whatsapp.model.sync.HistorySyncNotification 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.sync;
import com.fasterxml.jackson.annotation.JsonCreator;
import it.auties.protobuf.base.ProtobufMessage;
import it.auties.protobuf.base.ProtobufName;
import it.auties.protobuf.base.ProtobufProperty;
import it.auties.whatsapp.model.media.AttachmentProvider;
import it.auties.whatsapp.model.media.AttachmentType;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.Getter;
import lombok.experimental.Accessors;
import lombok.extern.jackson.Jacksonized;
import java.util.Arrays;
import static it.auties.protobuf.base.ProtobufType.*;
@AllArgsConstructor
@Data
@Builder
@Jacksonized
@Accessors(fluent = true)
public final class HistorySyncNotification implements ProtobufMessage, AttachmentProvider {
@ProtobufProperty(index = 1, type = BYTES)
private byte[] mediaSha256;
@ProtobufProperty(index = 2, type = UINT64)
private long mediaSize;
@ProtobufProperty(index = 3, type = BYTES)
private byte[] mediaKey;
@ProtobufProperty(index = 4, type = BYTES)
private byte[] mediaEncryptedSha256;
@ProtobufProperty(index = 5, type = STRING)
private String mediaDirectPath;
@ProtobufProperty(index = 6, type = MESSAGE, implementation = Type.class)
private Type syncType;
@ProtobufProperty(index = 7, type = UINT32)
private Integer chunkOrder;
@ProtobufProperty(index = 8, type = STRING)
private String originalMessageId;
@ProtobufProperty(index = 9, name = "progress", type = UINT32)
private Integer progress;
@ProtobufProperty(index = 10, name = "oldestMsgInChunkTimestampSec", type = INT64)
private Long oldestMsgInChunkTimestampSec;
@Override
public String mediaUrl() {
return null;
}
@Override
public AttachmentProvider mediaUrl(String mediaUrl) {
return this;
}
@Override
public AttachmentType attachmentType() {
return AttachmentType.HISTORY_SYNC;
}
@AllArgsConstructor
@Accessors(fluent = true)
@ProtobufName("HistorySyncType")
public enum Type implements ProtobufMessage{
INITIAL_BOOTSTRAP(0),
INITIAL_STATUS_V3(1),
FULL(2),
RECENT(3),
PUSH_NAME(4);
@Getter
private final int index;
@JsonCreator
public static Type of(int index) {
return Arrays.stream(values()).filter(entry -> entry.index() == index).findFirst().orElse(null);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy