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.
 
 
 
 
 

51 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Swift.API.Common.SendTxn
{
public class SendTransactionRequest
{
public string ProcessId { get; set; }
public string UserName { get; set; }
public string ProviderId { get; set; }
public string SessionId { get; set; }
public string RequestedBy { get; set; }
public int TranId { get; set; }
public bool isTxnAlreadyCreated { get; set; }
#region SenderInformation
public TxnSender Sender { get; set; }
#endregion SenderInformation
#region receiveInformtaion
public TxnReceiver Receiver { get; set; }
#endregion receiveInformtaion
#region txnInformation
public TxnTransaction Transaction { get; set; }
#endregion txnInformation
#region agentInformation
public TxnAgent Agent { get; set; }
#endregion agentInformation
public bool IsRealtime { get; set; }
public string IsManualSc { get; set; }
public decimal ManualSc { get; set; }
public bool IsApproveTxn { get; set; }
}
}