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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
use eiktyrner::{content, HttpClient};
use crate::{Param, PathAndQueryBuilder, Result};

use crate::Client;
use crate::models::{
     CreatedView,
     DateTime,
     Guid,
     IncomingPaymentRequestView,
     IncomingPaymentsView,
     OutgoingPaymentStatusView,
     OutgoingPaymentStatusesView,
     OutgoingPaymentView,
     PaymentMatchResultsView,
     PaymentMatchesView,
     SwishPaymentStatusView,
     UnhandledPaymentView,
     UnhandledPaymentsView,
    
};


impl Client {
    
    

/// Cancels a Swish payment requests and removes the payment request on the end users Swish app on their cell phone. 
/// - **id**: Invoice action public id
pub async fn payments_cancel_swish_payment_request(&self,id: String,
                         
) -> Result<()> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("swish"))
        .url(Param::value(id))
        .build();






    let request = self.new_request(
        http::method::Method::DELETE,
        path_and_query,
    )
    .body(content::Empty).expect("setting json body");
    
    self.client.send::<_, content::Empty>(request).await
    
}
    
    

/// Creates/Initiates a Swish payment request that will start a payment and initiate the payment request on the end users Swish app on their cell phone. Get the status of the payment by polling the GET endpoint. For more information see 
/// - **id**: Invoice action public id
/// - **phone**: Payer phone number
/// - **message**: Message to show on completed payment. Max 50 letters
pub async fn payments_create_swish_payment_request(&self,id: String,
                         phone: String,
                         message: Option<String>,
                         
) -> Result<CreatedView> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("swish"))
        .url(Param::value(id))
        .query("phone", Param::value(phone))
        .query("message", Param::opt(message))
        .build();






    let request = self.new_request(
        http::method::Method::POST,
        path_and_query,
    )
    .body(content::Empty).expect("setting json body");
    
    self.client.send::<_, content::Json<_>>(request).await
    
}
    
    

/// Create a standalone outgoing payment from your bankgiro. Please note that no bookkeeping is made for these payments. Alternative is to use self invoice or supplier invoice where bookkeeping is made. Status of the outgoing payment is made through a call to 'Get outgoing payment statuses', 'Get outgoing payment status for a payment' or view the Outgoingpayments report in the Portal.
pub async fn payments_create_an_outgoing_payment(&self,body: OutgoingPaymentView,
                         
) -> Result<CreatedView> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("outgoingpayments"))
        .build();






    let request = self.new_request(
        http::method::Method::POST,
        path_and_query,
    )
    .body(content::Json(body)).expect("setting json body");
    
    self.client.send::<_, content::Json<_>>(request).await
    
}
    
    

/// Cancel a standalone outgoing payment. This is a pure API feature. Status of the outgoing payment is made through a call to 'Get outgoing payment statuses'
/// - **id**: Outgoing payment public id
pub async fn payments_delete_an_outgoing_payment(&self,id: Guid,
                         
) -> Result<()> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("outgoingpayments"))
        .url(Param::value(id))
        .build();






    let request = self.new_request(
        http::method::Method::DELETE,
        path_and_query,
    )
    .body(content::Empty).expect("setting json body");
    
    self.client.send::<_, content::Empty>(request).await
    
}
    
    

/// Removed an unhandled payment from the system and book it if needed. This can be used if the unhandled payments are for an invoice that was not created or exists in Billecta
/// - **paymentpublicid**: Unhandled payment id
/// - **bookkeepingaccount**: Bookkeeping account used for balancíng
/// - **transactiondate**: Transaction date
pub async fn payments_delete_unhandled_payment(&self,paymentpublicid: Guid,
                         bookkeepingaccount: String,
                         transactiondate: DateTime,
                         
) -> Result<()> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("unhandledpayments"))
        .query("paymentpublicid", Param::value(paymentpublicid))
        .query("bookkeepingaccount", Param::value(bookkeepingaccount))
        .query("transactiondate", Param::value(transactiondate))
        .build();






    let request = self.new_request(
        http::method::Method::DELETE,
        path_and_query,
    )
    .body(content::Empty).expect("setting json body");
    
    self.client.send::<_, content::Empty>(request).await
    
}
    
    

/// Gets the status for the Swish payment request. A payment request must first be created/initiated by the POST endpoint. Use the returned token in the POST endpoint to retrieve status.
/// - **id**: Swish payment token
pub async fn payments_get_swish_payment_status(&self,id: String,
                         
) -> Result<SwishPaymentStatusView> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("swish"))
        .url(Param::value(id))
        .build();






    let request = self.new_request(
        http::method::Method::GET,
        path_and_query,
    )
    .body(content::Empty).expect("setting json body");
    
    self.client.send::<_, content::Json<_>>(request).await
    
}
    
    

