1syntax = "proto3";
2
3package protos_generator.test;
4
5import public "protos_generator/tests/test_enum.proto";
6
7message ChildModel1 {
8  optional bool child_b1 = 44;
9  optional string child_str1 = 56;
10}
11
12message ChildModel3 {
13  string sub_key = 1;
14  bool bool1 = 2;
15  int32 i32 = 3;
16  optional string opt_str = 4;
17  optional bool opt_bool = 5;
18  optional int32 opt_i32 = 6;
19}
20