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.

48 lines
1.6 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.API.Common
  6. {
  7. public class PayerDataRequest
  8. {
  9. public string ProcessId { get; set; }
  10. public string UserName { get; set; }
  11. public string ProviderId { get; set; }
  12. public string SessionId { get; set; }
  13. public string CountryIsoCode { get; set; }
  14. public int CityId { get; set; }
  15. public string TownId { get; set; }
  16. public string PaymentModeId { get; set; }
  17. public string ReceiveCurrencyIsoCode { get; set; }
  18. public string BankId { get; set; }
  19. public string SourceCurrencyIsoCode { get; set; }
  20. public int StartIndex { get; set; }
  21. public int PageSize { get; set; }
  22. public string FeeProduct { get; set; }
  23. }
  24. public class TFPayerMasterResults
  25. {
  26. public int PayerInternalCode { get; set; }
  27. public string PayerName { get; set; }
  28. public decimal CustomerRate { get; set; }
  29. public bool IsThirdParty { get; set; }
  30. public bool IsAnywhere { get; set; }
  31. public string Label { get; set; }
  32. public List<PayerDetailsResults> PayerDetailsResults { get; set; }
  33. }
  34. public class PayerDetailsResults
  35. {
  36. public string PayerId { get; set; }
  37. public string PayerName { get; set; }
  38. public string BranchId { get; set; }
  39. public string BranchName { get; set; }
  40. public string BranchAddress { get; set; }
  41. public string BankId { get; set; }
  42. public string BankName { get; set; }
  43. public string NeedBank { get; set; }
  44. }
  45. }