Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/usage-api/go/v1/billing_grpc.pb.go
2499 views
1
// Copyright (c) 2024 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-grpc. DO NOT EDIT.
6
// versions:
7
// - protoc-gen-go-grpc v1.2.0
8
// - protoc (unknown)
9
// source: usage/v1/billing.proto
10
11
package v1
12
13
import (
14
context "context"
15
grpc "google.golang.org/grpc"
16
codes "google.golang.org/grpc/codes"
17
status "google.golang.org/grpc/status"
18
)
19
20
// This is a compile-time assertion to ensure that this generated file
21
// is compatible with the grpc package it is being compiled against.
22
// Requires gRPC-Go v1.32.0 or later.
23
const _ = grpc.SupportPackageIsVersion7
24
25
// BillingServiceClient is the client API for BillingService service.
26
//
27
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
28
type BillingServiceClient interface {
29
// ReconcileInvoices retrieves current credit balance and reflects it in
30
// billing system. Internal RPC, not intended for general consumption.
31
ReconcileInvoices(ctx context.Context, in *ReconcileInvoicesRequest, opts ...grpc.CallOption) (*ReconcileInvoicesResponse, error)
32
// FinalizeInvoice marks all sessions occurring in the given Stripe invoice as
33
// having been invoiced.
34
FinalizeInvoice(ctx context.Context, in *FinalizeInvoiceRequest, opts ...grpc.CallOption) (*FinalizeInvoiceResponse, error)
35
// CancelSubscription cancels a stripe subscription in our system
36
// Called by a stripe webhook
37
CancelSubscription(ctx context.Context, in *CancelSubscriptionRequest, opts ...grpc.CallOption) (*CancelSubscriptionResponse, error)
38
// GetStripeCustomer retrieves a Stripe Customer
39
GetStripeCustomer(ctx context.Context, in *GetStripeCustomerRequest, opts ...grpc.CallOption) (*GetStripeCustomerResponse, error)
40
CreateStripeCustomer(ctx context.Context, in *CreateStripeCustomerRequest, opts ...grpc.CallOption) (*CreateStripeCustomerResponse, error)
41
// CreateHoldPaymentIntent is meant to create a PaymentIntent for the given
42
// customer, that is meant as measure to verify the payment
43
// method/creditability of this user on first signup, before we create the
44
// subscription
45
CreateHoldPaymentIntent(ctx context.Context, in *CreateHoldPaymentIntentRequest, opts ...grpc.CallOption) (*CreateHoldPaymentIntentResponse, error)
46
CreateStripeSubscription(ctx context.Context, in *CreateStripeSubscriptionRequest, opts ...grpc.CallOption) (*CreateStripeSubscriptionResponse, error)
47
UpdateCustomerSubscriptionsTaxState(ctx context.Context, in *UpdateCustomerSubscriptionsTaxStateRequest, opts ...grpc.CallOption) (*UpdateCustomerSubscriptionsTaxStateResponse, error)
48
// GetPriceInformation returns the price information for a given attribtion id
49
GetPriceInformation(ctx context.Context, in *GetPriceInformationRequest, opts ...grpc.CallOption) (*GetPriceInformationResponse, error)
50
// OnChargeDispute handles charge disputes created with the underlying payment
51
// provider.
52
OnChargeDispute(ctx context.Context, in *OnChargeDisputeRequest, opts ...grpc.CallOption) (*OnChargeDisputeResponse, error)
53
}
54
55
type billingServiceClient struct {
56
cc grpc.ClientConnInterface
57
}
58
59
func NewBillingServiceClient(cc grpc.ClientConnInterface) BillingServiceClient {
60
return &billingServiceClient{cc}
61
}
62
63
func (c *billingServiceClient) ReconcileInvoices(ctx context.Context, in *ReconcileInvoicesRequest, opts ...grpc.CallOption) (*ReconcileInvoicesResponse, error) {
64
out := new(ReconcileInvoicesResponse)
65
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/ReconcileInvoices", in, out, opts...)
66
if err != nil {
67
return nil, err
68
}
69
return out, nil
70
}
71
72
func (c *billingServiceClient) FinalizeInvoice(ctx context.Context, in *FinalizeInvoiceRequest, opts ...grpc.CallOption) (*FinalizeInvoiceResponse, error) {
73
out := new(FinalizeInvoiceResponse)
74
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/FinalizeInvoice", in, out, opts...)
75
if err != nil {
76
return nil, err
77
}
78
return out, nil
79
}
80
81
func (c *billingServiceClient) CancelSubscription(ctx context.Context, in *CancelSubscriptionRequest, opts ...grpc.CallOption) (*CancelSubscriptionResponse, error) {
82
out := new(CancelSubscriptionResponse)
83
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/CancelSubscription", in, out, opts...)
84
if err != nil {
85
return nil, err
86
}
87
return out, nil
88
}
89
90
func (c *billingServiceClient) GetStripeCustomer(ctx context.Context, in *GetStripeCustomerRequest, opts ...grpc.CallOption) (*GetStripeCustomerResponse, error) {
91
out := new(GetStripeCustomerResponse)
92
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/GetStripeCustomer", in, out, opts...)
93
if err != nil {
94
return nil, err
95
}
96
return out, nil
97
}
98
99
func (c *billingServiceClient) CreateStripeCustomer(ctx context.Context, in *CreateStripeCustomerRequest, opts ...grpc.CallOption) (*CreateStripeCustomerResponse, error) {
100
out := new(CreateStripeCustomerResponse)
101
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/CreateStripeCustomer", in, out, opts...)
102
if err != nil {
103
return nil, err
104
}
105
return out, nil
106
}
107
108
func (c *billingServiceClient) CreateHoldPaymentIntent(ctx context.Context, in *CreateHoldPaymentIntentRequest, opts ...grpc.CallOption) (*CreateHoldPaymentIntentResponse, error) {
109
out := new(CreateHoldPaymentIntentResponse)
110
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/CreateHoldPaymentIntent", in, out, opts...)
111
if err != nil {
112
return nil, err
113
}
114
return out, nil
115
}
116
117
func (c *billingServiceClient) CreateStripeSubscription(ctx context.Context, in *CreateStripeSubscriptionRequest, opts ...grpc.CallOption) (*CreateStripeSubscriptionResponse, error) {
118
out := new(CreateStripeSubscriptionResponse)
119
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/CreateStripeSubscription", in, out, opts...)
120
if err != nil {
121
return nil, err
122
}
123
return out, nil
124
}
125
126
func (c *billingServiceClient) UpdateCustomerSubscriptionsTaxState(ctx context.Context, in *UpdateCustomerSubscriptionsTaxStateRequest, opts ...grpc.CallOption) (*UpdateCustomerSubscriptionsTaxStateResponse, error) {
127
out := new(UpdateCustomerSubscriptionsTaxStateResponse)
128
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/UpdateCustomerSubscriptionsTaxState", in, out, opts...)
129
if err != nil {
130
return nil, err
131
}
132
return out, nil
133
}
134
135
func (c *billingServiceClient) GetPriceInformation(ctx context.Context, in *GetPriceInformationRequest, opts ...grpc.CallOption) (*GetPriceInformationResponse, error) {
136
out := new(GetPriceInformationResponse)
137
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/GetPriceInformation", in, out, opts...)
138
if err != nil {
139
return nil, err
140
}
141
return out, nil
142
}
143
144
func (c *billingServiceClient) OnChargeDispute(ctx context.Context, in *OnChargeDisputeRequest, opts ...grpc.CallOption) (*OnChargeDisputeResponse, error) {
145
out := new(OnChargeDisputeResponse)
146
err := c.cc.Invoke(ctx, "/usage.v1.BillingService/OnChargeDispute", in, out, opts...)
147
if err != nil {
148
return nil, err
149
}
150
return out, nil
151
}
152
153
// BillingServiceServer is the server API for BillingService service.
154
// All implementations must embed UnimplementedBillingServiceServer
155
// for forward compatibility
156
type BillingServiceServer interface {
157
// ReconcileInvoices retrieves current credit balance and reflects it in
158
// billing system. Internal RPC, not intended for general consumption.
159
ReconcileInvoices(context.Context, *ReconcileInvoicesRequest) (*ReconcileInvoicesResponse, error)
160
// FinalizeInvoice marks all sessions occurring in the given Stripe invoice as
161
// having been invoiced.
162
FinalizeInvoice(context.Context, *FinalizeInvoiceRequest) (*FinalizeInvoiceResponse, error)
163
// CancelSubscription cancels a stripe subscription in our system
164
// Called by a stripe webhook
165
CancelSubscription(context.Context, *CancelSubscriptionRequest) (*CancelSubscriptionResponse, error)
166
// GetStripeCustomer retrieves a Stripe Customer
167
GetStripeCustomer(context.Context, *GetStripeCustomerRequest) (*GetStripeCustomerResponse, error)
168
CreateStripeCustomer(context.Context, *CreateStripeCustomerRequest) (*CreateStripeCustomerResponse, error)
169
// CreateHoldPaymentIntent is meant to create a PaymentIntent for the given
170
// customer, that is meant as measure to verify the payment
171
// method/creditability of this user on first signup, before we create the
172
// subscription
173
CreateHoldPaymentIntent(context.Context, *CreateHoldPaymentIntentRequest) (*CreateHoldPaymentIntentResponse, error)
174
CreateStripeSubscription(context.Context, *CreateStripeSubscriptionRequest) (*CreateStripeSubscriptionResponse, error)
175
UpdateCustomerSubscriptionsTaxState(context.Context, *UpdateCustomerSubscriptionsTaxStateRequest) (*UpdateCustomerSubscriptionsTaxStateResponse, error)
176
// GetPriceInformation returns the price information for a given attribtion id
177
GetPriceInformation(context.Context, *GetPriceInformationRequest) (*GetPriceInformationResponse, error)
178
// OnChargeDispute handles charge disputes created with the underlying payment
179
// provider.
180
OnChargeDispute(context.Context, *OnChargeDisputeRequest) (*OnChargeDisputeResponse, error)
181
mustEmbedUnimplementedBillingServiceServer()
182
}
183
184
// UnimplementedBillingServiceServer must be embedded to have forward compatible implementations.
185
type UnimplementedBillingServiceServer struct {
186
}
187
188
func (UnimplementedBillingServiceServer) ReconcileInvoices(context.Context, *ReconcileInvoicesRequest) (*ReconcileInvoicesResponse, error) {
189
return nil, status.Errorf(codes.Unimplemented, "method ReconcileInvoices not implemented")
190
}
191
func (UnimplementedBillingServiceServer) FinalizeInvoice(context.Context, *FinalizeInvoiceRequest) (*FinalizeInvoiceResponse, error) {
192
return nil, status.Errorf(codes.Unimplemented, "method FinalizeInvoice not implemented")
193
}
194
func (UnimplementedBillingServiceServer) CancelSubscription(context.Context, *CancelSubscriptionRequest) (*CancelSubscriptionResponse, error) {
195
return nil, status.Errorf(codes.Unimplemented, "method CancelSubscription not implemented")
196
}
197
func (UnimplementedBillingServiceServer) GetStripeCustomer(context.Context, *GetStripeCustomerRequest) (*GetStripeCustomerResponse, error) {
198
return nil, status.Errorf(codes.Unimplemented, "method GetStripeCustomer not implemented")
199
}
200
func (UnimplementedBillingServiceServer) CreateStripeCustomer(context.Context, *CreateStripeCustomerRequest) (*CreateStripeCustomerResponse, error) {
201
return nil, status.Errorf(codes.Unimplemented, "method CreateStripeCustomer not implemented")
202
}
203
func (UnimplementedBillingServiceServer) CreateHoldPaymentIntent(context.Context, *CreateHoldPaymentIntentRequest) (*CreateHoldPaymentIntentResponse, error) {
204
return nil, status.Errorf(codes.Unimplemented, "method CreateHoldPaymentIntent not implemented")
205
}
206
func (UnimplementedBillingServiceServer) CreateStripeSubscription(context.Context, *CreateStripeSubscriptionRequest) (*CreateStripeSubscriptionResponse, error) {
207
return nil, status.Errorf(codes.Unimplemented, "method CreateStripeSubscription not implemented")
208
}
209
func (UnimplementedBillingServiceServer) UpdateCustomerSubscriptionsTaxState(context.Context, *UpdateCustomerSubscriptionsTaxStateRequest) (*UpdateCustomerSubscriptionsTaxStateResponse, error) {
210
return nil, status.Errorf(codes.Unimplemented, "method UpdateCustomerSubscriptionsTaxState not implemented")
211
}
212
func (UnimplementedBillingServiceServer) GetPriceInformation(context.Context, *GetPriceInformationRequest) (*GetPriceInformationResponse, error) {
213
return nil, status.Errorf(codes.Unimplemented, "method GetPriceInformation not implemented")
214
}
215
func (UnimplementedBillingServiceServer) OnChargeDispute(context.Context, *OnChargeDisputeRequest) (*OnChargeDisputeResponse, error) {
216
return nil, status.Errorf(codes.Unimplemented, "method OnChargeDispute not implemented")
217
}
218
func (UnimplementedBillingServiceServer) mustEmbedUnimplementedBillingServiceServer() {}
219
220
// UnsafeBillingServiceServer may be embedded to opt out of forward compatibility for this service.
221
// Use of this interface is not recommended, as added methods to BillingServiceServer will
222
// result in compilation errors.
223
type UnsafeBillingServiceServer interface {
224
mustEmbedUnimplementedBillingServiceServer()
225
}
226
227
func RegisterBillingServiceServer(s grpc.ServiceRegistrar, srv BillingServiceServer) {
228
s.RegisterService(&BillingService_ServiceDesc, srv)
229
}
230
231
func _BillingService_ReconcileInvoices_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
232
in := new(ReconcileInvoicesRequest)
233
if err := dec(in); err != nil {
234
return nil, err
235
}
236
if interceptor == nil {
237
return srv.(BillingServiceServer).ReconcileInvoices(ctx, in)
238
}
239
info := &grpc.UnaryServerInfo{
240
Server: srv,
241
FullMethod: "/usage.v1.BillingService/ReconcileInvoices",
242
}
243
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
244
return srv.(BillingServiceServer).ReconcileInvoices(ctx, req.(*ReconcileInvoicesRequest))
245
}
246
return interceptor(ctx, in, info, handler)
247
}
248
249
func _BillingService_FinalizeInvoice_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
250
in := new(FinalizeInvoiceRequest)
251
if err := dec(in); err != nil {
252
return nil, err
253
}
254
if interceptor == nil {
255
return srv.(BillingServiceServer).FinalizeInvoice(ctx, in)
256
}
257
info := &grpc.UnaryServerInfo{
258
Server: srv,
259
FullMethod: "/usage.v1.BillingService/FinalizeInvoice",
260
}
261
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
262
return srv.(BillingServiceServer).FinalizeInvoice(ctx, req.(*FinalizeInvoiceRequest))
263
}
264
return interceptor(ctx, in, info, handler)
265
}
266
267
func _BillingService_CancelSubscription_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
268
in := new(CancelSubscriptionRequest)
269
if err := dec(in); err != nil {
270
return nil, err
271
}
272
if interceptor == nil {
273
return srv.(BillingServiceServer).CancelSubscription(ctx, in)
274
}
275
info := &grpc.UnaryServerInfo{
276
Server: srv,
277
FullMethod: "/usage.v1.BillingService/CancelSubscription",
278
}
279
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
280
return srv.(BillingServiceServer).CancelSubscription(ctx, req.(*CancelSubscriptionRequest))
281
}
282
return interceptor(ctx, in, info, handler)
283
}
284
285
func _BillingService_GetStripeCustomer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
286
in := new(GetStripeCustomerRequest)
287
if err := dec(in); err != nil {
288
return nil, err
289
}
290
if interceptor == nil {
291
return srv.(BillingServiceServer).GetStripeCustomer(ctx, in)
292
}
293
info := &grpc.UnaryServerInfo{
294
Server: srv,
295
FullMethod: "/usage.v1.BillingService/GetStripeCustomer",
296
}
297
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
298
return srv.(BillingServiceServer).GetStripeCustomer(ctx, req.(*GetStripeCustomerRequest))
299
}
300
return interceptor(ctx, in, info, handler)
301
}
302
303
func _BillingService_CreateStripeCustomer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
304
in := new(CreateStripeCustomerRequest)
305
if err := dec(in); err != nil {
306
return nil, err
307
}
308
if interceptor == nil {
309
return srv.(BillingServiceServer).CreateStripeCustomer(ctx, in)
310
}
311
info := &grpc.UnaryServerInfo{
312
Server: srv,
313
FullMethod: "/usage.v1.BillingService/CreateStripeCustomer",
314
}
315
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
316
return srv.(BillingServiceServer).CreateStripeCustomer(ctx, req.(*CreateStripeCustomerRequest))
317
}
318
return interceptor(ctx, in, info, handler)
319
}
320
321
func _BillingService_CreateHoldPaymentIntent_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
322
in := new(CreateHoldPaymentIntentRequest)
323
if err := dec(in); err != nil {
324
return nil, err
325
}
326
if interceptor == nil {
327
return srv.(BillingServiceServer).CreateHoldPaymentIntent(ctx, in)
328
}
329
info := &grpc.UnaryServerInfo{
330
Server: srv,
331
FullMethod: "/usage.v1.BillingService/CreateHoldPaymentIntent",
332
}
333
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
334
return srv.(BillingServiceServer).CreateHoldPaymentIntent(ctx, req.(*CreateHoldPaymentIntentRequest))
335
}
336
return interceptor(ctx, in, info, handler)
337
}
338
339
func _BillingService_CreateStripeSubscription_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
340
in := new(CreateStripeSubscriptionRequest)
341
if err := dec(in); err != nil {
342
return nil, err
343
}
344
if interceptor == nil {
345
return srv.(BillingServiceServer).CreateStripeSubscription(ctx, in)
346
}
347
info := &grpc.UnaryServerInfo{
348
Server: srv,
349
FullMethod: "/usage.v1.BillingService/CreateStripeSubscription",
350
}
351
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
352
return srv.(BillingServiceServer).CreateStripeSubscription(ctx, req.(*CreateStripeSubscriptionRequest))
353
}
354
return interceptor(ctx, in, info, handler)
355
}
356
357
func _BillingService_UpdateCustomerSubscriptionsTaxState_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
358
in := new(UpdateCustomerSubscriptionsTaxStateRequest)
359
if err := dec(in); err != nil {
360
return nil, err
361
}
362
if interceptor == nil {
363
return srv.(BillingServiceServer).UpdateCustomerSubscriptionsTaxState(ctx, in)
364
}
365
info := &grpc.UnaryServerInfo{
366
Server: srv,
367
FullMethod: "/usage.v1.BillingService/UpdateCustomerSubscriptionsTaxState",
368
}
369
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
370
return srv.(BillingServiceServer).UpdateCustomerSubscriptionsTaxState(ctx, req.(*UpdateCustomerSubscriptionsTaxStateRequest))
371
}
372
return interceptor(ctx, in, info, handler)
373
}
374
375
func _BillingService_GetPriceInformation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
376
in := new(GetPriceInformationRequest)
377
if err := dec(in); err != nil {
378
return nil, err
379
}
380
if interceptor == nil {
381
return srv.(BillingServiceServer).GetPriceInformation(ctx, in)
382
}
383
info := &grpc.UnaryServerInfo{
384
Server: srv,
385
FullMethod: "/usage.v1.BillingService/GetPriceInformation",
386
}
387
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
388
return srv.(BillingServiceServer).GetPriceInformation(ctx, req.(*GetPriceInformationRequest))
389
}
390
return interceptor(ctx, in, info, handler)
391
}
392
393
func _BillingService_OnChargeDispute_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
394
in := new(OnChargeDisputeRequest)
395
if err := dec(in); err != nil {
396
return nil, err
397
}
398
if interceptor == nil {
399
return srv.(BillingServiceServer).OnChargeDispute(ctx, in)
400
}
401
info := &grpc.UnaryServerInfo{
402
Server: srv,
403
FullMethod: "/usage.v1.BillingService/OnChargeDispute",
404
}
405
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
406
return srv.(BillingServiceServer).OnChargeDispute(ctx, req.(*OnChargeDisputeRequest))
407
}
408
return interceptor(ctx, in, info, handler)
409
}
410
411
// BillingService_ServiceDesc is the grpc.ServiceDesc for BillingService service.
412
// It's only intended for direct use with grpc.RegisterService,
413
// and not to be introspected or modified (even as a copy)
414
var BillingService_ServiceDesc = grpc.ServiceDesc{
415
ServiceName: "usage.v1.BillingService",
416
HandlerType: (*BillingServiceServer)(nil),
417
Methods: []grpc.MethodDesc{
418
{
419
MethodName: "ReconcileInvoices",
420
Handler: _BillingService_ReconcileInvoices_Handler,
421
},
422
{
423
MethodName: "FinalizeInvoice",
424
Handler: _BillingService_FinalizeInvoice_Handler,
425
},
426
{
427
MethodName: "CancelSubscription",
428
Handler: _BillingService_CancelSubscription_Handler,
429
},
430
{
431
MethodName: "GetStripeCustomer",
432
Handler: _BillingService_GetStripeCustomer_Handler,
433
},
434
{
435
MethodName: "CreateStripeCustomer",
436
Handler: _BillingService_CreateStripeCustomer_Handler,
437
},
438
{
439
MethodName: "CreateHoldPaymentIntent",
440
Handler: _BillingService_CreateHoldPaymentIntent_Handler,
441
},
442
{
443
MethodName: "CreateStripeSubscription",
444
Handler: _BillingService_CreateStripeSubscription_Handler,
445
},
446
{
447
MethodName: "UpdateCustomerSubscriptionsTaxState",
448
Handler: _BillingService_UpdateCustomerSubscriptionsTaxState_Handler,
449
},
450
{
451
MethodName: "GetPriceInformation",
452
Handler: _BillingService_GetPriceInformation_Handler,
453
},
454
{
455
MethodName: "OnChargeDispute",
456
Handler: _BillingService_OnChargeDispute_Handler,
457
},
458
},
459
Streams: []grpc.StreamDesc{},
460
Metadata: "usage/v1/billing.proto",
461
}
462
463