status-go/protocol/protobuf/enums.proto

23 lines
367 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package protobuf;
enum MessageType {
UNKNOWN_MESSAGE_TYPE = 0;
ONE_TO_ONE = 1;
PUBLIC_GROUP = 2;
PRIVATE_GROUP = 3;
// Only local
SYSTEM_MESSAGE_PRIVATE_GROUP = 4;
2020-09-29 12:38:52 +00:00
}
enum ImageType {
UNKNOWN_IMAGE_TYPE = 0;
// Raster image files is payload data that can be read as a raster image
2020-09-29 12:38:52 +00:00
PNG = 1;
JPEG = 2;
WEBP = 3;
GIF = 4;
}