1// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: proto3/proto3.proto
3
4package proto3 // import "github.com/golang/protobuf/protoc-gen-go/testdata/proto3"
5
6import proto "github.com/golang/protobuf/proto"
7import fmt "fmt"
8import math "math"
9
10// Reference imports to suppress errors if they are not otherwise used.
11var _ = proto.Marshal
12var _ = fmt.Errorf
13var _ = math.Inf
14
15// This is a compile-time assertion to ensure that this generated file
16// is compatible with the proto package it is being compiled against.
17// A compilation error at this line likely means your copy of the
18// proto package needs to be updated.
19const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
20
21type Request_Flavour int32
22
23const (
24	Request_SWEET         Request_Flavour = 0
25	Request_SOUR          Request_Flavour = 1
26	Request_UMAMI         Request_Flavour = 2
27	Request_GOPHERLICIOUS Request_Flavour = 3
28)
29
30var Request_Flavour_name = map[int32]string{
31	0: "SWEET",
32	1: "SOUR",
33	2: "UMAMI",
34	3: "GOPHERLICIOUS",
35}
36var Request_Flavour_value = map[string]int32{
37	"SWEET":         0,
38	"SOUR":          1,
39	"UMAMI":         2,
40	"GOPHERLICIOUS": 3,
41}
42
43func (x Request_Flavour) String() string {
44	return proto.EnumName(Request_Flavour_name, int32(x))
45}
46func (Request_Flavour) EnumDescriptor() ([]byte, []int) {
47	return fileDescriptor_proto3_a752e09251f17e01, []int{0, 0}
48}
49
50type Request struct {
51	Name                 string          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
52	Key                  []int64         `protobuf:"varint,2,rep,packed,name=key,proto3" json:"key,omitempty"`
53	Taste                Request_Flavour `protobuf:"varint,3,opt,name=taste,proto3,enum=proto3.Request_Flavour" json:"taste,omitempty"`
54	Book                 *Book           `protobuf:"bytes,4,opt,name=book,proto3" json:"book,omitempty"`
55	Unpacked             []int64         `protobuf:"varint,5,rep,name=unpacked,proto3" json:"unpacked,omitempty"`
56	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
57	XXX_unrecognized     []byte          `json:"-"`
58	XXX_sizecache        int32           `json:"-"`
59}
60
61func (m *Request) Reset()         { *m = Request{} }
62func (m *Request) String() string { return proto.CompactTextString(m) }
63func (*Request) ProtoMessage()    {}
64func (*Request) Descriptor() ([]byte, []int) {
65	return fileDescriptor_proto3_a752e09251f17e01, []int{0}
66}
67func (m *Request) XXX_Unmarshal(b []byte) error {
68	return xxx_messageInfo_Request.Unmarshal(m, b)
69}
70func (m *Request) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
71	return xxx_messageInfo_Request.Marshal(b, m, deterministic)
72}
73func (dst *Request) XXX_Merge(src proto.Message) {
74	xxx_messageInfo_Request.Merge(dst, src)
75}
76func (m *Request) XXX_Size() int {
77	return xxx_messageInfo_Request.Size(m)
78}
79func (m *Request) XXX_DiscardUnknown() {
80	xxx_messageInfo_Request.DiscardUnknown(m)
81}
82
83var xxx_messageInfo_Request proto.InternalMessageInfo
84
85func (m *Request) GetName() string {
86	if m != nil {
87		return m.Name
88	}
89	return ""
90}
91
92func (m *Request) GetKey() []int64 {
93	if m != nil {
94		return m.Key
95	}
96	return nil
97}
98
99func (m *Request) GetTaste() Request_Flavour {
100	if m != nil {
101		return m.Taste
102	}
103	return Request_SWEET
104}
105
106func (m *Request) GetBook() *Book {
107	if m != nil {
108		return m.Book
109	}
110	return nil
111}
112
113func (m *Request) GetUnpacked() []int64 {
114	if m != nil {
115		return m.Unpacked
116	}
117	return nil
118}
119
120type Book struct {
121	Title                string   `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
122	RawData              []byte   `protobuf:"bytes,2,opt,name=raw_data,json=rawData,proto3" json:"raw_data,omitempty"`
123	XXX_NoUnkeyedLiteral struct{} `json:"-"`
124	XXX_unrecognized     []byte   `json:"-"`
125	XXX_sizecache        int32    `json:"-"`
126}
127
128func (m *Book) Reset()         { *m = Book{} }
129func (m *Book) String() string { return proto.CompactTextString(m) }
130func (*Book) ProtoMessage()    {}
131func (*Book) Descriptor() ([]byte, []int) {
132	return fileDescriptor_proto3_a752e09251f17e01, []int{1}
133}
134func (m *Book) XXX_Unmarshal(b []byte) error {
135	return xxx_messageInfo_Book.Unmarshal(m, b)
136}
137func (m *Book) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
138	return xxx_messageInfo_Book.Marshal(b, m, deterministic)
139}
140func (dst *Book) XXX_Merge(src proto.Message) {
141	xxx_messageInfo_Book.Merge(dst, src)
142}
143func (m *Book) XXX_Size() int {
144	return xxx_messageInfo_Book.Size(m)
145}
146func (m *Book) XXX_DiscardUnknown() {
147	xxx_messageInfo_Book.DiscardUnknown(m)
148}
149
150var xxx_messageInfo_Book proto.InternalMessageInfo
151
152func (m *Book) GetTitle() string {
153	if m != nil {
154		return m.Title
155	}
156	return ""
157}
158
159func (m *Book) GetRawData() []byte {
160	if m != nil {
161		return m.RawData
162	}
163	return nil
164}
165
166func init() {
167	proto.RegisterType((*Request)(nil), "proto3.Request")
168	proto.RegisterType((*Book)(nil), "proto3.Book")
169	proto.RegisterEnum("proto3.Request_Flavour", Request_Flavour_name, Request_Flavour_value)
170}
171
172func init() { proto.RegisterFile("proto3/proto3.proto", fileDescriptor_proto3_a752e09251f17e01) }
173
174var fileDescriptor_proto3_a752e09251f17e01 = []byte{
175	// 306 bytes of a gzipped FileDescriptorProto
176	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x3c, 0x90, 0xcf, 0x4e, 0xf2, 0x40,
177	0x14, 0xc5, 0x99, 0xfe, 0xf9, 0x80, 0xfb, 0xa1, 0x19, 0xaf, 0x26, 0x8e, 0x1b, 0x33, 0x61, 0xd5,
178	0x0d, 0x25, 0xc1, 0x85, 0xc6, 0xb8, 0x11, 0x45, 0x25, 0x91, 0x60, 0x06, 0x89, 0x89, 0x1b, 0x33,
179	0x85, 0xb1, 0x92, 0x42, 0x07, 0xcb, 0x54, 0xe2, 0xcb, 0xfa, 0x2c, 0xa6, 0x9d, 0xe2, 0xea, 0x9e,
180	0x7b, 0xe7, 0xe4, 0x77, 0x32, 0x07, 0x0e, 0xd7, 0x99, 0x36, 0xfa, 0xac, 0x6b, 0x47, 0x58, 0x0e,
181	0xfc, 0x67, 0xb7, 0xf6, 0x0f, 0x81, 0xba, 0x50, 0x9f, 0xb9, 0xda, 0x18, 0x44, 0xf0, 0x52, 0xb9,
182	0x52, 0x8c, 0x70, 0x12, 0x34, 0x45, 0xa9, 0x91, 0x82, 0x9b, 0xa8, 0x6f, 0xe6, 0x70, 0x37, 0x70,
183	0x45, 0x21, 0xb1, 0x03, 0xbe, 0x91, 0x1b, 0xa3, 0x98, 0xcb, 0x49, 0xb0, 0xdf, 0x3b, 0x0e, 0x2b,
184	0x6e, 0x45, 0x09, 0xef, 0x96, 0xf2, 0x4b, 0xe7, 0x99, 0xb0, 0x2e, 0xe4, 0xe0, 0x45, 0x5a, 0x27,
185	0xcc, 0xe3, 0x24, 0xf8, 0xdf, 0x6b, 0xed, 0xdc, 0x7d, 0xad, 0x13, 0x51, 0xbe, 0xe0, 0x29, 0x34,
186	0xf2, 0x74, 0x2d, 0x67, 0x89, 0x9a, 0x33, 0xbf, 0xc8, 0xe9, 0x3b, 0xb4, 0x26, 0xfe, 0x6e, 0xed,
187	0x2b, 0xa8, 0x57, 0x4c, 0x6c, 0x82, 0x3f, 0x79, 0x19, 0x0c, 0x9e, 0x69, 0x0d, 0x1b, 0xe0, 0x4d,
188	0xc6, 0x53, 0x41, 0x49, 0x71, 0x9c, 0x8e, 0xae, 0x47, 0x43, 0xea, 0xe0, 0x01, 0xec, 0xdd, 0x8f,
189	0x9f, 0x1e, 0x06, 0xe2, 0x71, 0x78, 0x33, 0x1c, 0x4f, 0x27, 0xd4, 0x6d, 0x9f, 0x83, 0x57, 0x64,
190	0xe1, 0x11, 0xf8, 0x66, 0x61, 0x96, 0xbb, 0xdf, 0xd9, 0x05, 0x4f, 0xa0, 0x91, 0xc9, 0xed, 0xdb,
191	0x5c, 0x1a, 0xc9, 0x1c, 0x4e, 0x82, 0x96, 0xa8, 0x67, 0x72, 0x7b, 0x2b, 0x8d, 0xec, 0x5f, 0xbe,
192	0x5e, 0xc4, 0x0b, 0xf3, 0x91, 0x47, 0xe1, 0x4c, 0xaf, 0xba, 0xb1, 0x5e, 0xca, 0x34, 0xb6, 0x1d,
193	0x46, 0xf9, 0xbb, 0x15, 0xb3, 0x4e, 0xac, 0xd2, 0x4e, 0xac, 0xbb, 0x46, 0x6d, 0x4c, 0xc1, 0xa8,
194	0x3a, 0x8e, 0xaa, 0x76, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xec, 0x71, 0xee, 0xdb, 0x7b, 0x01,
195	0x00, 0x00,
196}
197