More data on subscriptions

This commit is contained in:
2022-10-17 05:00:35 +02:00
parent 3699479c5e
commit 4a26fc791c
7 changed files with 199 additions and 50 deletions

View File

@@ -19,6 +19,12 @@ message Event {
string starttime = 11;
string endtime = 12;
int64 max_subscribers = 13;
repeated string subscribers = 14;
repeated Subscription subscriptions = 14;
google.protobuf.Struct data = 15;
}
message Subscription {
string subscriber = 20;
repeated string tags = 21;
google.protobuf.Struct data = 22;
}