this syntax might be better (?)
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
fbc0ebb96b
commit
8813c6090f
36
events.proto
36
events.proto
|
@ -1,30 +1,30 @@
|
||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
package witProtobuf;
|
package witProtobuf;
|
||||||
|
|
||||||
enum EventType {
|
|
||||||
ADD = 0;
|
|
||||||
DELETE = 1;
|
|
||||||
POWERON = 2;
|
|
||||||
POWEROFF = 3;
|
|
||||||
HYBERNATE = 4;
|
|
||||||
MIGRATE = 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
message Response {
|
|
||||||
EventType type = 1;
|
|
||||||
int32 id = 2;
|
|
||||||
string name = 3;
|
|
||||||
string error = 4;
|
|
||||||
repeated string snippets = 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
message Event {
|
message Event {
|
||||||
EventType type = 1;
|
EventType type = 1;
|
||||||
int32 id = 2;
|
int32 id = 2;
|
||||||
repeated Response result = 3;
|
repeated Response results = 3;
|
||||||
string name = 4;
|
string name = 4;
|
||||||
|
|
||||||
string comment = 5;
|
string comment = 5;
|
||||||
string email = 6;
|
string email = 6;
|
||||||
repeated int64 reps = 7;
|
repeated int64 reps = 7;
|
||||||
|
|
||||||
|
enum EventType {
|
||||||
|
ADD = 0;
|
||||||
|
DELETE = 1;
|
||||||
|
POWERON = 2;
|
||||||
|
POWEROFF = 3;
|
||||||
|
HYBERNATE = 4;
|
||||||
|
MIGRATE = 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
message Response {
|
||||||
|
EventType type = 1;
|
||||||
|
int32 id = 2;
|
||||||
|
string name = 3;
|
||||||
|
string error = 4;
|
||||||
|
repeated string snippets = 5;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue