summaryrefslogtreecommitdiffstats
path: root/test/protobuf_lang_files/well_know_types/google/protobuf/any.proto
diff options
context:
space:
mode:
Diffstat (limited to 'test/protobuf_lang_files/well_know_types/google/protobuf/any.proto')
-rw-r--r--test/protobuf_lang_files/well_know_types/google/protobuf/any.proto22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/protobuf_lang_files/well_know_types/google/protobuf/any.proto b/test/protobuf_lang_files/well_know_types/google/protobuf/any.proto
new file mode 100644
index 0000000..8ff870d
--- /dev/null
+++ b/test/protobuf_lang_files/well_know_types/google/protobuf/any.proto
@@ -0,0 +1,22 @@
+// This file is from https://github.com/protocolbuffers/protobuf/blob/3.14.x/src/google/protobuf/any.proto
+// To reduce the file size, some comments have been removed.
+
+syntax = "proto3";
+
+package google.protobuf;
+
+option csharp_namespace = "Google.Protobuf.WellKnownTypes";
+option go_package = "google.golang.org/protobuf/types/known/anypb";
+option java_package = "com.google.protobuf";
+option java_outer_classname = "AnyProto";
+option java_multiple_files = true;
+option objc_class_prefix = "GPB";
+
+message Any {
+ // A URL/resource name that uniquely identifies the type of the serialized
+ // protocol buffer message.
+ string type_url = 1;
+
+ // Must be a valid serialized protocol buffer of the above specified type.
+ bytes value = 2;
+}