You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

38 lines
1.5 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wing.Model
{
public class WingSendTxnRequestCrossBank
{
public decimal amount { get; set; }
public string currency { get; set; }
public string first_name { get; set; }
public string last_name { get; set; }
public string gender { get; set; }
public string date_of_birth { get; set; }
public string occupation { get; set; }
public string id_type { get; set; }
public string id_number { get; set; }
public string nationality { get; set; }
public string country_of_birth { get; set; }
public string purpose { get; set; }
public string country_code { get; set; }
public string sender_passport { get; set; }
public string bank_name { get; set; }
public string bank_account_number { get; set; }
public string receiver_currency { get; set; }
public string receiver_name { get; set; }
public string receiver_phone { get; set; }
public string receiver_id_number { get; set; }
public string receiver_date_of_birth { get; set; }
public string receiver_passport { get; set; }
public string receiver_nationality { get; set; }
public string receiver_address { get; set; }
public string ext_transaction_id { get; set; }
public string ext_transaction_date { get; set; }
}
}