blob: 9a6b5f29b57a9dbe99e5bbec82794339298f645a [file] [log] [blame]
Scott Baker105df152020-04-13 15:55:14 -07001// 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.Api.
10const (
11 Api_Name = 1 // optional string
12 Api_Methods = 2 // repeated google.protobuf.Method
13 Api_Options = 3 // repeated google.protobuf.Option
14 Api_Version = 4 // optional string
15 Api_SourceContext = 5 // optional google.protobuf.SourceContext
16 Api_Mixins = 6 // repeated google.protobuf.Mixin
17 Api_Syntax = 7 // optional google.protobuf.Syntax
18)
19
20// Field numbers for google.protobuf.Method.
21const (
22 Method_Name = 1 // optional string
23 Method_RequestTypeUrl = 2 // optional string
24 Method_RequestStreaming = 3 // optional bool
25 Method_ResponseTypeUrl = 4 // optional string
26 Method_ResponseStreaming = 5 // optional bool
27 Method_Options = 6 // repeated google.protobuf.Option
28 Method_Syntax = 7 // optional google.protobuf.Syntax
29)
30
31// Field numbers for google.protobuf.Mixin.
32const (
33 Mixin_Name = 1 // optional string
34 Mixin_Root = 2 // optional string
35)