-
Notifications
You must be signed in to change notification settings - Fork 1
/
api_exports_controller.go
330 lines (299 loc) · 14 KB
/
api_exports_controller.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/*
Package advancedbilling
This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
package advancedbilling
import (
"context"
"fmt"
"github.com/apimatic/go-core-runtime/https"
"github.com/apimatic/go-core-runtime/utilities"
"github.com/maxio-com/ab-golang-sdk/errors"
"github.com/maxio-com/ab-golang-sdk/models"
)
// APIExportsController represents a controller struct.
type APIExportsController struct {
baseController
}
// NewAPIExportsController creates a new instance of APIExportsController.
// It takes a baseController as a parameter and returns a pointer to the APIExportsController.
func NewAPIExportsController(baseController baseController) *APIExportsController {
aPIExportsController := APIExportsController{baseController: baseController}
return &aPIExportsController
}
// ListExportedProformaInvoicesInput represents the input of the ListExportedProformaInvoices endpoint.
type ListExportedProformaInvoicesInput struct {
// Id of a Batch Job.
BatchId string
// This parameter indicates how many records to fetch in each request.
// Default value is 100.
// The maximum allowed values is 10000; any per_page value over 10000 will be changed to 10000.
PerPage *int
// Result records are organized in pages. By default, the first page of results is displayed. The page parameter specifies a page number of results to fetch. You can start navigating through the pages to consume the results. You do this by passing in a page parameter. Retrieve the next page by adding ?page=2 to the query string. If there are no results to return, then an empty result set will be returned.
// Use in query `page=1`.
Page *int
}
// ListExportedProformaInvoices takes context, batchId, perPage, page as parameters and
// returns an models.ApiResponse with []models.ProformaInvoice data and
// an error if there was an issue with the request or response.
// This API returns an array of exported proforma invoices for a provided `batch_id`. Pay close attention to pagination in order to control responses from the server.
// Example: `GET https://{subdomain}.chargify.com/api_exports/proforma_invoices/123/rows?per_page=10000&page=1`.
func (a *APIExportsController) ListExportedProformaInvoices(
ctx context.Context,
input ListExportedProformaInvoicesInput) (
models.ApiResponse[[]models.ProformaInvoice],
error) {
req := a.prepareRequest(
ctx,
"GET",
fmt.Sprintf("/api_exports/proforma_invoices/%v/rows.json", input.BatchId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
})
if input.PerPage != nil {
req.QueryParam("per_page", *input.PerPage)
}
if input.Page != nil {
req.QueryParam("page", *input.Page)
}
var result []models.ProformaInvoice
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[[]models.ProformaInvoice](decoder)
return models.NewApiResponse(result, resp), err
}
// ListExportedInvoicesInput represents the input of the ListExportedInvoices endpoint.
type ListExportedInvoicesInput struct {
// Id of a Batch Job.
BatchId string
// This parameter indicates how many records to fetch in each request.
// Default value is 100.
// The maximum allowed values is 10000; any per_page value over 10000 will be changed to 10000.
PerPage *int
// Result records are organized in pages. By default, the first page of results is displayed. The page parameter specifies a page number of results to fetch. You can start navigating through the pages to consume the results. You do this by passing in a page parameter. Retrieve the next page by adding ?page=2 to the query string. If there are no results to return, then an empty result set will be returned.
// Use in query `page=1`.
Page *int
}
// ListExportedInvoices takes context, batchId, perPage, page as parameters and
// returns an models.ApiResponse with []models.Invoice data and
// an error if there was an issue with the request or response.
// This API returns an array of exported invoices for a provided `batch_id`. Pay close attention to pagination in order to control responses from the server.
// Example: `GET https://{subdomain}.chargify.com/api_exports/invoices/123/rows?per_page=10000&page=1`.
func (a *APIExportsController) ListExportedInvoices(
ctx context.Context,
input ListExportedInvoicesInput) (
models.ApiResponse[[]models.Invoice],
error) {
req := a.prepareRequest(
ctx,
"GET",
fmt.Sprintf("/api_exports/invoices/%v/rows.json", input.BatchId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
})
if input.PerPage != nil {
req.QueryParam("per_page", *input.PerPage)
}
if input.Page != nil {
req.QueryParam("page", *input.Page)
}
var result []models.Invoice
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[[]models.Invoice](decoder)
return models.NewApiResponse(result, resp), err
}
// ListExportedSubscriptionsInput represents the input of the ListExportedSubscriptions endpoint.
type ListExportedSubscriptionsInput struct {
// Id of a Batch Job.
BatchId string
// This parameter indicates how many records to fetch in each request.
// Default value is 100.
// The maximum allowed values is 10000; any per_page value over 10000 will be changed to 10000.
PerPage *int
// Result records are organized in pages. By default, the first page of results is displayed. The page parameter specifies a page number of results to fetch. You can start navigating through the pages to consume the results. You do this by passing in a page parameter. Retrieve the next page by adding ?page=2 to the query string. If there are no results to return, then an empty result set will be returned.
// Use in query `page=1`.
Page *int
}
// ListExportedSubscriptions takes context, batchId, perPage, page as parameters and
// returns an models.ApiResponse with []models.Subscription data and
// an error if there was an issue with the request or response.
// This API returns an array of exported subscriptions for a provided `batch_id`. Pay close attention to pagination in order to control responses from the server.
// Example: `GET https://{subdomain}.chargify.com/api_exports/subscriptions/123/rows?per_page=200&page=1`.
func (a *APIExportsController) ListExportedSubscriptions(
ctx context.Context,
input ListExportedSubscriptionsInput) (
models.ApiResponse[[]models.Subscription],
error) {
req := a.prepareRequest(
ctx,
"GET",
fmt.Sprintf("/api_exports/subscriptions/%v/rows.json", input.BatchId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
})
if input.PerPage != nil {
req.QueryParam("per_page", *input.PerPage)
}
if input.Page != nil {
req.QueryParam("page", *input.Page)
}
var result []models.Subscription
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[[]models.Subscription](decoder)
return models.NewApiResponse(result, resp), err
}
// ExportProformaInvoices takes context as parameters and
// returns an models.ApiResponse with models.BatchJobResponse data and
// an error if there was an issue with the request or response.
// This API creates a proforma invoices export and returns a batchjob object.
// It is only available for Relationship Invoicing architecture.
func (a *APIExportsController) ExportProformaInvoices(ctx context.Context) (
models.ApiResponse[models.BatchJobResponse],
error) {
req := a.prepareRequest(ctx, "POST", "/api_exports/proforma_invoices.json")
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
"409": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewSingleErrorResponse},
})
var result models.BatchJobResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.BatchJobResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// ExportInvoices takes context as parameters and
// returns an models.ApiResponse with models.BatchJobResponse data and
// an error if there was an issue with the request or response.
// This API creates an invoices export and returns a batchjob object.
func (a *APIExportsController) ExportInvoices(ctx context.Context) (
models.ApiResponse[models.BatchJobResponse],
error) {
req := a.prepareRequest(ctx, "POST", "/api_exports/invoices.json")
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
"409": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewSingleErrorResponse},
})
var result models.BatchJobResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.BatchJobResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// ExportSubscriptions takes context as parameters and
// returns an models.ApiResponse with models.BatchJobResponse data and
// an error if there was an issue with the request or response.
// This API creates a subscriptions export and returns a batchjob object.
func (a *APIExportsController) ExportSubscriptions(ctx context.Context) (
models.ApiResponse[models.BatchJobResponse],
error) {
req := a.prepareRequest(ctx, "POST", "/api_exports/subscriptions.json")
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"409": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewSingleErrorResponse},
})
var result models.BatchJobResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.BatchJobResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// ReadProformaInvoicesExport takes context, batchId as parameters and
// returns an models.ApiResponse with models.BatchJobResponse data and
// an error if there was an issue with the request or response.
// This API returns a batchjob object for proforma invoices export.
func (a *APIExportsController) ReadProformaInvoicesExport(
ctx context.Context,
batchId string) (
models.ApiResponse[models.BatchJobResponse],
error) {
req := a.prepareRequest(
ctx,
"GET",
fmt.Sprintf("/api_exports/proforma_invoices/%v.json", batchId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
})
var result models.BatchJobResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.BatchJobResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// ReadInvoicesExport takes context, batchId as parameters and
// returns an models.ApiResponse with models.BatchJobResponse data and
// an error if there was an issue with the request or response.
// This API returns a batchjob object for invoices export.
func (a *APIExportsController) ReadInvoicesExport(
ctx context.Context,
batchId string) (
models.ApiResponse[models.BatchJobResponse],
error) {
req := a.prepareRequest(
ctx,
"GET",
fmt.Sprintf("/api_exports/invoices/%v.json", batchId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
})
var result models.BatchJobResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.BatchJobResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// ReadSubscriptionsExport takes context, batchId as parameters and
// returns an models.ApiResponse with models.BatchJobResponse data and
// an error if there was an issue with the request or response.
// This API returns a batchjob object for subscriptions export.
func (a *APIExportsController) ReadSubscriptionsExport(
ctx context.Context,
batchId string) (
models.ApiResponse[models.BatchJobResponse],
error) {
req := a.prepareRequest(
ctx,
"GET",
fmt.Sprintf("/api_exports/subscriptions/%v.json", batchId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
})
var result models.BatchJobResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.BatchJobResponse](decoder)
return models.NewApiResponse(result, resp), err
}