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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Wing.Model
  7. {
  8. public class WingSendTxnRequestCrossBank
  9. {
  10. public decimal amount { get; set; }
  11. public string currency { get; set; }
  12. public string first_name { get; set; }
  13. public string last_name { get; set; }
  14. public string gender { get; set; }
  15. public string date_of_birth { get; set; }
  16. public string occupation { get; set; }
  17. public string id_type { get; set; }
  18. public string id_number { get; set; }
  19. public string nationality { get; set; }
  20. public string country_of_birth { get; set; }
  21. public string purpose { get; set; }
  22. public string country_code { get; set; }
  23. public string sender_passport { get; set; }
  24. public string bank_name { get; set; }
  25. public string bank_account_number { get; set; }
  26. public string receiver_currency { get; set; }
  27. public string receiver_name { get; set; }
  28. public string receiver_phone { get; set; }
  29. public string receiver_id_number { get; set; }
  30. public string receiver_date_of_birth { get; set; }
  31. public string receiver_passport { get; set; }
  32. public string receiver_nationality { get; set; }
  33. public string receiver_address { get; set; }
  34. public string ext_transaction_id { get; set; }
  35. public string ext_transaction_date { get; set; }
  36. }
  37. }