aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/util/json_format_proto3.proto
diff options
context:
space:
mode:
Diffstat (limited to 'src/google/protobuf/util/json_format_proto3.proto')
-rw-r--r--src/google/protobuf/util/json_format_proto3.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/google/protobuf/util/json_format_proto3.proto b/src/google/protobuf/util/json_format_proto3.proto
index e8137677..a1e24c18 100644
--- a/src/google/protobuf/util/json_format_proto3.proto
+++ b/src/google/protobuf/util/json_format_proto3.proto
@@ -165,3 +165,12 @@ message TestListValue {
google.protobuf.ListValue value = 1;
repeated google.protobuf.ListValue repeated_value = 2;
}
+
+message TestBoolValue {
+ bool bool_value = 1;
+ map<bool, int32> bool_map = 2;
+}
+
+message TestCustomJsonName {
+ int32 value = 1 [json_name = "@value"];
+}