using System.Xml.Serialization; namespace Wayne.FDCPOSLibrary { [System.SerializableAttribute()] [System.Xml.Serialization.XmlRootAttribute(ElementName = "ServiceRequest", Namespace = "")] public partial class ServiceRequestLogOn : ServiceRequest { private ServiceRequestPOSdataLogOn[] pOSdataField; [System.Xml.Serialization.XmlElementAttribute("POSdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public ServiceRequestPOSdataLogOn[] POSdata { get { return this.pOSdataField; } set { this.pOSdataField = value; } } public ServiceRequestLogOn() { RequestType = "LogOn"; } } [System.SerializableAttribute()] public partial class ServiceRequestPOSdataLogOn { private string POSTimeStampField; private string POSNameField; private string responsePortField; private string unsolicitedPortField; private byte[][] validationInfoField; private string interfaceVersionField; private byte[] posInfoField; [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(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public string POSName { get { return this.POSNameField; } set { this.POSNameField = value; } } [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public string ResponsePort { get { return this.responsePortField; } set { this.responsePortField = value; } } [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public string UnsolicitedPort { get { return this.unsolicitedPortField; } set { this.unsolicitedPortField = value; } } [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public byte[][] ValidationInfo { get { return this.validationInfoField; } set { this.validationInfoField = value; } } [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public string interfaceVersion { get { return this.interfaceVersionField; } set { this.interfaceVersionField = value; } } [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] public byte[] posInfo { get { return this.posInfoField; } set { this.posInfoField = value; } } } }