struct_gen.go 1007 B

123456789101112131415161718192021222324252627282930313233
  1. // 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. // Code generated by generate-protos. DO NOT EDIT.
  5. package fieldnum
  6. // Field numbers for google.protobuf.Struct.
  7. const (
  8. Struct_Fields = 1 // repeated google.protobuf.Struct.FieldsEntry
  9. )
  10. // Field numbers for google.protobuf.Struct.FieldsEntry.
  11. const (
  12. Struct_FieldsEntry_Key = 1 // optional string
  13. Struct_FieldsEntry_Value = 2 // optional google.protobuf.Value
  14. )
  15. // Field numbers for google.protobuf.Value.
  16. const (
  17. Value_NullValue = 1 // optional google.protobuf.NullValue
  18. Value_NumberValue = 2 // optional double
  19. Value_StringValue = 3 // optional string
  20. Value_BoolValue = 4 // optional bool
  21. Value_StructValue = 5 // optional google.protobuf.Struct
  22. Value_ListValue = 6 // optional google.protobuf.ListValue
  23. )
  24. // Field numbers for google.protobuf.ListValue.
  25. const (
  26. ListValue_Values = 1 // repeated google.protobuf.Value
  27. )