github.com/gogo/protobuf@v1.3.2/test/required/requiredexample.proto (about)

     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  
    29  syntax = "proto2";
    30  package required;
    31  
    32  import "github.com/gogo/protobuf/gogoproto/gogo.proto";
    33  
    34  option (gogoproto.marshaler_all) = true;
    35  option (gogoproto.sizer_all) = true;
    36  option (gogoproto.unmarshaler_all) = true;
    37  option (gogoproto.populate_all) = true;
    38  
    39  message RequiredExample {
    40      required string theRequiredString = 1;
    41      optional string theOptionalString = 2;
    42      repeated string theRepeatedStrings = 3;
    43  }
    44  
    45  message NidOptNative {
    46      required double Field1 = 1 [(gogoproto.nullable) = false];
    47      required float Field2 = 2 [(gogoproto.nullable) = false];
    48      required int32 Field3 = 3 [(gogoproto.nullable) = false];
    49      required int64 Field4 = 4 [(gogoproto.nullable) = false];
    50      required uint32 Field5 = 5 [(gogoproto.nullable) = false];
    51      required uint64 Field6 = 6 [(gogoproto.nullable) = false];
    52      required sint32 Field7 = 7 [(gogoproto.nullable) = false];
    53      required sint64 Field8 = 8 [(gogoproto.nullable) = false];
    54      required fixed32 Field9 = 9 [(gogoproto.nullable) = false];
    55      required sfixed32 Field10 = 10 [(gogoproto.nullable) = false];
    56      required fixed64 Field11 = 11 [(gogoproto.nullable) = false];
    57      required sfixed64 Field12 = 12 [(gogoproto.nullable) = false];
    58      required bool Field13 = 13 [(gogoproto.nullable) = false];
    59      required string Field14 = 14 [(gogoproto.nullable) = false];
    60      required bytes Field15 = 15 [(gogoproto.nullable) = false];
    61  }
    62  
    63  message NinOptNative {
    64      required double Field1 = 1;
    65      required float Field2 = 2;
    66      required int32 Field3 = 3;
    67      required int64 Field4 = 4;
    68      required uint32 Field5 = 5;
    69      required uint64 Field6 = 6;
    70      required sint32 Field7 = 7;
    71      required sint64 Field8 = 8;
    72      required fixed32 Field9 = 9;
    73      required sfixed32 Field10 = 10;
    74      required fixed64 Field11 = 11;
    75      required sfixed64 Field12 = 12;
    76      required bool Field13 = 13;
    77      required string Field14 = 14;
    78      required bytes Field15 = 15;
    79  }
    80  
    81  message NestedNinOptNative {
    82      repeated NinOptNative NestedNinOpts = 1;
    83  }