-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHostedDisburseBeneficaryRequest.cs
39 lines (35 loc) · 1.41 KB
/
HostedDisburseBeneficaryRequest.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
using System;
using System.Collections.Generic;
using System.Text;
namespace UnoSys.Api.Rapyd.Models
{
public class HostedDisburseBeneficaryRequest
{
public string category { get; set; }
public string sender_entity_type { get; set; }
public string sender_country { get; set; }
public string beneficiary_entity_type { get; set; }
public string cancel_url { get; set; }
public string complete_url { get; set; }
public BeneficiaryOptionalFields beneficiary_optional_fields { get; set; }
public string[] payout_method_types_include { get; set; }
/*
{{
""category"": ""card"",
""sender_entity_type"": ""company"",
""sender_country"": ""US"",
""beneficiary_entity_type"": ""individual"",
""cancel_url"": ""https://www.WorldComputer.org:51930"",
""complete_url"": ""https://www.WorldComputer.org:51930"",
""beneficiary_optional_fields"": {{
""identification_type"": ""international_passport"",
""identification_value"": ""123456789""
}},
""payout_method_types_include"": [
""us_visa_card"",
""us_mastercard_card""
]
}}";
* */
}
}