wrappers.proto 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. // 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. // Wrappers for primitive (non-message) types. These types are useful
  31. // for embedding primitives in the `google.protobuf.Any` type and for places
  32. // where we need to distinguish between the absence of a primitive
  33. // typed field and its default value.
  34. syntax = "proto3";
  35. package google.protobuf;
  36. option csharp_namespace = "Google.Protobuf.WellKnownTypes";
  37. option cc_enable_arenas = true;
  38. option go_package = "github.com/golang/protobuf/ptypes/wrappers";
  39. option java_package = "com.google.protobuf";
  40. option java_outer_classname = "WrappersProto";
  41. option java_multiple_files = true;
  42. option java_generate_equals_and_hash = true;
  43. option objc_class_prefix = "GPB";
  44. // Wrapper message for `double`.
  45. //
  46. // The JSON representation for `DoubleValue` is JSON number.
  47. message DoubleValue {
  48. // The double value.
  49. double value = 1;
  50. }
  51. // Wrapper message for `float`.
  52. //
  53. // The JSON representation for `FloatValue` is JSON number.
  54. message FloatValue {
  55. // The float value.
  56. float value = 1;
  57. }
  58. // Wrapper message for `int64`.
  59. //
  60. // The JSON representation for `Int64Value` is JSON string.
  61. message Int64Value {
  62. // The int64 value.
  63. int64 value = 1;
  64. }
  65. // Wrapper message for `uint64`.
  66. //
  67. // The JSON representation for `UInt64Value` is JSON string.
  68. message UInt64Value {
  69. // The uint64 value.
  70. uint64 value = 1;
  71. }
  72. // Wrapper message for `int32`.
  73. //
  74. // The JSON representation for `Int32Value` is JSON number.
  75. message Int32Value {
  76. // The int32 value.
  77. int32 value = 1;
  78. }
  79. // Wrapper message for `uint32`.
  80. //
  81. // The JSON representation for `UInt32Value` is JSON number.
  82. message UInt32Value {
  83. // The uint32 value.
  84. uint32 value = 1;
  85. }
  86. // Wrapper message for `bool`.
  87. //
  88. // The JSON representation for `BoolValue` is JSON `true` and `false`.
  89. message BoolValue {
  90. // The bool value.
  91. bool value = 1;
  92. }
  93. // Wrapper message for `string`.
  94. //
  95. // The JSON representation for `StringValue` is JSON string.
  96. message StringValue {
  97. // The string value.
  98. string value = 1;
  99. }
  100. // Wrapper message for `bytes`.
  101. //
  102. // The JSON representation for `BytesValue` is JSON string.
  103. message BytesValue {
  104. // The bytes value.
  105. bytes value = 1;
  106. }