/// Gets all incoming payments that has been matched/connected to an invoice. Unhandled/Unknown payments that are not related to any invoice will not be retrieved in this method. Please refer to 'Get unhandled payments' endpoint.
pub async fn payments_get_incoming_payments(&self,body: IncomingPaymentRequestView,
                         
) -> Result<IncomingPaymentsView> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("incomingpayments"))
        .build();






    let request = self.new_request(
        http::method::Method::PUT,
        path_and_query,
    )
    .body(content::Json(body)).expect("setting json body");
    
    self.client.send::<_, content::Json<_>>(request).await
    
}
    
    

/// Retrieves the status of single outgoing payment.
/// - **id**: Payment public id
pub async fn payments_get_outgoing_payment_status(&self,id: Guid,
                         
) -> Result<OutgoingPaymentStatusView> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("outgoingpayments"))
        .url(Param::value(id))
        .build();






    let request = self.new_request(
        http::method::Method::GET,
        path_and_query,
    )
    .body(content::Empty).expect("setting json body");
    
    self.client.send::<_, content::Json<_>>(request).await
    
}
    
    

/// Retrieves the status of all outgoing payments between two dates.
/// - **id**: Creditor public id
/// - **from**: Payments created from date
/// - **to**: Payments created to date
pub async fn payments_get_outgoing_payment_statuses_list_of_payments(&self,id: Guid,
                         from: DateTime,
                         to: DateTime,
                         
) -> Result<OutgoingPaymentStatusesView> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("outgoingpayments"))
        .url(Param::value(id))
        .query("from", Param::value(from))
        .query("to", Param::value(to))
        .build();






    let request = self.new_request(
        http::method::Method::GET,
        path_and_query,
    )
    .body(content::Empty).expect("setting json body");
    
    self.client.send::<_, content::Json<_>>(request).await
    
}
    
    

/// Retrieves all unhandled payments. An unhandled payment is an incoming payment that can't be connected to any invoice due to that the reference (OCR/invoice number/sender/etc) is unknown and can't be found in the system. Unhandled payments are handled through the MatchPayments endpoint.
/// - **id**: Creditor public id
pub async fn payments_get_unhandled_payments(&self,id: Guid,
                         
) -> Result<UnhandledPaymentsView> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("unhandledpayments"))
        .url(Param::value(id))
        .build();






    let request = self.new_request(
        http::method::Method::GET,
        path_and_query,
    )
    .body(content::Empty).expect("setting json body");
    
    self.client.send::<_, content::Json<_>>(request).await
    
}
    
    

/// Connects an unhandled payment that the system automatically couldn't connect.
/// - **id**: Creditor public id
pub async fn payments_match_unhandled_payments(&self,id: Guid,
                         body: PaymentMatchesView,
                         
) -> Result<PaymentMatchResultsView> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("matchpayments"))
        .url(Param::value(id))
        .build();






    let request = self.new_request(
        http::method::Method::POST,
        path_and_query,
    )
    .body(content::Json(body)).expect("setting json body");
    
    self.client.send::<_, content::Json<_>>(request).await
    
}
    
    

/// Creates an unhandled or over payment. This endpoint is only available in test enviroment
pub async fn payments_only_for_test_enviroment_create_unhadled_over_payment(&self,body: UnhandledPaymentView,
                         
) -> Result<CreatedView> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("unhandledpayments"))
        .build();






    let request = self.new_request(
        http::method::Method::POST,
        path_and_query,
    )
    .body(content::Json(body)).expect("setting json body");
    
    self.client.send::<_, content::Json<_>>(request).await
    
}
    
    

/// Sets the status of single outgoing payment. This endpoint is only available in test enviroment
/// - **id**: Payment public id
/// - **wassuccessful**: Succeded or failed
pub async fn payments_only_for_test_enviroment_mark_outgoing_payment_as_succeded_failed(&self,id: Guid,
                         wassuccessful: bool,
                         
) -> Result<()> {


    let path_and_query = PathAndQueryBuilder::new()
        .url(Param::value("v1"))
        .url(Param::value("payments"))
        .url(Param::value("outgoingpayments"))
        .url(Param::value(id))
        .query("wassuccessful", Param::value(wassuccessful))
        .build();






    let request = self.new_request(
        http::method::Method::PUT,
        path_and_query,
    )
    .body(content::Empty).expect("setting json body");
    
    self.client.send::<_, content::Empty>(request).await
    
}
    
}