github.com/s7techlab/cckit@v0.10.5/state/mapping/testdata/schema/with_complex_id.proto (about)

     1  syntax = "proto3";
     2  
     3  package schema;
     4  option go_package = "github.com/s7techlab/cckit/state/mapping/testdata/schema";
     5  
     6  import "google/protobuf/timestamp.proto";
     7  
     8  message EntityWithComplexId {
     9      EntityComplexId id = 1;
    10      google.protobuf.Timestamp some_date = 2;
    11  }
    12  
    13  // EntityComplexId
    14  message EntityComplexId {
    15      repeated string id_part1 = 1;
    16      string id_part2 = 2;
    17      google.protobuf.Timestamp id_part3 = 3;
    18  }