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.

34 lines
1.4 KiB

  1. namespace Swift.API.Common.SendTxn
  2. {
  3. public class TxnTransaction
  4. {
  5. public string TxnDate { get; set; }
  6. public string JMEControlNo { get; set; }
  7. public string PurposeOfRemittanceName { get; set; }
  8. public string CollectionMode { get; set; }
  9. public int DeliveryMethodId { get; set; }
  10. public string DeliveryMethod { get; set; }
  11. public string PCurr { get; set; }
  12. public string CollCurr { get; set; }
  13. public decimal CAmt { get; set; }
  14. public decimal PAmt { get; set; }
  15. public decimal TAmt { get; set; }
  16. public decimal ServiceCharge { get; set; }
  17. public decimal Discount { get; set; }
  18. public decimal ExRate { get; set; }
  19. public decimal Rate { get; set; }
  20. public string PComm { get; set; }
  21. public decimal SettlementDollarRate { get; set; }
  22. public string CalBy { get; set; }
  23. public string Introducer { get; set; }
  24. public string IsManualSc { get; set; }
  25. public decimal ManualSc { get; set; }
  26. public string RLocation { get; set; }
  27. public string RLocationName { get; set; }
  28. public string TpRefNo { get; set; }
  29. public string TpTranId { get; set; }
  30. public int PayOutPartner { get; set; }
  31. public string PaymentType { get; set; }
  32. public string PayoutMsg { get; set; }
  33. }
  34. }