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
445
446
447
448
449
450
451
452
use reqwest::Method;
use serde::{Deserialize, Serialize};
use serde_with::skip_serializing_none;
use std::borrow::Cow;
use crate::client::{Client, Endpoint, PayPalError};
use crate::{
AuthorizationStatusDetails, CaptureStatus, CaptureStatusDetails, DisbursementMode,
LinkDescription, Money, PaymentInstruction, PaymentStatus, ProcessorResponse, RefundStatus,
RefundStatusDetails, SellerPayableBreakdown, SellerProtection, SellerReceivableBreakdown,
};
pub struct Payment;
impl Payment {
pub async fn capture_authorized(
client: &Client,
authorization_id: String,
dto: CaptureAuthorizedPaymentDto,
) -> Result<CaptureAuthorizedPaymentResponse, PayPalError> {
client
.post(&CaptureAuthorizedPayment::new(authorization_id, dto))
.await
}
pub async fn refund_captured(
client: &Client,
capture_id: String,
dto: RefundCapturedPaymentDto,
) -> Result<RefundCapturedPaymentResponse, PayPalError> {
client
.post(&RefundCapturedPayment::new(capture_id, dto))
.await
}
pub async fn reauthorize_authorized(
client: &Client,
authorization_id: String,
dto: ReauthorizeAuthorizedPaymentDto,
) -> Result<ReauthorizeAuthorizedPaymentResponse, PayPalError> {
client
.post(&ReauthorizeAuthorizedPayment::new(authorization_id, dto))
.await
}
pub async fn void_authorized(
client: &Client,
authorization_id: String,
) -> Result<(), PayPalError> {
client
.post(&VoidAuthorizedPayment::new(authorization_id))
.await
}
}
#[skip_serializing_none]
#[derive(Clone, Debug, Serialize, Default)]
pub struct CaptureAuthorizedPaymentDto {
pub invoice_id: Option<String>,
pub note_to_payer: Option<String>,
pub amount: Option<Money>,
pub is_final_capture: Option<bool>,
pub payment_instruction: Option<PaymentInstruction>,
pub soft_descriptor: Option<String>,
}
impl CaptureAuthorizedPaymentDto {
pub fn new() -> Self {
Self {
..Default::default()
}
}
pub fn invoice_id(mut self, invoice_id: String) -> Self {
self.invoice_id = Some(invoice_id);
self
}
pub fn note_to_payer(mut self, note_to_payer: String) -> Self {
self.note_to_payer = Some(note_to_payer);
self
}
pub fn amount(mut self, amount: Money) -> Self {
self.amount = Some(amount);
self
}
pub fn is_final_capture(mut self, is_final_capture: bool) -> Self {
self.is_final_capture = Some(is_final_capture);
self
}
pub fn payment_instruction(mut self, payment_instruction: PaymentInstruction) -> Self {
self.payment_instruction = Some(payment_instruction);
self
}
pub fn soft_descriptor(mut self, soft_descriptor: String) -> Self {
self.soft_descriptor = Some(soft_descriptor);
self
}
}
#[skip_serializing_none]
#[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct CaptureAuthorizedPaymentResponse {
pub status: Option<CaptureStatus>,
pub status_details: Option<CaptureStatusDetails>,
pub id: Option<String>,
pub amount: Option<Money>,
pub invoice_id: Option<String>,
pub custom_id: Option<String>,
pub seller_protection: Option<SellerProtection>,
pub final_capture: Option<bool>,
pub seller_receivable_breakdown: Option<SellerReceivableBreakdown>,
pub disbursement_mode: Option<DisbursementMode>,
pub links: Option<Vec<LinkDescription>>,
pub processor_response: Option<ProcessorResponse>,
pub create_time: Option<String>,
pub update_time: Option<String>,
}
#[derive(Debug, Clone)]
struct CaptureAuthorizedPayment {
authorization_id: String,
dto: CaptureAuthorizedPaymentDto,
}
impl Endpoint for CaptureAuthorizedPayment {
type QueryParams = ();
type RequestBody = CaptureAuthorizedPaymentDto;
type ResponseBody = CaptureAuthorizedPaymentResponse;
fn path(&self) -> Cow<str> {
Cow::Owned(format!(
"v2/payments/authorizations/{}/capture",
self.authorization_id
))
}
fn request_body(&self) -> Option<Self::RequestBody> {
Some(self.dto.clone())
}
fn request_method(&self) -> Method {
Method::POST
}
}
impl CaptureAuthorizedPayment {
fn new(authorization_id: String, dto: CaptureAuthorizedPaymentDto) -> Self {
Self {
authorization_id,
dto,
}
}
}
#[skip_serializing_none]
#[derive(Clone, Debug, Serialize)]
pub struct RefundCapturedPaymentDto {
pub amount: Option<Money>,
pub invoice_id: Option<String>,
pub note_to_payer: Option<String>,
}
#[skip_serializing_none]
#[derive(Clone, Debug, Deserialize)]
pub struct RefundCapturedPaymentResponse {
pub amount: Money,
pub create_time: String,
pub id: String,
pub invoice_id: String,
pub links: Vec<LinkDescription>,
pub note_to_payer: String,
pub seller_payable_breakdown: SellerPayableBreakdown,
pub status: RefundStatus,
pub status_details: RefundStatusDetails,
pub update_time: String,
}
#[derive(Debug)]
struct RefundCapturedPayment {
capture_id: String,
amount: Option<Money>,
invoice_id: Option<String>,
note_to_payer: Option<String>,
}
impl RefundCapturedPayment {
pub fn new(capture_id: String, body: RefundCapturedPaymentDto) -> Self {
Self {
capture_id,
amount: body.amount,
invoice_id: body.invoice_id,
note_to_payer: body.note_to_payer,
}
}
}
impl Endpoint for RefundCapturedPayment {
type QueryParams = ();
type RequestBody = RefundCapturedPaymentDto;
type ResponseBody = RefundCapturedPaymentResponse;
fn path(&self) -> Cow<str> {
Cow::Owned(format!("v2/payments/captures/{}/refund", self.capture_id))
}
fn request_body(&self) -> Option<Self::RequestBody> {
Some(RefundCapturedPaymentDto {
amount: self.amount.clone(),
invoice_id: self.invoice_id.clone(),
note_to_payer: self.note_to_payer.clone(),
})
}
fn request_method(&self) -> Method {
Method::POST
}
}
#[skip_serializing_none]
#[derive(Clone, Debug, Serialize)]
pub struct ReauthorizeAuthorizedPaymentDto {
pub amount: Option<Money>,
}
#[skip_serializing_none]
#[derive(Clone, Debug, Deserialize)]
pub struct ReauthorizeAuthorizedPaymentResponse {
pub status: Option<PaymentStatus>,
pub status_details: Option<AuthorizationStatusDetails>,
pub id: Option<String>,
pub amount: Option<Money>,
pub invoice_id: Option<String>,
pub custom_id: Option<String>,
pub seller_protection: Option<SellerProtection>,
pub expiration_time: Option<String>,
pub links: Option<Vec<LinkDescription>>,
pub create_time: Option<String>,
pub update_time: Option<String>,
}
#[derive(Debug)]
struct ReauthorizeAuthorizedPayment {
authorization_id: String,
amount: Option<Money>,
}
impl ReauthorizeAuthorizedPayment {
pub fn new(authorization_id: String, body: ReauthorizeAuthorizedPaymentDto) -> Self {
Self {
authorization_id,
amount: body.amount,
}
}
}
impl Endpoint for ReauthorizeAuthorizedPayment {
type QueryParams = ();
type RequestBody = ReauthorizeAuthorizedPaymentDto;
type ResponseBody = ReauthorizeAuthorizedPaymentResponse;
fn path(&self) -> Cow<str> {
Cow::Owned(format!(
"v2/payments/authorizations/{}/reauthorize",
self.authorization_id
))
}
fn request_body(&self) -> Option<Self::RequestBody> {
Some(ReauthorizeAuthorizedPaymentDto {
amount: self.amount.clone(),
})
}
fn request_method(&self) -> Method {
Method::POST
}
}
struct VoidAuthorizedPayment {
authorization_id: String,
}
impl VoidAuthorizedPayment {
pub fn new(authorization_id: String) -> Self {
Self { authorization_id }
}
}
impl Endpoint for VoidAuthorizedPayment {
type QueryParams = ();
type RequestBody = ();
type ResponseBody = ();
fn path(&self) -> Cow<str> {
Cow::Owned(format!(
"v2/payments/authorizations/{}/void",
self.authorization_id
))
}
fn request_body(&self) -> Option<Self::RequestBody> {
None
}
fn request_method(&self) -> Method {
Method::POST
}
}