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.

79 lines
3.2 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.API.Common.ExRate
  6. {
  7. public class ExRateResponse
  8. {
  9. public string ErrorCode { get; set; }
  10. public string ErrCode { get; set; }
  11. public string ErrorMsg { get; set; }
  12. public string mirsErrCode { get; set; }
  13. public string mirsPayoutAgentRate { get; set; }
  14. public string mirsRateCreatedDate { get; set; }
  15. public string mirsPayoutCurrency { get; set; }
  16. public string Msg { get; set; }
  17. public string Id { get; set; }
  18. public string scCharge { get; set; }
  19. public string exRateDisplay { get; set; }
  20. public string exRate { get; set; }
  21. public string place { get; set; }
  22. public string pCurr { get; set; }
  23. public string currDecimal { get; set; }
  24. public string pAmt { get; set; }
  25. public string sAmt { get; set; }
  26. public string disc { get; set; }
  27. public string bankTransafer { get; set; }
  28. public string bankPayout { get; set; }
  29. public string bankRate { get; set; }
  30. public string bankFee { get; set; }
  31. public string bankSave { get; set; }
  32. public string bankName { get; set; }
  33. public string collAmt { get; set; }
  34. public string collCurr { get; set; }
  35. public string exRateOffer { get; set; }
  36. public string scOffer { get; set; }
  37. public string scAction { get; set; }
  38. public string scValue { get; set; }
  39. public string scDiscount { get; set; }
  40. public string amountLimitPerTran { get; set; }
  41. public string amountLimitPerDay { get; set; }
  42. public string customerTotalSentAmt { get; set; }
  43. public string minAmountLimitPerTran { get; set; }
  44. public string maxAmountLimitPerTran { get; set; }
  45. public string PerTxnMinimumAmt { get; set; }
  46. public string tpExRate { get; set; }
  47. public string tpPCurr { get; set; }
  48. public string schemeAppliedMsg { get; set; }
  49. public string schemeId { get; set; }
  50. public string PayoutPartner { get; set; }
  51. public string EXRATEID { get; set; }
  52. public string DateToday { get; set; }
  53. public string AgentRefId { get; set; }
  54. public string ComplianceErrorCode { get; set; }
  55. public string ComplianceId { get; set; }
  56. public string ComplianceMsg { get; set; }
  57. public string ComplianceVType { get; set; }
  58. public string ForexSessionId { get; set; }
  59. }
  60. public class TFExRateResponse
  61. {
  62. public string PayerName { get; set; }
  63. public string ModeOfPaymentName { get; set; }
  64. public decimal StartRate { get; set; }
  65. public decimal EndRate { get; set; }
  66. public string PayerId { get; set; }
  67. public string PaymentModeId { get; set; }
  68. public string ReceiveCountryIsoCode { get; set; }
  69. public string ReceiveCountryName { get; set; }
  70. public string RateStartDate { get; set; }
  71. public string RateExpiryDate { get; set; }
  72. public string ReceiveCurrencyIsoCode { get; set; }
  73. }
  74. public class _ExRateResponse
  75. {
  76. public List<TFExRateResponse> Rates { get; set; }
  77. }
  78. }