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.
 

34 lines
747 B

using System.Xml.Serialization;
using BWP.ABCClient.Common;
namespace BWP.ABCClient.B2B
{
[XmlRoot(ElementName = "MSG")]
public class QueryTrnxResponse : MessageBase
{
public MessageContent Message { get; set; }
public class MessageContent
{
public MerchantContent Merchant { get; set; }
public TrxResponseContent TrxResponse { get; set; }
}
public class TrxResponseContent
{
public string ReturnCode { get; set; }
public string ErrorMessage { get; set; }
public string TrnxType { get; set; }
public string TrnxAMT { get; set; }
public string MerchantTrnxNo { get; set; }
public string MerchantID { get; set; }
public string TrnxStatus { get; set; }
}
}
}