github.com/Goboolean/common@v0.0.0-20231130153141-cb54596b217d/api/kafka/model.v1/event.proto (about)

     1  syntax = "proto3";
     2  
     3  package model.v1;
     4  
     5  option go_package = "github.com/Goboolean/common/api/model.v1";
     6  
     7  
     8  message Event {
     9      string event_uuid = 1;
    10      string event_type = 2;
    11      string stock_id   = 3;
    12      string model_name = 4;
    13  }
    14  
    15  message EventMinimal {
    16      string event_uuid = 1;
    17      string event_type = 2;
    18  }