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.

32 lines
1.2 KiB

  1. using System.Collections.Generic;
  2. using Transfast.Model.Compliance;
  3. using Transfast.Model.Receiver;
  4. using Transfast.Model.Sender;
  5. using Transfast.Model.TransactionInfo;
  6. namespace Transfast.Model.SendTxn
  7. {
  8. public class TFSendTxnResponse
  9. {
  10. public string StatusName { get; set; }
  11. public string StatusId { get; set; }
  12. public string TfPin { get; set; }
  13. public string CancellationReason { get; set; }
  14. public string TransactionDate { get; set; }
  15. public bool CanBeCancelled { get; set; }
  16. public bool RequiresPreAml { get; set; }
  17. public bool RequiresPostAml { get; set; }
  18. public TFSenderResponse Sender { get; set; }
  19. public ReceiverResponse Receiver { get; set; }
  20. public TransactionInfoResponse TransactionInfo { get; set; }
  21. public ComplianceResponse Compliance { get; set; }
  22. }
  23. public class TFSendTxnFailedResponse
  24. {
  25. public string ErrorCode { get; set; }
  26. public string Message { get; set; }
  27. public TFSendTxnResponse ReceivedData { get; set; }
  28. public List<BusinessError> BusinessErrors { get; set; }
  29. public List<DataValidationError> DataValidationErrors { get; set; }
  30. }
  31. }