namespace Wayne.FDCPOSLibrary { [System.SerializableAttribute()] [System.Xml.Serialization.XmlRootAttribute(ElementName = "ServiceRequest", Namespace = "")] public partial class ServiceRequestClearFuelSaleTrx : ServiceRequest { private ServiceRequestPOSdataClearFuelSaleTrx[] pOSdataField; [System.Xml.Serialization.XmlElementAttribute("POSdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public ServiceRequestPOSdataClearFuelSaleTrx[] POSdata { get { return this.pOSdataField; } set { this.pOSdataField = value; } } public ServiceRequestClearFuelSaleTrx() { RequestType = "ClearFuelSaleTrx"; } } [System.SerializableAttribute()] public partial class ServiceRequestPOSdataClearFuelSaleTrx { private string pOSTimeStampField; private ServiceRequestDeviceClassClearFuelSaleTrx DeviceClassField; [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public string POSTimeStamp { get { return this.pOSTimeStampField; } set { this.pOSTimeStampField = value; } } [System.Xml.Serialization.XmlElementAttribute("DeviceClass", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public ServiceRequestDeviceClassClearFuelSaleTrx DeviceClass { get { return this.DeviceClassField; } set { this.DeviceClassField = value; } } } [System.SerializableAttribute()] public partial class ServiceRequestDeviceClassClearFuelSaleTrx { private string TypeField; private string DeviceIdField; private string TransactionNoField; // v03 field private string TransactionSeqNoField; // v05 and next field private string ReleaseTokenField; // extension field private string FuelSaleNoteField; // extension field [System.Xml.Serialization.XmlAttributeAttribute()] public string Type { get { return this.TypeField; } set { this.TypeField = value; } } [System.Xml.Serialization.XmlAttributeAttribute()] public string DeviceID { get { return this.DeviceIdField; } set { this.DeviceIdField = value; } } [System.Xml.Serialization.XmlAttributeAttribute()] public string TransactionNo { get { return this.TransactionNoField; } set { this.TransactionNoField = value; } } [System.Xml.Serialization.XmlAttributeAttribute()] public string TransactionSeqNo { get { return this.TransactionSeqNoField; } set { this.TransactionSeqNoField = value; } } [System.Xml.Serialization.XmlAttributeAttribute()] public string ReleaseToken { get { return this.ReleaseTokenField; } set { this.ReleaseTokenField = value; } } [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public string FuelSaleNote { get { return this.FuelSaleNoteField; } set { this.FuelSaleNoteField = value; } } } }