ServiceResponseChangeFuelMode.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. namespace Wayne.FDCPOSLibrary
  2. {
  3. [System.SerializableAttribute()]
  4. [System.Xml.Serialization.XmlRootAttribute(ElementName = "ServiceResponse", Namespace = "")]
  5. public partial class ServiceResponseChangeFuelMode : ServiceResponse
  6. {
  7. private ServiceResponseFDCdataChangeFuelMode[] fDCdataField;
  8. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  9. public ServiceResponseFDCdataChangeFuelMode[] FDCdata
  10. {
  11. get
  12. {
  13. return this.fDCdataField;
  14. }
  15. set
  16. {
  17. this.fDCdataField = value;
  18. }
  19. }
  20. public ServiceResponseChangeFuelMode()
  21. {
  22. this.RequestType = "ChangeFuelMode";
  23. }
  24. }
  25. [System.SerializableAttribute()]
  26. [System.Xml.Serialization.XmlRootAttribute(ElementName = "ServiceResponse", Namespace = "")]
  27. public partial class ServiceResponseChangeFPFuelMode : ServiceResponse
  28. {
  29. private ServiceResponseFDCdataChangeFuelMode[] fDCdataField;
  30. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  31. public ServiceResponseFDCdataChangeFuelMode[] FDCdata
  32. {
  33. get
  34. {
  35. return this.fDCdataField;
  36. }
  37. set
  38. {
  39. this.fDCdataField = value;
  40. }
  41. }
  42. public ServiceResponseChangeFPFuelMode()
  43. {
  44. this.RequestType = "ChangeFPFuelMode";
  45. }
  46. }
  47. [System.SerializableAttribute()]
  48. public partial class ServiceResponseFDCdataChangeFuelMode
  49. {
  50. private string FDCTimeStampField;
  51. private ServiceResponseDeviceClassChangeFuelMode[] DeviceClassField;
  52. // not used in V1.0
  53. private string FDCStatusField;
  54. [System.Xml.Serialization.XmlElementAttribute("DeviceClass", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  55. public ServiceResponseDeviceClassChangeFuelMode[] DeviceClass
  56. {
  57. get
  58. {
  59. return this.DeviceClassField;
  60. }
  61. set
  62. {
  63. this.DeviceClassField = value;
  64. }
  65. }
  66. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  67. public string FDCTimeStamp
  68. {
  69. get
  70. {
  71. return this.FDCTimeStampField;
  72. }
  73. set
  74. {
  75. this.FDCTimeStampField = value;
  76. }
  77. }
  78. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  79. public string FDCStatus
  80. {
  81. get
  82. {
  83. return this.FDCStatusField;
  84. }
  85. set
  86. {
  87. this.FDCStatusField = value;
  88. }
  89. }
  90. }
  91. [System.SerializableAttribute()]
  92. public partial class ServiceResponseDeviceClassChangeFuelMode
  93. {
  94. private string TypeField;
  95. private string DeviceIdField;
  96. // not used in V1.0
  97. private string PumpNoField;
  98. // used in V1.0
  99. private string ErrorCodeField;
  100. [System.Xml.Serialization.XmlAttributeAttribute()]
  101. public string Type
  102. {
  103. get
  104. {
  105. return this.TypeField;
  106. }
  107. set
  108. {
  109. this.TypeField = value;
  110. }
  111. }
  112. [System.Xml.Serialization.XmlAttributeAttribute()]
  113. public string DeviceID
  114. {
  115. get
  116. {
  117. return this.DeviceIdField;
  118. }
  119. set
  120. {
  121. this.DeviceIdField = value;
  122. }
  123. }
  124. [System.Xml.Serialization.XmlAttributeAttribute()]
  125. public string PumpNo
  126. {
  127. get
  128. {
  129. return this.PumpNoField;
  130. }
  131. set
  132. {
  133. this.PumpNoField = value;
  134. }
  135. }
  136. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  137. public string ErrorCode
  138. {
  139. get
  140. {
  141. return this.ErrorCodeField;
  142. }
  143. set
  144. {
  145. this.ErrorCodeField = value;
  146. }
  147. }
  148. }
  149. }