github.com/Goboolean/common@v0.0.0-20231130153141-cb54596b217d/api/protobuf/stockaggs.proto (about) 1 syntax = "proto3"; 2 3 package api; 4 5 option go_package = "github.com/Goboolean/common/deprecated/broker"; 6 7 message StockAggregate { 8 string event_type = 1; 9 float average = 2; 10 float min = 3; 11 float max = 4; 12 float start = 5; 13 float end = 6; 14 int64 start_time = 7; 15 int64 end_time = 8; 16 }