blob: 0cce88d2f0285c2906eb75d508d23e67063b4950 [file] [log] [blame]
Joe Tsaiea118132018-11-11 17:56:21 -08001// Code generated by protoc-gen-go. DO NOT EDIT.
Joe Tsai19058432019-02-27 21:46:29 -08002// source: legacy/legacy.proto
Joe Tsaiea118132018-11-11 17:56:21 -08003
4package legacy
5
6import (
Damien Neile89e6242019-05-13 23:55:40 -07007 proto2_v0_0 "google.golang.org/protobuf/internal/testprotos/legacy/proto2.v0.0.0-20160225-2fc053c5"
8 proto2_v0_01 "google.golang.org/protobuf/internal/testprotos/legacy/proto2.v0.0.0-20160519-a4ab9ec5"
9 proto2_v1_0 "google.golang.org/protobuf/internal/testprotos/legacy/proto2.v1.0.0-20180125-92554152"
10 proto2_v1_1 "google.golang.org/protobuf/internal/testprotos/legacy/proto2.v1.1.0-20180430-b4deda09"
11 proto2_v1_2 "google.golang.org/protobuf/internal/testprotos/legacy/proto2.v1.2.0-20180814-aa810b61"
12 proto2_v1_21 "google.golang.org/protobuf/internal/testprotos/legacy/proto2.v1.2.1-20181126-8d0c54c1"
13 proto3_v0_0 "google.golang.org/protobuf/internal/testprotos/legacy/proto3.v0.0.0-20160225-2fc053c5"
14 proto3_v0_01 "google.golang.org/protobuf/internal/testprotos/legacy/proto3.v0.0.0-20160519-a4ab9ec5"
15 proto3_v1_0 "google.golang.org/protobuf/internal/testprotos/legacy/proto3.v1.0.0-20180125-92554152"
16 proto3_v1_1 "google.golang.org/protobuf/internal/testprotos/legacy/proto3.v1.1.0-20180430-b4deda09"
17 proto3_v1_2 "google.golang.org/protobuf/internal/testprotos/legacy/proto3.v1.2.0-20180814-aa810b61"
18 proto3_v1_21 "google.golang.org/protobuf/internal/testprotos/legacy/proto3.v1.2.1-20181126-8d0c54c1"
19 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
Damien Neile89e6242019-05-13 23:55:40 -070020 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
Joe Tsai5d72cc22019-03-28 01:13:26 -070021 sync "sync"
Joe Tsaiea118132018-11-11 17:56:21 -080022)
23
Joe Tsai58b42d82019-05-22 16:27:51 -040024const (
25 // Verify that runtime/protoimpl is sufficiently up-to-date.
26 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 0)
27 // Verify that this generated code is sufficiently up-to-date.
28 _ = protoimpl.EnforceVersion(0 - protoimpl.MinVersion)
29)
Joe Tsai5d72cc22019-03-28 01:13:26 -070030
Joe Tsaiea118132018-11-11 17:56:21 -080031type Legacy struct {
Joe Tsai82760ce2019-06-20 03:09:57 -070032 state protoimpl.MessageState
Joe Tsaic0e4bb22019-07-06 13:05:11 -070033 F1 *proto2_v0_0.Message `protobuf:"bytes,1,opt,name=f1,proto3" json:"f1,omitempty"`
34 F2 *proto3_v0_0.Message `protobuf:"bytes,2,opt,name=f2,proto3" json:"f2,omitempty"`
35 F3 *proto2_v0_01.Message `protobuf:"bytes,3,opt,name=f3,proto3" json:"f3,omitempty"`
36 F4 *proto3_v0_01.Message `protobuf:"bytes,4,opt,name=f4,proto3" json:"f4,omitempty"`
37 F5 *proto2_v1_0.Message `protobuf:"bytes,5,opt,name=f5,proto3" json:"f5,omitempty"`
38 F6 *proto3_v1_0.Message `protobuf:"bytes,6,opt,name=f6,proto3" json:"f6,omitempty"`
39 F7 *proto2_v1_1.Message `protobuf:"bytes,7,opt,name=f7,proto3" json:"f7,omitempty"`
40 F8 *proto3_v1_1.Message `protobuf:"bytes,8,opt,name=f8,proto3" json:"f8,omitempty"`
41 F9 *proto2_v1_2.Message `protobuf:"bytes,9,opt,name=f9,proto3" json:"f9,omitempty"`
42 F10 *proto3_v1_2.Message `protobuf:"bytes,10,opt,name=f10,proto3" json:"f10,omitempty"`
43 F11 *proto2_v1_21.Message `protobuf:"bytes,11,opt,name=f11,proto3" json:"f11,omitempty"`
44 F12 *proto3_v1_21.Message `protobuf:"bytes,12,opt,name=f12,proto3" json:"f12,omitempty"`
45 sizeCache protoimpl.SizeCache
46 unknownFields protoimpl.UnknownFields
Joe Tsaiea118132018-11-11 17:56:21 -080047}
48
Joe Tsai61968ce2019-04-01 12:59:24 -070049func (x *Legacy) Reset() {
50 *x = Legacy{}
Joe Tsai19058432019-02-27 21:46:29 -080051}
Joe Tsai61968ce2019-04-01 12:59:24 -070052
53func (x *Legacy) String() string {
54 return protoimpl.X.MessageStringOf(x)
55}
56
57func (*Legacy) ProtoMessage() {}
58
59func (x *Legacy) ProtoReflect() protoreflect.Message {
Joe Tsai82760ce2019-06-20 03:09:57 -070060 mi := &file_legacy_legacy_proto_msgTypes[0]
61 if protoimpl.UnsafeEnabled && x != nil {
62 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
63 if ms.LoadMessageInfo() == nil {
64 ms.StoreMessageInfo(mi)
65 }
66 return ms
67 }
68 return mi.MessageOf(x)
Joe Tsai61968ce2019-04-01 12:59:24 -070069}
Joe Tsai8e506a82019-03-16 00:05:34 -070070
71// Deprecated: Use Legacy.ProtoReflect.Type instead.
Joe Tsaiea118132018-11-11 17:56:21 -080072func (*Legacy) Descriptor() ([]byte, []int) {
Joe Tsai7ca70982019-04-15 13:57:56 -070073 return file_legacy_legacy_proto_rawDescGZIP(), []int{0}
Joe Tsaiea118132018-11-11 17:56:21 -080074}
75
Joe Tsai61968ce2019-04-01 12:59:24 -070076func (x *Legacy) GetF1() *proto2_v0_0.Message {
77 if x != nil {
78 return x.F1
Joe Tsaiea118132018-11-11 17:56:21 -080079 }
80 return nil
81}
82
Joe Tsai61968ce2019-04-01 12:59:24 -070083func (x *Legacy) GetF2() *proto3_v0_0.Message {
84 if x != nil {
85 return x.F2
Joe Tsaiea118132018-11-11 17:56:21 -080086 }
87 return nil
88}
89
Joe Tsai61968ce2019-04-01 12:59:24 -070090func (x *Legacy) GetF3() *proto2_v0_01.Message {
91 if x != nil {
92 return x.F3
Joe Tsaiea118132018-11-11 17:56:21 -080093 }
94 return nil
95}
96
Joe Tsai61968ce2019-04-01 12:59:24 -070097func (x *Legacy) GetF4() *proto3_v0_01.Message {
98 if x != nil {
99 return x.F4
Joe Tsaiea118132018-11-11 17:56:21 -0800100 }
101 return nil
102}
103
Joe Tsai61968ce2019-04-01 12:59:24 -0700104func (x *Legacy) GetF5() *proto2_v1_0.Message {
105 if x != nil {
106 return x.F5
Joe Tsaiea118132018-11-11 17:56:21 -0800107 }
108 return nil
109}
110
Joe Tsai61968ce2019-04-01 12:59:24 -0700111func (x *Legacy) GetF6() *proto3_v1_0.Message {
112 if x != nil {
113 return x.F6
Joe Tsaiea118132018-11-11 17:56:21 -0800114 }
115 return nil
116}
117
Joe Tsai61968ce2019-04-01 12:59:24 -0700118func (x *Legacy) GetF7() *proto2_v1_1.Message {
119 if x != nil {
120 return x.F7
Joe Tsaiea118132018-11-11 17:56:21 -0800121 }
122 return nil
123}
124
Joe Tsai61968ce2019-04-01 12:59:24 -0700125func (x *Legacy) GetF8() *proto3_v1_1.Message {
126 if x != nil {
127 return x.F8
Joe Tsaiea118132018-11-11 17:56:21 -0800128 }
129 return nil
130}
131
Joe Tsai61968ce2019-04-01 12:59:24 -0700132func (x *Legacy) GetF9() *proto2_v1_2.Message {
133 if x != nil {
134 return x.F9
Joe Tsaiea118132018-11-11 17:56:21 -0800135 }
136 return nil
137}
138
Joe Tsai61968ce2019-04-01 12:59:24 -0700139func (x *Legacy) GetF10() *proto3_v1_2.Message {
140 if x != nil {
141 return x.F10
Joe Tsaiea118132018-11-11 17:56:21 -0800142 }
143 return nil
144}
145
Joe Tsai61968ce2019-04-01 12:59:24 -0700146func (x *Legacy) GetF11() *proto2_v1_21.Message {
147 if x != nil {
148 return x.F11
Joe Tsai25cc69d2018-11-28 23:43:49 -0800149 }
150 return nil
151}
152
Joe Tsai61968ce2019-04-01 12:59:24 -0700153func (x *Legacy) GetF12() *proto3_v1_21.Message {
154 if x != nil {
155 return x.F12
Joe Tsai25cc69d2018-11-28 23:43:49 -0800156 }
157 return nil
158}
159
Joe Tsai5d72cc22019-03-28 01:13:26 -0700160var File_legacy_legacy_proto protoreflect.FileDescriptor
161
Joe Tsai7ca70982019-04-15 13:57:56 -0700162var file_legacy_legacy_proto_rawDesc = []byte{
Joe Tsai19058432019-02-27 21:46:29 -0800163 0x0a, 0x13, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x2e,
164 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x11, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
165 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x1a, 0x31, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79,
166 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x2e, 0x76, 0x30, 0x2e, 0x30, 0x2e, 0x30, 0x2d, 0x32,
167 0x30, 0x31, 0x36, 0x30, 0x32, 0x32, 0x35, 0x2d, 0x32, 0x66, 0x63, 0x30, 0x35, 0x33, 0x63, 0x35,
168 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x6c, 0x65, 0x67,
169 0x61, 0x63, 0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x2e, 0x76, 0x30, 0x2e, 0x30, 0x2e,
170 0x30, 0x2d, 0x32, 0x30, 0x31, 0x36, 0x30, 0x32, 0x32, 0x35, 0x2d, 0x32, 0x66, 0x63, 0x30, 0x35,
171 0x33, 0x63, 0x35, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31,
172 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x2e, 0x76, 0x30,
173 0x2e, 0x30, 0x2e, 0x30, 0x2d, 0x32, 0x30, 0x31, 0x36, 0x30, 0x35, 0x31, 0x39, 0x2d, 0x61, 0x34,
174 0x61, 0x62, 0x39, 0x65, 0x63, 0x35, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
175 0x6f, 0x1a, 0x31, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
176 0x2e, 0x76, 0x30, 0x2e, 0x30, 0x2e, 0x30, 0x2d, 0x32, 0x30, 0x31, 0x36, 0x30, 0x35, 0x31, 0x39,
177 0x2d, 0x61, 0x34, 0x61, 0x62, 0x39, 0x65, 0x63, 0x35, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70,
178 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x2f, 0x70, 0x72, 0x6f,
179 0x74, 0x6f, 0x32, 0x2e, 0x76, 0x31, 0x2e, 0x30, 0x2e, 0x30, 0x2d, 0x32, 0x30, 0x31, 0x38, 0x30,
180 0x31, 0x32, 0x35, 0x2d, 0x39, 0x32, 0x35, 0x35, 0x34, 0x31, 0x35, 0x32, 0x2f, 0x74, 0x65, 0x73,
181 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x2f,
182 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x2e, 0x76, 0x31, 0x2e, 0x30, 0x2e, 0x30, 0x2d, 0x32, 0x30,
183 0x31, 0x38, 0x30, 0x31, 0x32, 0x35, 0x2d, 0x39, 0x32, 0x35, 0x35, 0x34, 0x31, 0x35, 0x32, 0x2f,
184 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x6c, 0x65, 0x67, 0x61,
185 0x63, 0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x2e, 0x76, 0x31, 0x2e, 0x31, 0x2e, 0x30,
186 0x2d, 0x32, 0x30, 0x31, 0x38, 0x30, 0x34, 0x33, 0x30, 0x2d, 0x62, 0x34, 0x64, 0x65, 0x64, 0x61,
187 0x30, 0x39, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x6c,
188 0x65, 0x67, 0x61, 0x63, 0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x2e, 0x76, 0x31, 0x2e,
189 0x31, 0x2e, 0x30, 0x2d, 0x32, 0x30, 0x31, 0x38, 0x30, 0x34, 0x33, 0x30, 0x2d, 0x62, 0x34, 0x64,
190 0x65, 0x64, 0x61, 0x30, 0x39, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
191 0x1a, 0x31, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x2e,
192 0x76, 0x31, 0x2e, 0x32, 0x2e, 0x30, 0x2d, 0x32, 0x30, 0x31, 0x38, 0x30, 0x38, 0x31, 0x34, 0x2d,
193 0x61, 0x61, 0x38, 0x31, 0x30, 0x62, 0x36, 0x31, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72,
194 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74,
195 0x6f, 0x33, 0x2e, 0x76, 0x31, 0x2e, 0x32, 0x2e, 0x30, 0x2d, 0x32, 0x30, 0x31, 0x38, 0x30, 0x38,
196 0x31, 0x34, 0x2d, 0x61, 0x61, 0x38, 0x31, 0x30, 0x62, 0x36, 0x31, 0x2f, 0x74, 0x65, 0x73, 0x74,
197 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x2f, 0x70,
198 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x2e, 0x76, 0x31, 0x2e, 0x32, 0x2e, 0x31, 0x2d, 0x32, 0x30, 0x31,
199 0x38, 0x31, 0x31, 0x32, 0x36, 0x2d, 0x38, 0x64, 0x30, 0x63, 0x35, 0x34, 0x63, 0x31, 0x2f, 0x74,
200 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x6c, 0x65, 0x67, 0x61, 0x63,
201 0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x2e, 0x76, 0x31, 0x2e, 0x32, 0x2e, 0x31, 0x2d,
202 0x32, 0x30, 0x31, 0x38, 0x31, 0x31, 0x32, 0x36, 0x2d, 0x38, 0x64, 0x30, 0x63, 0x35, 0x34, 0x63,
203 0x31, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xde, 0x05, 0x0a,
204 0x06, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x12, 0x3a, 0x0a, 0x02, 0x66, 0x31, 0x18, 0x01, 0x20,
205 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
206 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x5f, 0x32,
207 0x30, 0x31, 0x36, 0x30, 0x32, 0x32, 0x35, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
208 0x02, 0x66, 0x31, 0x12, 0x3a, 0x0a, 0x02, 0x66, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
209 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
210 0x6f, 0x72, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x5f, 0x32, 0x30, 0x31, 0x36, 0x30,
211 0x32, 0x32, 0x35, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x02, 0x66, 0x32, 0x12,
212 0x3a, 0x0a, 0x02, 0x66, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f,
213 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2e,
214 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x5f, 0x32, 0x30, 0x31, 0x36, 0x30, 0x35, 0x31, 0x39, 0x2e,
215 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x02, 0x66, 0x33, 0x12, 0x3a, 0x0a, 0x02, 0x66,
216 0x34, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
217 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74,
218 0x6f, 0x33, 0x5f, 0x32, 0x30, 0x31, 0x36, 0x30, 0x35, 0x31, 0x39, 0x2e, 0x4d, 0x65, 0x73, 0x73,
219 0x61, 0x67, 0x65, 0x52, 0x02, 0x66, 0x34, 0x12, 0x3a, 0x0a, 0x02, 0x66, 0x35, 0x18, 0x05, 0x20,
220 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
221 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x5f, 0x32,
222 0x30, 0x31, 0x38, 0x30, 0x31, 0x32, 0x35, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
223 0x02, 0x66, 0x35, 0x12, 0x3a, 0x0a, 0x02, 0x66, 0x36, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32,
224 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
225 0x6f, 0x72, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x5f, 0x32, 0x30, 0x31, 0x38, 0x30,
226 0x31, 0x32, 0x35, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x02, 0x66, 0x36, 0x12,
227 0x3a, 0x0a, 0x02, 0x66, 0x37, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f,
228 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2e,
229 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x5f, 0x32, 0x30, 0x31, 0x38, 0x30, 0x34, 0x33, 0x30, 0x2e,
230 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x02, 0x66, 0x37, 0x12, 0x3a, 0x0a, 0x02, 0x66,
231 0x38, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
232 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74,
233 0x6f, 0x33, 0x5f, 0x32, 0x30, 0x31, 0x38, 0x30, 0x34, 0x33, 0x30, 0x2e, 0x4d, 0x65, 0x73, 0x73,
234 0x61, 0x67, 0x65, 0x52, 0x02, 0x66, 0x38, 0x12, 0x3a, 0x0a, 0x02, 0x66, 0x39, 0x18, 0x09, 0x20,
235 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
236 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x5f, 0x32,
237 0x30, 0x31, 0x38, 0x30, 0x38, 0x31, 0x34, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
238 0x02, 0x66, 0x39, 0x12, 0x3c, 0x0a, 0x03, 0x66, 0x31, 0x30, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b,
239 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
240 0x2e, 0x6f, 0x72, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x5f, 0x32, 0x30, 0x31, 0x38,
241 0x30, 0x38, 0x31, 0x34, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x03, 0x66, 0x31,
242 0x30, 0x12, 0x3c, 0x0a, 0x03, 0x66, 0x31, 0x31, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a,
243 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
244 0x72, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x5f, 0x32, 0x30, 0x31, 0x38, 0x31, 0x31,
245 0x32, 0x36, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x03, 0x66, 0x31, 0x31, 0x12,
246 0x3c, 0x0a, 0x03, 0x66, 0x31, 0x32, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67,
247 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
248 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x5f, 0x32, 0x30, 0x31, 0x38, 0x31, 0x31, 0x32, 0x36,
Damien Neile89e6242019-05-13 23:55:40 -0700249 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x03, 0x66, 0x31, 0x32, 0x42, 0x37, 0x5a,
250 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
251 0x72, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x69, 0x6e, 0x74, 0x65,
252 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f,
253 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
Joe Tsaiea118132018-11-11 17:56:21 -0800254}
255
Joe Tsai5d72cc22019-03-28 01:13:26 -0700256var (
Joe Tsai7ca70982019-04-15 13:57:56 -0700257 file_legacy_legacy_proto_rawDescOnce sync.Once
258 file_legacy_legacy_proto_rawDescData = file_legacy_legacy_proto_rawDesc
Joe Tsai5d72cc22019-03-28 01:13:26 -0700259)
Joe Tsai19058432019-02-27 21:46:29 -0800260
Joe Tsai7ca70982019-04-15 13:57:56 -0700261func file_legacy_legacy_proto_rawDescGZIP() []byte {
262 file_legacy_legacy_proto_rawDescOnce.Do(func() {
263 file_legacy_legacy_proto_rawDescData = protoimpl.X.CompressGZIP(file_legacy_legacy_proto_rawDescData)
Joe Tsai5d72cc22019-03-28 01:13:26 -0700264 })
Joe Tsai7ca70982019-04-15 13:57:56 -0700265 return file_legacy_legacy_proto_rawDescData
Joe Tsai5d72cc22019-03-28 01:13:26 -0700266}
Joe Tsai19058432019-02-27 21:46:29 -0800267
Joe Tsai4fe96632019-05-22 05:12:36 -0400268var file_legacy_legacy_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
Joe Tsai7ca70982019-04-15 13:57:56 -0700269var file_legacy_legacy_proto_goTypes = []interface{}{
Joe Tsai19058432019-02-27 21:46:29 -0800270 (*Legacy)(nil), // 0: google.golang.org.Legacy
271 (*proto2_v0_0.Message)(nil), // 1: google.golang.org.proto2_20160225.Message
272 (*proto3_v0_0.Message)(nil), // 2: google.golang.org.proto3_20160225.Message
273 (*proto2_v0_01.Message)(nil), // 3: google.golang.org.proto2_20160519.Message
274 (*proto3_v0_01.Message)(nil), // 4: google.golang.org.proto3_20160519.Message
275 (*proto2_v1_0.Message)(nil), // 5: google.golang.org.proto2_20180125.Message
276 (*proto3_v1_0.Message)(nil), // 6: google.golang.org.proto3_20180125.Message
277 (*proto2_v1_1.Message)(nil), // 7: google.golang.org.proto2_20180430.Message
278 (*proto3_v1_1.Message)(nil), // 8: google.golang.org.proto3_20180430.Message
279 (*proto2_v1_2.Message)(nil), // 9: google.golang.org.proto2_20180814.Message
280 (*proto3_v1_2.Message)(nil), // 10: google.golang.org.proto3_20180814.Message
281 (*proto2_v1_21.Message)(nil), // 11: google.golang.org.proto2_20181126.Message
282 (*proto3_v1_21.Message)(nil), // 12: google.golang.org.proto3_20181126.Message
283}
Joe Tsai7ca70982019-04-15 13:57:56 -0700284var file_legacy_legacy_proto_depIdxs = []int32{
Joe Tsai19058432019-02-27 21:46:29 -0800285 1, // google.golang.org.Legacy.f1:type_name -> google.golang.org.proto2_20160225.Message
286 2, // google.golang.org.Legacy.f2:type_name -> google.golang.org.proto3_20160225.Message
287 3, // google.golang.org.Legacy.f3:type_name -> google.golang.org.proto2_20160519.Message
288 4, // google.golang.org.Legacy.f4:type_name -> google.golang.org.proto3_20160519.Message
289 5, // google.golang.org.Legacy.f5:type_name -> google.golang.org.proto2_20180125.Message
290 6, // google.golang.org.Legacy.f6:type_name -> google.golang.org.proto3_20180125.Message
291 7, // google.golang.org.Legacy.f7:type_name -> google.golang.org.proto2_20180430.Message
292 8, // google.golang.org.Legacy.f8:type_name -> google.golang.org.proto3_20180430.Message
293 9, // google.golang.org.Legacy.f9:type_name -> google.golang.org.proto2_20180814.Message
294 10, // google.golang.org.Legacy.f10:type_name -> google.golang.org.proto3_20180814.Message
295 11, // google.golang.org.Legacy.f11:type_name -> google.golang.org.proto2_20181126.Message
296 12, // google.golang.org.Legacy.f12:type_name -> google.golang.org.proto3_20181126.Message
Joe Tsaid8881392019-06-06 13:01:53 -0700297 12, // starting offset of method output_type sub-list
298 12, // starting offset of method input_type sub-list
299 12, // starting offset of extension type_name sub-list
300 12, // starting offset of extension extendee sub-list
301 0, // starting offset of field type_name sub-list
Joe Tsai19058432019-02-27 21:46:29 -0800302}
303
Joe Tsai7ca70982019-04-15 13:57:56 -0700304func init() { file_legacy_legacy_proto_init() }
305func file_legacy_legacy_proto_init() {
Damien Neil0fc22452019-03-08 17:18:11 -0800306 if File_legacy_legacy_proto != nil {
307 return
308 }
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700309 if !protoimpl.UnsafeEnabled {
310 file_legacy_legacy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
311 switch v := v.(*Legacy); i {
Joe Tsai82760ce2019-06-20 03:09:57 -0700312 case 0:
313 return &v.state
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700314 case 13:
Joe Tsai82760ce2019-06-20 03:09:57 -0700315 return &v.sizeCache
316 case 14:
Joe Tsaic0e4bb22019-07-06 13:05:11 -0700317 return &v.unknownFields
318 default:
319 return nil
320 }
321 }
322 }
Joe Tsaid8881392019-06-06 13:01:53 -0700323 out := protoimpl.TypeBuilder{
324 File: protoimpl.DescBuilder{
325 RawDescriptor: file_legacy_legacy_proto_rawDesc,
326 NumEnums: 0,
327 NumMessages: 1,
328 NumExtensions: 0,
329 NumServices: 0,
330 },
331 GoTypes: file_legacy_legacy_proto_goTypes,
332 DependencyIndexes: file_legacy_legacy_proto_depIdxs,
333 MessageInfos: file_legacy_legacy_proto_msgTypes,
334 }.Build()
335 File_legacy_legacy_proto = out.File
Joe Tsai7ca70982019-04-15 13:57:56 -0700336 file_legacy_legacy_proto_rawDesc = nil
337 file_legacy_legacy_proto_goTypes = nil
338 file_legacy_legacy_proto_depIdxs = nil
Joe Tsaiea118132018-11-11 17:56:21 -0800339}