object.proto 830 B

123456789101112131415161718192021222324
  1. package int64support;
  2. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  3. option go_package = "int64support";
  4. option (gogoproto.benchgen_all) = true;
  5. option (gogoproto.enum_stringer_all) = true;
  6. option (gogoproto.equal_all) = true;
  7. option (gogoproto.goproto_enum_prefix_all) = false;
  8. option (gogoproto.goproto_enum_stringer_all) = false;
  9. option (gogoproto.goproto_stringer_all) = false;
  10. option (gogoproto.goproto_unrecognized_all) = false;
  11. option (gogoproto.gostring_all) = true;
  12. option (gogoproto.marshaler_all) = true;
  13. option (gogoproto.populate_all) = true;
  14. option (gogoproto.sizer_all) = true;
  15. option (gogoproto.stringer_all) = true;
  16. option (gogoproto.testgen_all) = true;
  17. option (gogoproto.unmarshaler_all) = true;
  18. option (gogoproto.verbose_equal_all) = true;
  19. message Object {
  20. optional int64 optional_number = 1;
  21. }