using System.Collections.Generic; using Transfast.Model.SendTxn; namespace Transfast.Model.TransactionInfo { public class TransactionInfoResponse { public string PaymentModeId { get; set; } public string PaymentModeName { get; set; } public string ReceiveCurrencyIsoCode { get; set; } public string BankBranchId { get; set; } public string PayerName { get; set; } public string PayerId { get; set; } public string PayingBranchId { get; set; } public string PayingBranchName { get; set; } public string SourceCurrencyName { get; set; } public string SourceCurrencyIsoCode { get; set; } public decimal Rate { get; set; } public decimal TotalSentAmount { get; set; } public decimal ServiceFee { get; set; } public decimal HandlingAmount { get; set; } public decimal FeeRate { get; set; } public decimal CashAmount { get; set; } public decimal Payout { get; set; } public decimal CreditAmount { get; set; } public int ProductId { get; set; } public decimal SentAmount { get; set; } public decimal ReceiveAmount { get; set; } public decimal SettlementRate { get; set; } public string CashierName { get; set; } public string ProductName { get; set; } public string PayerBranchAdress { get; set; } public string PayerBranchPhone1 { get; set; } public string PayerBranchPhone2 { get; set; } public decimal BackendFee { get; set; } public string BankRoutingNumber { get; set; } public List InvoiceStatusTimeStamps { get; set; } public string ReferenceNumber { get; set; } public string SourceOfFunds { get; set; } } }