19 lines
231 B
Protocol Buffer
19 lines
231 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
import "google/protobuf/any.proto";
|
|
|
|
package messages.header;
|
|
|
|
// [START messages]
|
|
message Message {
|
|
uint32 topic = 1;
|
|
uint32 msgType = 2;
|
|
string senderUUID = 3;
|
|
|
|
google.protobuf.Any payload = 5;
|
|
|
|
}
|
|
|
|
|