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.

50 lines
1.2 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.API.Common.SendTxn
  6. {
  7. public class SendTransactionRequest
  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 RequestedBy { get; set; }
  14. public int TranId { get; set; }
  15. public bool isTxnAlreadyCreated { get; set; }
  16. #region SenderInformation
  17. public TxnSender Sender { get; set; }
  18. #endregion SenderInformation
  19. #region receiveInformtaion
  20. public TxnReceiver Receiver { get; set; }
  21. #endregion receiveInformtaion
  22. #region txnInformation
  23. public TxnTransaction Transaction { get; set; }
  24. #endregion txnInformation
  25. #region agentInformation
  26. public TxnAgent Agent { get; set; }
  27. #endregion agentInformation
  28. public bool IsRealtime { get; set; }
  29. public string IsManualSc { get; set; }
  30. public decimal ManualSc { get; set; }
  31. public bool IsApproveTxn { get; set; }
  32. }
  33. }