it.auties.whatsapp.model.sync.ExitCode Maven / Gradle / Ivy
package it.auties.whatsapp.model.sync;
import it.auties.protobuf.annotation.ProtobufMessage;
import it.auties.protobuf.annotation.ProtobufProperty;
import static it.auties.protobuf.model.ProtobufType.STRING;
import static it.auties.protobuf.model.ProtobufType.UINT64;
@ProtobufMessage(name = "ExitCode")
public record ExitCode(@ProtobufProperty(index = 1, type = UINT64) long code,
@ProtobufProperty(index = 2, type = STRING) String text) {
}