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.

41 lines
1.3 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.API.GlobalBank
  6. {
  7. public class GblSendTransactionRequest
  8. {
  9. public string ControlNo { get; set; }
  10. public string BenefName { get; set; }
  11. public string BenefAdddress { get; set; }
  12. public string BenefTel { get; set; }
  13. public string BenefMobile { get; set; }
  14. public string BenefIdType { get; set; }
  15. public string BenefAccIdNo { get; set; }
  16. public string SenderName { get; set; }
  17. public string SenderAddress { get; set; }
  18. public string SenderTel { get; set; }
  19. public string SenderMobile { get; set; }
  20. public string SenderIdType { get; set; }
  21. public string SenderIdNo { get; set; }
  22. public string Purpose { get; set; }
  23. public string RemitType { get; set; }
  24. public string PayingBankCd { get; set; }
  25. public string PayingBranchCd { get; set; }
  26. public string PayingBankBranchCd { get; set; }
  27. public string RCurrency { get; set; }
  28. public string LocalAmount { get; set; }
  29. public string Amount { get; set; }
  30. public string ServiceCharge { get; set; }
  31. public string RCommission { get; set; }
  32. public string ExchangeRate { get; set; }
  33. public string RefNo { get; set; }
  34. public string Remarks { get; set; }
  35. public string Source { get; set; }
  36. public string NewAccount { get; set; }
  37. public string customerDOB { get; set; }
  38. }
  39. }