github.com/Goboolean/common@v0.0.0-20231130153141-cb54596b217d/api/protobuf/event.proto (about) 1 syntax = "proto3"; 2 3 package api; 4 5 option go_package = "github.com/Goboolean/common/pkg/kafka"; 6 7 message SimEvent { 8 int64 event_id = 1; 9 int64 user_id = 2; 10 int64 status = 3; 11 int64 model_id = 4; 12 string stock = 5; 13 repeated int64 parameter = 6; 14 } 15 16 message RealEvent { 17 int64 event_id = 1; 18 int64 status = 2; 19 int64 model_id = 3; 20 string stock = 4; 21 } 22 23 message PreSimEvent { 24 int64 event_id = 1; 25 int64 user_id = 2; 26 int64 status = 3; 27 int64 model_id = 4; 28 }