• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
8syntax = "proto3";
9
10package objc.protobuf.tests.any;
11
12import "google/protobuf/any.proto";
13
14option objc_class_prefix = "Any";
15
16message TestMessage {
17  int32 int32_value = 1;
18  google.protobuf.Any any_value = 2;
19  repeated google.protobuf.Any repeated_any_value = 3;
20  string text = 4;
21}
22