blob: c460aab44a71cab39a5ec5a45308e8013bae9ffb [file] [log] [blame]
Andrea Campanella3614a922021-02-25 12:40:42 +01001// Copyright 2019 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// Code generated by generate-protos. DO NOT EDIT.
6
7package fieldnum
8
9// Field numbers for google.protobuf.Struct.
10const (
11 Struct_Fields = 1 // repeated google.protobuf.Struct.FieldsEntry
12)
13
14// Field numbers for google.protobuf.Struct.FieldsEntry.
15const (
16 Struct_FieldsEntry_Key = 1 // optional string
17 Struct_FieldsEntry_Value = 2 // optional google.protobuf.Value
18)
19
20// Field numbers for google.protobuf.Value.
21const (
22 Value_NullValue = 1 // optional google.protobuf.NullValue
23 Value_NumberValue = 2 // optional double
24 Value_StringValue = 3 // optional string
25 Value_BoolValue = 4 // optional bool
26 Value_StructValue = 5 // optional google.protobuf.Struct
27 Value_ListValue = 6 // optional google.protobuf.ListValue
28)
29
30// Field numbers for google.protobuf.ListValue.
31const (
32 ListValue_Values = 1 // repeated google.protobuf.Value
33)