@@ -5,31 +5,31 @@ import (
55)
66
77type ExamplepbABitOfEverything struct {
8- BoolValue bool `json:"bool_value,omitempty"`
9- DoubleValue float64 `json:"double_value,omitempty"`
10- EnumValue ExamplepbNumericEnum `json:"enum_value,omitempty"`
11- Fixed32Value int64 `json:"fixed32_value,omitempty"`
12- Fixed64Value string `json:"fixed64_value,omitempty"`
8+ SingleNested ABitOfEverythingNested `json:"single_nested,omitempty"`
9+ Uuid string `json:"uuid,omitempty"`
10+ Nested []ABitOfEverythingNested `json:"nested,omitempty"`
1311 FloatValue float32 `json:"float_value,omitempty"`
14- Int32Value int32 `json:"int32_value ,omitempty"`
12+ DoubleValue float64 `json:"double_value ,omitempty"`
1513 Int64Value string `json:"int64_value,omitempty"`
16- MapValue map [ string ] ExamplepbNumericEnum `json:"map_value ,omitempty"`
17- MappedNestedValue map [ string ] ABitOfEverythingNested `json:"mapped_nested_value ,omitempty"`
18- MappedStringValue map [ string ] string `json:"mapped_string_value ,omitempty"`
19- Nested [] ABitOfEverythingNested `json:"nested ,omitempty"`
20- NonConventionalNameValue string `json:"nonConventionalNameValue ,omitempty"`
21- OneofEmpty ProtobufEmpty `json:"oneof_empty ,omitempty"`
22- OneofString string `json:"oneof_string ,omitempty"`
23- RepeatedStringValue [] string `json:"repeated_string_value ,omitempty"`
14+ Uint64Value string `json:"uint64_value ,omitempty"`
15+ Int32Value int32 `json:"int32_value ,omitempty"`
16+ Fixed64Value string `json:"fixed64_value ,omitempty"`
17+ Fixed32Value int64 `json:"fixed32_value ,omitempty"`
18+ BoolValue bool `json:"bool_value ,omitempty"`
19+ StringValue string `json:"string_value ,omitempty"`
20+ Uint32Value int64 `json:"uint32_value ,omitempty"`
21+ EnumValue ExamplepbNumericEnum `json:"enum_value ,omitempty"`
2422 Sfixed32Value int32 `json:"sfixed32_value,omitempty"`
2523 Sfixed64Value string `json:"sfixed64_value,omitempty"`
26- SingleNested ABitOfEverythingNested `json:"single_nested,omitempty"`
2724 Sint32Value int32 `json:"sint32_value,omitempty"`
2825 Sint64Value string `json:"sint64_value,omitempty"`
29- StringValue string `json:"string_value,omitempty"`
26+ RepeatedStringValue []string `json:"repeated_string_value,omitempty"`
27+ OneofEmpty ProtobufEmpty `json:"oneof_empty,omitempty"`
28+ OneofString string `json:"oneof_string,omitempty"`
29+ MapValue map [string ]ExamplepbNumericEnum `json:"map_value,omitempty"`
30+ MappedStringValue map [string ]string `json:"mapped_string_value,omitempty"`
31+ MappedNestedValue map [string ]ABitOfEverythingNested `json:"mapped_nested_value,omitempty"`
32+ NonConventionalNameValue string `json:"nonConventionalNameValue,omitempty"`
3033 TimestampValue time.Time `json:"timestamp_value,omitempty"`
31- Uint32Value int64 `json:"uint32_value,omitempty"`
32- Uint64Value string `json:"uint64_value,omitempty"`
33- Uuid string `json:"uuid,omitempty"`
3434
3535}
0 commit comments