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.

40 lines
1.8 KiB

  1. using System.Collections.Generic;
  2. using Transfast.Model.SendTxn;
  3. namespace Transfast.Model.TransactionInfo
  4. {
  5. public class TransactionInfoResponse
  6. {
  7. public string PaymentModeId { get; set; }
  8. public string PaymentModeName { get; set; }
  9. public string ReceiveCurrencyIsoCode { get; set; }
  10. public string BankBranchId { get; set; }
  11. public string PayerName { get; set; }
  12. public string PayerId { get; set; }
  13. public string PayingBranchId { get; set; }
  14. public string PayingBranchName { get; set; }
  15. public string SourceCurrencyName { get; set; }
  16. public string SourceCurrencyIsoCode { get; set; }
  17. public decimal Rate { get; set; }
  18. public decimal TotalSentAmount { get; set; }
  19. public decimal ServiceFee { get; set; }
  20. public decimal HandlingAmount { get; set; }
  21. public decimal FeeRate { get; set; }
  22. public decimal CashAmount { get; set; }
  23. public decimal Payout { get; set; }
  24. public decimal CreditAmount { get; set; }
  25. public int ProductId { get; set; }
  26. public decimal SentAmount { get; set; }
  27. public decimal ReceiveAmount { get; set; }
  28. public decimal SettlementRate { get; set; }
  29. public string CashierName { get; set; }
  30. public string ProductName { get; set; }
  31. public string PayerBranchAdress { get; set; }
  32. public string PayerBranchPhone1 { get; set; }
  33. public string PayerBranchPhone2 { get; set; }
  34. public decimal BackendFee { get; set; }
  35. public string BankRoutingNumber { get; set; }
  36. public List<InvoiceStatusTimeStamp> InvoiceStatusTimeStamps { get; set; }
  37. public string ReferenceNumber { get; set; }
  38. public string SourceOfFunds { get; set; }
  39. }
  40. }