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.

62 lines
2.2 KiB

1 year ago
1 year ago
  1. namespace Common.Model
  2. {
  3. public class TransactionResponse
  4. {
  5. //public string payMode { get; set; }
  6. //public string PaymentMode { get; set; }
  7. public string controlNo { get; set; }
  8. public string trnsDate { get; set; }
  9. public string trnId { get; set; }
  10. //Load Receiver Information
  11. public string rFirstName { get; set; }
  12. public string rMiddleName { get; set; }
  13. public string rLastName { get; set; }
  14. public string rAddress { get; set; }
  15. public string rCountryName { get; set; }
  16. public string rContactNo { get; set; }
  17. public string rCity { get; set; }
  18. public string rEmail { get; set; }
  19. public string relWithSender { get; set; }
  20. public string rState { get; set; }
  21. // Transaction Details
  22. public string payoutCountry { get; set; }
  23. public string trnDate { get; set; }
  24. public string pAmount { get; set; }
  25. public string pAgentBank { get; set; }
  26. //public string paymentMethod { get; set; }
  27. public string accountNo { get; set; }
  28. public string payoutBankBranch { get; set; }
  29. public string collAmount { get; set; }
  30. public string exRate { get; set; }
  31. public string serviceCharge { get; set; }
  32. public string payOutAmount { get; set; }
  33. public string payOutMode { get; set; }
  34. public string couponName { get; set; }
  35. public string discountType { get; set; }
  36. public string discountValue { get; set; }
  37. public string discountPercent { get; set; }
  38. public string tranStatus { get; set; }
  39. public string rewardPoints { get; set; }
  40. public string SenderFullName { get; set; }
  41. public string ColorIcon { get; set; }
  42. public PaymentDetails PaymentDetails { get; set; }
  43. }
  44. public class PaymentDetails
  45. {
  46. public string BankName { get; set; }
  47. public string AccountName { get; set; }
  48. public string SortCode { get; set; }
  49. public string AccountNo { get; set; }
  50. public string Reference { get; set; }
  51. public string TotalToPay { get; set; }
  52. public string Instruction { get; set; }
  53. }
  54. }