123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- namespace Wayne.FDCPOSLibrary
- {
- [System.SerializableAttribute()]
- [System.Xml.Serialization.XmlRootAttribute(ElementName = "ServiceResponse", Namespace = "")]
- public partial class ServiceResponseLockNozzle : ServiceResponse
- {
- private ServiceResponseFDCdataLockNozzle[] FDCdataField;
- [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
- public ServiceResponseFDCdataLockNozzle[] FDCdata
- {
- get
- {
- return this.FDCdataField;
- }
- set
- {
- this.FDCdataField = value;
- }
- }
- public ServiceResponseLockNozzle()
- {
- RequestType = "LockNozzle";
- }
- }
- [System.SerializableAttribute()]
- public partial class ServiceResponseFDCdataLockNozzle
- {
- private string FDCTimeStampField;
- private ServiceResponseDeviceClassLockNozzle DeviceClassField;
- // not used in V1.0
- private string FDCStatusField;
- [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 ServiceResponseDeviceClassLockNozzle DeviceClass
- {
- get
- {
- return this.DeviceClassField;
- }
- set
- {
- this.DeviceClassField = value;
- }
- }
- [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
- public string FDCStatus
- {
- get
- {
- return this.FDCStatusField;
- }
- set
- {
- this.FDCStatusField = value;
- }
- }
- }
- [System.SerializableAttribute()]
- public partial class ServiceResponseDeviceClassLockNozzle
- {
- private string TypeField;
- private string DeviceIdField;
- private string PumpNoField;
- private string NozzleNoField;
- // used in V1.0
- 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.XmlAttributeAttribute()]
- public string NozzleNo
- {
- get
- {
- return this.NozzleNoField;
- }
- set
- {
- this.NozzleNoField = value;
- }
- }
- [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
- public string ErrorCode
- {
- get
- {
- return this.ErrorCodeField;
- }
- set
- {
- this.ErrorCodeField = value;
- }
- }
- }
- }
|