-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHostedPaymentCheckOutRequest.cs
40 lines (39 loc) · 1.65 KB
/
HostedPaymentCheckOutRequest.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
using System;
using System.Collections.Generic;
using System.Text;
namespace UnoSys.Api.Rapyd.Models
{
public class HostedPaymentCheckOutRequest
{
public string amount { get; set; }
public string country { get; set; }
public string currency { get; set; }
public string complete_payment_url { get; set; }
public string complete_checkout_url { get; set; }
public string cancel_checkout_url { get; set; }
public string error_payment_url { get; set; }
public string[] payment_method_types_include { get; set; }
public PaymentFees payment_fees { get; set; }
/*
*
""amount"": ""{dollaramount}.{centsamount}"",
""country"": ""US"",
""currency"": ""USD"",
""complete_payment_url"": ""https://WorldComputer.org:51930"",
""complete_checkout_url"": ""https://WorldComputer.org:51930"",
""cancel_checkout_url"": ""https://WorldComputer.org:51930"",
""error_payment_url"": ""https://WorldComputer.org:51930"",
""payment_method_types_include"": [
""us_visa_card"",
""us_mastercard_card""
],
""payment_fees"": {{
""transaction_fee"": {{
""calc_type"": ""gross"",
""value"": 10,
""fee_type"": ""percentage""
}}
}}
* */
}
}