api_gen.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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.Api.
  7. const (
  8. Api_Name = 1 // optional string
  9. Api_Methods = 2 // repeated google.protobuf.Method
  10. Api_Options = 3 // repeated google.protobuf.Option
  11. Api_Version = 4 // optional string
  12. Api_SourceContext = 5 // optional google.protobuf.SourceContext
  13. Api_Mixins = 6 // repeated google.protobuf.Mixin
  14. Api_Syntax = 7 // optional google.protobuf.Syntax
  15. )
  16. // Field numbers for google.protobuf.Method.
  17. const (
  18. Method_Name = 1 // optional string
  19. Method_RequestTypeUrl = 2 // optional string
  20. Method_RequestStreaming = 3 // optional bool
  21. Method_ResponseTypeUrl = 4 // optional string
  22. Method_ResponseStreaming = 5 // optional bool
  23. Method_Options = 6 // repeated google.protobuf.Option
  24. Method_Syntax = 7 // optional google.protobuf.Syntax
  25. )
  26. // Field numbers for google.protobuf.Mixin.
  27. const (
  28. Mixin_Name = 1 // optional string
  29. Mixin_Root = 2 // optional string
  30. )