-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathCapturesRefundSample.cs
55 lines (51 loc) · 1.86 KB
/
CapturesRefundSample.cs
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
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using PayPalCheckoutSdk.Core;
using PayPalCheckoutSdk.Payments;
using BraintreeHttp;
namespace Samples
{
public class CapturesRefundSample
{
/*
Method for refund the capture. Valid capture Id should be
passed an argument to this method.
*/
public async static Task<HttpResponse> CapturesRefund(string CaptureId, bool debug = false)
{
var request = new CapturesRefundRequest(CaptureId);
request.Prefer("return=representation");
RefundRequest refundRequest = new RefundRequest(){
Amount = new Money{
Value = "20.00",
CurrencyCode = "USD"
}
};
request.RequestBody(refundRequest);
var response = await PayPalClient.client().Execute(request);
if (debug)
{
var result = response.Result<Refund>();
Console.WriteLine("Status: {0}", result.Status);
Console.WriteLine("Refund Id: {0}", result.Id);
Console.WriteLine("Links:");
foreach (LinkDescription link in result.Links)
{
Console.WriteLine("\t{0}: {1}\tCall Type: {2}", link.Rel, link.Href, link.Method);
}
Console.WriteLine("Response JSON: \n {0}", PayPalClient.ObjectToJSONString(result));
}
return response;
}
/*
Driver Function to perform refund on capture.
Capture Id should be replaced with the valid capture id.
*/
// static void Main(string[] args)
// {
// string CaptureId = "<<REPLACE-WITH-VALID-CAPTURE-ID>>";
// CapturesRefund(CaptureId, true).Wait();
// }
}
}