mirror of
https://github.com/status-im/status-go.git
synced 2025-01-20 11:40:29 +00:00
026fcb09a4
* feat: user status * fix: sql filename and null pointer exceptions * fix: lint * refactor: remove StatusUpdate from database.go * fix: adding missing status updates persistence methods * fix: code review * Update version and bindata, and lint * fix: failing test * fix: code review * fix update statement
19 lines
248 B
Protocol Buffer
19 lines
248 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package protobuf;
|
|
|
|
message StatusUpdate {
|
|
|
|
uint64 clock = 1;
|
|
|
|
StatusType status_type = 2;
|
|
|
|
string custom_text = 3;
|
|
|
|
enum StatusType {
|
|
UNKNOWN_STATUS_TYPE = 0;
|
|
ONLINE = 1;
|
|
DO_NOT_DISTURB = 2;
|
|
};
|
|
|
|
} |