key-types.proto 315 B

123456789101112131415
  1. syntax = "proto3";
  2. package test;
  3. import "google/protobuf/wrappers.proto";
  4. message MyKey {
  5. string myKeyF1 = 1;
  6. google.protobuf.UInt64Value uint_64_wrapper = 2;
  7. }
  8. message MySpecificTopicKey {
  9. string special_field1 = 1;
  10. string special_field2 = 2;
  11. google.protobuf.FloatValue float_wrapper = 3;
  12. }