blob: 4828ad9ae9391a0134c1df6a9e3a6d0012bfbc5c [file] [log] [blame]
Feng Xiao96e379f2015-02-09 12:21:49 +08001// Protocol Buffers - Google's data interchange format
2// Copyright 2008 Google Inc. All rights reserved.
3// https://developers.google.com/protocol-buffers/
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
8//
9// * Redistributions of source code must retain the above copyright
10// notice, this list of conditions and the following disclaimer.
11// * Redistributions in binary form must reproduce the above
12// copyright notice, this list of conditions and the following disclaimer
13// in the documentation and/or other materials provided with the
14// distribution.
15// * Neither the name of Google Inc. nor the names of its
16// contributors may be used to endorse or promote products derived from
17// this software without specific prior written permission.
18//
19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31// Wrappers for primitive (non-message) types. These types are useful
32// for embedding primitives in the `google.protobuf.Any` type and for places
33// where we need to distinguish between the absence of a primitive
34// typed field and its default value.
35
36syntax = "proto3";
37
38package google.protobuf;
39
Jon Skeet739d13d2015-07-14 14:26:31 +010040option csharp_namespace = "Google.Protobuf.WellKnownTypes";
Feng Xiaoe841bac2015-12-11 17:09:20 -080041option cc_enable_arenas = true;
Jisi Liu3b3c8ab2016-03-30 11:39:59 -070042option go_package = "github.com/golang/protobuf/ptypes/wrappers";
Feng Xiaoe841bac2015-12-11 17:09:20 -080043option java_package = "com.google.protobuf";
44option java_outer_classname = "WrappersProto";
45option java_multiple_files = true;
46option java_generate_equals_and_hash = true;
Thomas Van Lenten30650d82015-05-01 08:57:16 -040047option objc_class_prefix = "GPB";
Feng Xiao96e379f2015-02-09 12:21:49 +080048
Jisi Liub0f66112015-08-21 11:18:45 -070049// Wrapper message for `double`.
50//
51// The JSON representation for `DoubleValue` is JSON number.
Feng Xiao96e379f2015-02-09 12:21:49 +080052message DoubleValue {
53 // The double value.
54 double value = 1;
55}
56
Jisi Liub0f66112015-08-21 11:18:45 -070057// Wrapper message for `float`.
58//
59// The JSON representation for `FloatValue` is JSON number.
Feng Xiao96e379f2015-02-09 12:21:49 +080060message FloatValue {
61 // The float value.
62 float value = 1;
63}
64
Jisi Liub0f66112015-08-21 11:18:45 -070065// Wrapper message for `int64`.
66//
67// The JSON representation for `Int64Value` is JSON string.
Feng Xiao96e379f2015-02-09 12:21:49 +080068message Int64Value {
69 // The int64 value.
70 int64 value = 1;
71}
72
Jisi Liub0f66112015-08-21 11:18:45 -070073// Wrapper message for `uint64`.
74//
75// The JSON representation for `UInt64Value` is JSON string.
Feng Xiao96e379f2015-02-09 12:21:49 +080076message UInt64Value {
77 // The uint64 value.
78 uint64 value = 1;
79}
80
Jisi Liub0f66112015-08-21 11:18:45 -070081// Wrapper message for `int32`.
82//
83// The JSON representation for `Int32Value` is JSON number.
Feng Xiao96e379f2015-02-09 12:21:49 +080084message Int32Value {
85 // The int32 value.
86 int32 value = 1;
87}
88
Jisi Liub0f66112015-08-21 11:18:45 -070089// Wrapper message for `uint32`.
90//
91// The JSON representation for `UInt32Value` is JSON number.
Feng Xiao96e379f2015-02-09 12:21:49 +080092message UInt32Value {
93 // The uint32 value.
94 uint32 value = 1;
95}
96
Jisi Liub0f66112015-08-21 11:18:45 -070097// Wrapper message for `bool`.
98//
99// The JSON representation for `BoolValue` is JSON `true` and `false`.
Feng Xiao96e379f2015-02-09 12:21:49 +0800100message BoolValue {
101 // The bool value.
102 bool value = 1;
103}
104
Jisi Liub0f66112015-08-21 11:18:45 -0700105// Wrapper message for `string`.
106//
107// The JSON representation for `StringValue` is JSON string.
Feng Xiao96e379f2015-02-09 12:21:49 +0800108message StringValue {
109 // The string value.
110 string value = 1;
111}
112
Jisi Liub0f66112015-08-21 11:18:45 -0700113// Wrapper message for `bytes`.
114//
115// The JSON representation for `BytesValue` is JSON string.
Feng Xiao96e379f2015-02-09 12:21:49 +0800116message BytesValue {
117 // The bytes value.
118 bytes value = 1;
119}