Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/public-api/go/v1/verification.pb.go
2500 views
1
// Copyright (c) 2025 Gitpod GmbH. All rights reserved.
2
// Licensed under the GNU Affero General Public License (AGPL).
3
// See License.AGPL.txt in the project root for license information.
4
5
// Code generated by protoc-gen-go. DO NOT EDIT.
6
// versions:
7
// protoc-gen-go v1.28.1
8
// protoc (unknown)
9
// source: gitpod/v1/verification.proto
10
11
package v1
12
13
import (
14
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
15
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
16
reflect "reflect"
17
sync "sync"
18
)
19
20
const (
21
// Verify that this generated code is sufficiently up-to-date.
22
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
23
// Verify that runtime/protoimpl is sufficiently up-to-date.
24
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
25
)
26
27
// Required fields:
28
// - phone_number
29
type SendPhoneNumberVerificationTokenRequest struct {
30
state protoimpl.MessageState
31
sizeCache protoimpl.SizeCache
32
unknownFields protoimpl.UnknownFields
33
34
// phone_number in E.164 format
35
PhoneNumber string `protobuf:"bytes,1,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"`
36
}
37
38
func (x *SendPhoneNumberVerificationTokenRequest) Reset() {
39
*x = SendPhoneNumberVerificationTokenRequest{}
40
if protoimpl.UnsafeEnabled {
41
mi := &file_gitpod_v1_verification_proto_msgTypes[0]
42
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
43
ms.StoreMessageInfo(mi)
44
}
45
}
46
47
func (x *SendPhoneNumberVerificationTokenRequest) String() string {
48
return protoimpl.X.MessageStringOf(x)
49
}
50
51
func (*SendPhoneNumberVerificationTokenRequest) ProtoMessage() {}
52
53
func (x *SendPhoneNumberVerificationTokenRequest) ProtoReflect() protoreflect.Message {
54
mi := &file_gitpod_v1_verification_proto_msgTypes[0]
55
if protoimpl.UnsafeEnabled && x != nil {
56
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
57
if ms.LoadMessageInfo() == nil {
58
ms.StoreMessageInfo(mi)
59
}
60
return ms
61
}
62
return mi.MessageOf(x)
63
}
64
65
// Deprecated: Use SendPhoneNumberVerificationTokenRequest.ProtoReflect.Descriptor instead.
66
func (*SendPhoneNumberVerificationTokenRequest) Descriptor() ([]byte, []int) {
67
return file_gitpod_v1_verification_proto_rawDescGZIP(), []int{0}
68
}
69
70
func (x *SendPhoneNumberVerificationTokenRequest) GetPhoneNumber() string {
71
if x != nil {
72
return x.PhoneNumber
73
}
74
return ""
75
}
76
77
type SendPhoneNumberVerificationTokenResponse struct {
78
state protoimpl.MessageState
79
sizeCache protoimpl.SizeCache
80
unknownFields protoimpl.UnknownFields
81
82
// verification_id is used to VerifyPhoneNumberVerificationToken
83
VerificationId string `protobuf:"bytes,1,opt,name=verification_id,json=verificationId,proto3" json:"verification_id,omitempty"`
84
}
85
86
func (x *SendPhoneNumberVerificationTokenResponse) Reset() {
87
*x = SendPhoneNumberVerificationTokenResponse{}
88
if protoimpl.UnsafeEnabled {
89
mi := &file_gitpod_v1_verification_proto_msgTypes[1]
90
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
91
ms.StoreMessageInfo(mi)
92
}
93
}
94
95
func (x *SendPhoneNumberVerificationTokenResponse) String() string {
96
return protoimpl.X.MessageStringOf(x)
97
}
98
99
func (*SendPhoneNumberVerificationTokenResponse) ProtoMessage() {}
100
101
func (x *SendPhoneNumberVerificationTokenResponse) ProtoReflect() protoreflect.Message {
102
mi := &file_gitpod_v1_verification_proto_msgTypes[1]
103
if protoimpl.UnsafeEnabled && x != nil {
104
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
105
if ms.LoadMessageInfo() == nil {
106
ms.StoreMessageInfo(mi)
107
}
108
return ms
109
}
110
return mi.MessageOf(x)
111
}
112
113
// Deprecated: Use SendPhoneNumberVerificationTokenResponse.ProtoReflect.Descriptor instead.
114
func (*SendPhoneNumberVerificationTokenResponse) Descriptor() ([]byte, []int) {
115
return file_gitpod_v1_verification_proto_rawDescGZIP(), []int{1}
116
}
117
118
func (x *SendPhoneNumberVerificationTokenResponse) GetVerificationId() string {
119
if x != nil {
120
return x.VerificationId
121
}
122
return ""
123
}
124
125
// Required fields:
126
// - phone_number
127
// - verification_id
128
// - token
129
type VerifyPhoneNumberVerificationTokenRequest struct {
130
state protoimpl.MessageState
131
sizeCache protoimpl.SizeCache
132
unknownFields protoimpl.UnknownFields
133
134
// phone_number in E.164 format
135
PhoneNumber string `protobuf:"bytes,1,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"`
136
// verification_id is returned by SendPhoneNumberVerificationToken
137
VerificationId string `protobuf:"bytes,2,opt,name=verification_id,json=verificationId,proto3" json:"verification_id,omitempty"`
138
// token is the verification token from providers
139
Token string `protobuf:"bytes,3,opt,name=token,proto3" json:"token,omitempty"`
140
}
141
142
func (x *VerifyPhoneNumberVerificationTokenRequest) Reset() {
143
*x = VerifyPhoneNumberVerificationTokenRequest{}
144
if protoimpl.UnsafeEnabled {
145
mi := &file_gitpod_v1_verification_proto_msgTypes[2]
146
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
147
ms.StoreMessageInfo(mi)
148
}
149
}
150
151
func (x *VerifyPhoneNumberVerificationTokenRequest) String() string {
152
return protoimpl.X.MessageStringOf(x)
153
}
154
155
func (*VerifyPhoneNumberVerificationTokenRequest) ProtoMessage() {}
156
157
func (x *VerifyPhoneNumberVerificationTokenRequest) ProtoReflect() protoreflect.Message {
158
mi := &file_gitpod_v1_verification_proto_msgTypes[2]
159
if protoimpl.UnsafeEnabled && x != nil {
160
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
161
if ms.LoadMessageInfo() == nil {
162
ms.StoreMessageInfo(mi)
163
}
164
return ms
165
}
166
return mi.MessageOf(x)
167
}
168
169
// Deprecated: Use VerifyPhoneNumberVerificationTokenRequest.ProtoReflect.Descriptor instead.
170
func (*VerifyPhoneNumberVerificationTokenRequest) Descriptor() ([]byte, []int) {
171
return file_gitpod_v1_verification_proto_rawDescGZIP(), []int{2}
172
}
173
174
func (x *VerifyPhoneNumberVerificationTokenRequest) GetPhoneNumber() string {
175
if x != nil {
176
return x.PhoneNumber
177
}
178
return ""
179
}
180
181
func (x *VerifyPhoneNumberVerificationTokenRequest) GetVerificationId() string {
182
if x != nil {
183
return x.VerificationId
184
}
185
return ""
186
}
187
188
func (x *VerifyPhoneNumberVerificationTokenRequest) GetToken() string {
189
if x != nil {
190
return x.Token
191
}
192
return ""
193
}
194
195
type VerifyPhoneNumberVerificationTokenResponse struct {
196
state protoimpl.MessageState
197
sizeCache protoimpl.SizeCache
198
unknownFields protoimpl.UnknownFields
199
200
// verified indicates if the verification was successful
201
Verified bool `protobuf:"varint,1,opt,name=verified,proto3" json:"verified,omitempty"`
202
}
203
204
func (x *VerifyPhoneNumberVerificationTokenResponse) Reset() {
205
*x = VerifyPhoneNumberVerificationTokenResponse{}
206
if protoimpl.UnsafeEnabled {
207
mi := &file_gitpod_v1_verification_proto_msgTypes[3]
208
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
209
ms.StoreMessageInfo(mi)
210
}
211
}
212
213
func (x *VerifyPhoneNumberVerificationTokenResponse) String() string {
214
return protoimpl.X.MessageStringOf(x)
215
}
216
217
func (*VerifyPhoneNumberVerificationTokenResponse) ProtoMessage() {}
218
219
func (x *VerifyPhoneNumberVerificationTokenResponse) ProtoReflect() protoreflect.Message {
220
mi := &file_gitpod_v1_verification_proto_msgTypes[3]
221
if protoimpl.UnsafeEnabled && x != nil {
222
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
223
if ms.LoadMessageInfo() == nil {
224
ms.StoreMessageInfo(mi)
225
}
226
return ms
227
}
228
return mi.MessageOf(x)
229
}
230
231
// Deprecated: Use VerifyPhoneNumberVerificationTokenResponse.ProtoReflect.Descriptor instead.
232
func (*VerifyPhoneNumberVerificationTokenResponse) Descriptor() ([]byte, []int) {
233
return file_gitpod_v1_verification_proto_rawDescGZIP(), []int{3}
234
}
235
236
func (x *VerifyPhoneNumberVerificationTokenResponse) GetVerified() bool {
237
if x != nil {
238
return x.Verified
239
}
240
return false
241
}
242
243
var File_gitpod_v1_verification_proto protoreflect.FileDescriptor
244
245
var file_gitpod_v1_verification_proto_rawDesc = []byte{
246
0x0a, 0x1c, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x76, 0x31, 0x2f, 0x76, 0x65, 0x72, 0x69,
247
0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x09,
248
0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x22, 0x4c, 0x0a, 0x27, 0x53, 0x65, 0x6e,
249
0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x56, 0x65, 0x72, 0x69,
250
0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71,
251
0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x6e, 0x75,
252
0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e,
253
0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x53, 0x0a, 0x28, 0x53, 0x65, 0x6e, 0x64, 0x50,
254
0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69,
255
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
256
0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
257
0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x76, 0x65,
258
0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x8d, 0x01, 0x0a,
259
0x29, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62,
260
0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x6f,
261
0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x68,
262
0x6f, 0x6e, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
263
0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x27, 0x0a,
264
0x0f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
265
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61,
266
0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18,
267
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x48, 0x0a, 0x2a,
268
0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65,
269
0x72, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b,
270
0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x65,
271
0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x76, 0x65,
272
0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x32, 0xbb, 0x02, 0x0a, 0x13, 0x56, 0x65, 0x72, 0x69, 0x66,
273
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x8d,
274
0x01, 0x0a, 0x20, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62,
275
0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x6f,
276
0x6b, 0x65, 0x6e, 0x12, 0x32, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e,
277
0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x56,
278
0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
279
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64,
280
0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d,
281
0x62, 0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
282
0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x93,
283
0x01, 0x0a, 0x22, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75,
284
0x6d, 0x62, 0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
285
0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x34, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76,
286
0x31, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d,
287
0x62, 0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
288
0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x67, 0x69,
289
0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68,
290
0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63,
291
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
292
0x73, 0x65, 0x22, 0x00, 0x42, 0x51, 0x0a, 0x16, 0x69, 0x6f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f,
293
0x64, 0x2e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x5a, 0x37,
294
0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f,
295
0x64, 0x2d, 0x69, 0x6f, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70,
296
0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2d, 0x61, 0x70,
297
0x69, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
298
}
299
300
var (
301
file_gitpod_v1_verification_proto_rawDescOnce sync.Once
302
file_gitpod_v1_verification_proto_rawDescData = file_gitpod_v1_verification_proto_rawDesc
303
)
304
305
func file_gitpod_v1_verification_proto_rawDescGZIP() []byte {
306
file_gitpod_v1_verification_proto_rawDescOnce.Do(func() {
307
file_gitpod_v1_verification_proto_rawDescData = protoimpl.X.CompressGZIP(file_gitpod_v1_verification_proto_rawDescData)
308
})
309
return file_gitpod_v1_verification_proto_rawDescData
310
}
311
312
var file_gitpod_v1_verification_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
313
var file_gitpod_v1_verification_proto_goTypes = []interface{}{
314
(*SendPhoneNumberVerificationTokenRequest)(nil), // 0: gitpod.v1.SendPhoneNumberVerificationTokenRequest
315
(*SendPhoneNumberVerificationTokenResponse)(nil), // 1: gitpod.v1.SendPhoneNumberVerificationTokenResponse
316
(*VerifyPhoneNumberVerificationTokenRequest)(nil), // 2: gitpod.v1.VerifyPhoneNumberVerificationTokenRequest
317
(*VerifyPhoneNumberVerificationTokenResponse)(nil), // 3: gitpod.v1.VerifyPhoneNumberVerificationTokenResponse
318
}
319
var file_gitpod_v1_verification_proto_depIdxs = []int32{
320
0, // 0: gitpod.v1.VerificationService.SendPhoneNumberVerificationToken:input_type -> gitpod.v1.SendPhoneNumberVerificationTokenRequest
321
2, // 1: gitpod.v1.VerificationService.VerifyPhoneNumberVerificationToken:input_type -> gitpod.v1.VerifyPhoneNumberVerificationTokenRequest
322
1, // 2: gitpod.v1.VerificationService.SendPhoneNumberVerificationToken:output_type -> gitpod.v1.SendPhoneNumberVerificationTokenResponse
323
3, // 3: gitpod.v1.VerificationService.VerifyPhoneNumberVerificationToken:output_type -> gitpod.v1.VerifyPhoneNumberVerificationTokenResponse
324
2, // [2:4] is the sub-list for method output_type
325
0, // [0:2] is the sub-list for method input_type
326
0, // [0:0] is the sub-list for extension type_name
327
0, // [0:0] is the sub-list for extension extendee
328
0, // [0:0] is the sub-list for field type_name
329
}
330
331
func init() { file_gitpod_v1_verification_proto_init() }
332
func file_gitpod_v1_verification_proto_init() {
333
if File_gitpod_v1_verification_proto != nil {
334
return
335
}
336
if !protoimpl.UnsafeEnabled {
337
file_gitpod_v1_verification_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
338
switch v := v.(*SendPhoneNumberVerificationTokenRequest); i {
339
case 0:
340
return &v.state
341
case 1:
342
return &v.sizeCache
343
case 2:
344
return &v.unknownFields
345
default:
346
return nil
347
}
348
}
349
file_gitpod_v1_verification_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
350
switch v := v.(*SendPhoneNumberVerificationTokenResponse); i {
351
case 0:
352
return &v.state
353
case 1:
354
return &v.sizeCache
355
case 2:
356
return &v.unknownFields
357
default:
358
return nil
359
}
360
}
361
file_gitpod_v1_verification_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
362
switch v := v.(*VerifyPhoneNumberVerificationTokenRequest); i {
363
case 0:
364
return &v.state
365
case 1:
366
return &v.sizeCache
367
case 2:
368
return &v.unknownFields
369
default:
370
return nil
371
}
372
}
373
file_gitpod_v1_verification_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
374
switch v := v.(*VerifyPhoneNumberVerificationTokenResponse); i {
375
case 0:
376
return &v.state
377
case 1:
378
return &v.sizeCache
379
case 2:
380
return &v.unknownFields
381
default:
382
return nil
383
}
384
}
385
}
386
type x struct{}
387
out := protoimpl.TypeBuilder{
388
File: protoimpl.DescBuilder{
389
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
390
RawDescriptor: file_gitpod_v1_verification_proto_rawDesc,
391
NumEnums: 0,
392
NumMessages: 4,
393
NumExtensions: 0,
394
NumServices: 1,
395
},
396
GoTypes: file_gitpod_v1_verification_proto_goTypes,
397
DependencyIndexes: file_gitpod_v1_verification_proto_depIdxs,
398
MessageInfos: file_gitpod_v1_verification_proto_msgTypes,
399
}.Build()
400
File_gitpod_v1_verification_proto = out.File
401
file_gitpod_v1_verification_proto_rawDesc = nil
402
file_gitpod_v1_verification_proto_goTypes = nil
403
file_gitpod_v1_verification_proto_depIdxs = nil
404
}
405
406