• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Protocol Buffers - Google's data interchange format
2// Copyright 2023 Google LLC.  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 hpb_unittest;
11
12import public "google/protobuf/compiler/hpb/tests/test_enum.proto";
13
14message ChildModel1 {
15  optional bool child_b1 = 44;
16  optional string child_str1 = 56;
17}
18
19message ChildModel3 {
20  string sub_key = 1;
21  bool bool1 = 2;
22  int32 i32 = 3;
23  optional string opt_str = 4;
24  optional bool opt_bool = 5;
25  optional int32 opt_i32 = 6;
26}
27