// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
syntax = "proto3"; | |
package nested_any; | |
import "google/protobuf/any.proto"; | |
message AnyMessage1 { | |
google.protobuf.Any any_field1 = 1; | |
string value = 2; | |
} | |
message AnyMessage2 { | |
google.protobuf.Any any_field2 = 1; | |
string value = 2; | |
} |