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.
 
 

37 lines
1.1 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace Cebuana.Model
{
public class CancelTransaction
{
public PartnerCredentials PartnerCredentials { get; set; }
public TransactionDetails TranDetail { get; set; }
public class TransactionDetails
{
public string ControlNumber { get; set; }
public string Reason { get; set; }
}
[XmlRoot(ElementName = "TransactionResult", Namespace = "http://schemas.datacontract.org/2004/07/CebuanaRemittanceDirectUpdater")]
public class TransactionResult
{
[XmlElement(ElementName = "Code", Namespace = "http://schemas.datacontract.org/2004/07/CebuanaRemittanceDirectUpdater")]
public string Code { get; set; }
[XmlElement(ElementName = "Message", Namespace = "http://schemas.datacontract.org/2004/07/CebuanaRemittanceDirectUpdater")]
public string Message { get; set; }
}
}
}