namespace Wayne.FDCPOSLibrary { /// [System.SerializableAttribute()] [System.Xml.Serialization.XmlRootAttribute(ElementName = "FDCMessage", Namespace = "")] public partial class FDCMessageFuelModeChange : FDCMessage { private FDCMessageFDCdataFuelModeChange[] fDCdataField; [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public FDCMessageFDCdataFuelModeChange[] FDCdata { get { return this.fDCdataField; } set { this.fDCdataField = value; } } public FDCMessageFuelModeChange() { this.MessageType = "FuelModeChange"; } } [System.SerializableAttribute()] [System.Xml.Serialization.XmlRootAttribute(ElementName = "FDCMessage", Namespace = "")] public partial class FDCMessageFPModeChange : FDCMessage { private FDCMessageFDCdataFuelModeChange[] fDCdataField; [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public FDCMessageFDCdataFuelModeChange[] FDCdata { get { return this.fDCdataField; } set { this.fDCdataField = value; } } public FDCMessageFPModeChange() { this.MessageType = "FPModeChange"; } } [System.SerializableAttribute()] public partial class FDCMessageFDCdataFuelModeChange { private string FDCTimeStampField; private FDCMessageDeviceClassFuelModeChange[] DeviceClassField; [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public string FDCTimeStamp { get { return this.FDCTimeStampField; } set { this.FDCTimeStampField = value; } } [System.Xml.Serialization.XmlElementAttribute("DeviceClass", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public FDCMessageDeviceClassFuelModeChange[] DeviceClass { get { return this.DeviceClassField; } set { this.DeviceClassField = value; } } } [System.SerializableAttribute()] public partial class FDCMessageDeviceClassFuelModeChange { private string DeviceIdField; private string PumpNoField; private string TypeField; private string ModeNoField; private FuelModeElementClass FuelModeField; private string ErrorCodeField; [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 PumpNo { get { return this.PumpNoField; } set { this.PumpNoField = value; } } [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public string ModeNo { get { return this.ModeNoField; } set { this.ModeNoField = value; } } [System.Xml.Serialization.XmlElementAttribute("FuelMode", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public FuelModeElementClass FuelMode { get { return this.FuelModeField; } set { this.FuelModeField = value; } } [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public string ErrorCode { get { return this.ErrorCodeField; } set { this.ErrorCodeField = value; } } } }