2
0

requiredexample.proto 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. // Protocol Buffers for Go with Gadgets
  2. //
  3. // Copyright (c) 2013, The GoGo Authors. All rights reserved.
  4. // http://github.com/gogo/protobuf
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions are
  8. // met:
  9. //
  10. // * Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. // * Redistributions in binary form must reproduce the above
  13. // copyright notice, this list of conditions and the following disclaimer
  14. // in the documentation and/or other materials provided with the
  15. // distribution.
  16. //
  17. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. syntax = "proto2";
  29. package required;
  30. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  31. option (gogoproto.marshaler_all) = true;
  32. option (gogoproto.sizer_all) = true;
  33. option (gogoproto.unmarshaler_all) = true;
  34. option (gogoproto.populate_all) = true;
  35. message RequiredExample {
  36. required string theRequiredString = 1;
  37. optional string theOptionalString = 2;
  38. repeated string theRepeatedStrings = 3;
  39. }
  40. message NidOptNative {
  41. required double Field1 = 1 [(gogoproto.nullable) = false];
  42. required float Field2 = 2 [(gogoproto.nullable) = false];
  43. required int32 Field3 = 3 [(gogoproto.nullable) = false];
  44. required int64 Field4 = 4 [(gogoproto.nullable) = false];
  45. required uint32 Field5 = 5 [(gogoproto.nullable) = false];
  46. required uint64 Field6 = 6 [(gogoproto.nullable) = false];
  47. required sint32 Field7 = 7 [(gogoproto.nullable) = false];
  48. required sint64 Field8 = 8 [(gogoproto.nullable) = false];
  49. required fixed32 Field9 = 9 [(gogoproto.nullable) = false];
  50. required sfixed32 Field10 = 10 [(gogoproto.nullable) = false];
  51. required fixed64 Field11 = 11 [(gogoproto.nullable) = false];
  52. required sfixed64 Field12 = 12 [(gogoproto.nullable) = false];
  53. required bool Field13 = 13 [(gogoproto.nullable) = false];
  54. required string Field14 = 14 [(gogoproto.nullable) = false];
  55. required bytes Field15 = 15 [(gogoproto.nullable) = false];
  56. }
  57. message NinOptNative {
  58. required double Field1 = 1;
  59. required float Field2 = 2;
  60. required int32 Field3 = 3;
  61. required int64 Field4 = 4;
  62. required uint32 Field5 = 5;
  63. required uint64 Field6 = 6;
  64. required sint32 Field7 = 7;
  65. required sint64 Field8 = 8;
  66. required fixed32 Field9 = 9;
  67. required sfixed32 Field10 = 10;
  68. required fixed64 Field11 = 11;
  69. required sfixed64 Field12 = 12;
  70. required bool Field13 = 13;
  71. required string Field14 = 14;
  72. required bytes Field15 = 15;
  73. }
  74. message NestedNinOptNative {
  75. repeated NinOptNative NestedNinOpts = 1;
  76. }