any_test.proto 566 B

123456789101112131415161718192021
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. //
  4. // Use of this source code is governed by a BSD-style
  5. // license that can be found in the LICENSE file or at
  6. // https://developers.google.com/open-source/licenses/bsd
  7. syntax = "proto3";
  8. package protobuf_unittest;
  9. import "google/protobuf/any.proto";
  10. option java_outer_classname = "TestAnyProto";
  11. message TestAny {
  12. int32 int32_value = 1;
  13. google.protobuf.Any any_value = 2;
  14. repeated google.protobuf.Any repeated_any_value = 3;
  15. string text = 4;
  16. }