it.auties.whatsapp.model.signal.auth.DeviceIdentity Maven / Gradle / Ivy
package it.auties.whatsapp.model.signal.auth;
import it.auties.protobuf.annotation.ProtobufMessage;
import it.auties.protobuf.annotation.ProtobufProperty;
import it.auties.protobuf.model.ProtobufType;
@ProtobufMessage(name = "ADVDeviceIdentity")
public record DeviceIdentity(@ProtobufProperty(index = 1, type = ProtobufType.UINT32)
int rawId,
@ProtobufProperty(index = 2, type = ProtobufType.UINT64)
long timestamp,
@ProtobufProperty(index = 3, type = ProtobufType.UINT32)
int keyIndex) {
}