ServiceResponseGetFuelPointTotals.cs 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. using System.Xml.Serialization;
  2. namespace Wayne.FDCPOSLibrary
  3. {
  4. [System.SerializableAttribute()]
  5. [System.Xml.Serialization.XmlRootAttribute(ElementName = "ServiceResponse", Namespace = "")]
  6. public partial class ServiceResponseGetFuelPointTotals : ServiceResponse
  7. {
  8. private ServiceResponseFDCdataGetFuelPointTotals[] FDCdataField;
  9. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  10. public ServiceResponseFDCdataGetFuelPointTotals[] FDCdata
  11. {
  12. get
  13. {
  14. return this.FDCdataField;
  15. }
  16. set
  17. {
  18. this.FDCdataField = value;
  19. }
  20. }
  21. public ServiceResponseGetFuelPointTotals()
  22. {
  23. RequestType = "GetFuelPointTotals";
  24. }
  25. }
  26. [System.SerializableAttribute()]
  27. [System.Xml.Serialization.XmlRootAttribute(ElementName = "ServiceResponse", Namespace = "")]
  28. public partial class ServiceResponseGetTotals : ServiceResponse
  29. {
  30. private ServiceResponseFDCdataGetFuelPointTotals[] FDCdataField;
  31. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  32. public ServiceResponseFDCdataGetFuelPointTotals[] FDCdata
  33. {
  34. get
  35. {
  36. return this.FDCdataField;
  37. }
  38. set
  39. {
  40. this.FDCdataField = value;
  41. }
  42. }
  43. public ServiceResponseGetTotals()
  44. {
  45. RequestType = "GetTotals";
  46. }
  47. }
  48. [System.SerializableAttribute()]
  49. public partial class ServiceResponseFDCdataGetFuelPointTotals
  50. {
  51. private string FDCTimeStampField;
  52. private ServiceResponseDeviceClassGetFuelPointTotals[] DeviceClassField;
  53. private string FDCStatusField;
  54. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  55. public string FDCTimeStamp
  56. {
  57. get
  58. {
  59. return this.FDCTimeStampField;
  60. }
  61. set
  62. {
  63. this.FDCTimeStampField = value;
  64. }
  65. }
  66. [System.Xml.Serialization.XmlElementAttribute("DeviceClass", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  67. public ServiceResponseDeviceClassGetFuelPointTotals[] DeviceClass
  68. {
  69. get
  70. {
  71. return this.DeviceClassField;
  72. }
  73. set
  74. {
  75. this.DeviceClassField = 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 ServiceResponseDeviceClassGetFuelPointTotals
  93. {
  94. private string TypeField;
  95. private string DeviceIdField;
  96. private string PumpNoField;
  97. private string NozzleNoField;
  98. private string AmountField;
  99. private string VolumeField;
  100. private string UnitPriceField;
  101. private string VolumeProduct1Field;
  102. private string VolumeProduct2Field;
  103. private string Product1NoField; // v03
  104. private string Product2NoField; // v03
  105. private string ProductNo1Field; // v05 and next
  106. private string ProductNo2Field; // v05 and next
  107. private string BlendRatioField;
  108. [System.Xml.Serialization.XmlAttributeAttribute()]
  109. public string Type
  110. {
  111. get
  112. {
  113. return this.TypeField;
  114. }
  115. set
  116. {
  117. this.TypeField = value;
  118. }
  119. }
  120. [System.Xml.Serialization.XmlAttributeAttribute()]
  121. public string DeviceID
  122. {
  123. get
  124. {
  125. return this.DeviceIdField;
  126. }
  127. set
  128. {
  129. this.DeviceIdField = value;
  130. }
  131. }
  132. [System.Xml.Serialization.XmlAttributeAttribute()]
  133. public string PumpNo
  134. {
  135. get
  136. {
  137. return this.PumpNoField;
  138. }
  139. set
  140. {
  141. this.PumpNoField = value;
  142. }
  143. }
  144. [System.Xml.Serialization.XmlAttributeAttribute()]
  145. public string NozzleNo
  146. {
  147. get
  148. {
  149. return this.NozzleNoField;
  150. }
  151. set
  152. {
  153. this.NozzleNoField = value;
  154. }
  155. }
  156. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  157. public string Amount
  158. {
  159. get
  160. {
  161. return this.AmountField;
  162. }
  163. set
  164. {
  165. this.AmountField = value;
  166. }
  167. }
  168. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  169. public string Volume
  170. {
  171. get
  172. {
  173. return this.VolumeField;
  174. }
  175. set
  176. {
  177. this.VolumeField = value;
  178. }
  179. }
  180. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  181. public string UnitPrice
  182. {
  183. get
  184. {
  185. return this.UnitPriceField;
  186. }
  187. set
  188. {
  189. this.UnitPriceField = value;
  190. }
  191. }
  192. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  193. public string VolumeProduct1
  194. {
  195. get
  196. {
  197. return this.VolumeProduct1Field;
  198. }
  199. set
  200. {
  201. this.VolumeProduct1Field = value;
  202. }
  203. }
  204. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  205. public string VolumeProduct2
  206. {
  207. get
  208. {
  209. return this.VolumeProduct2Field;
  210. }
  211. set
  212. {
  213. this.VolumeProduct2Field = value;
  214. }
  215. }
  216. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  217. public string Product1No
  218. {
  219. get
  220. {
  221. return this.Product1NoField;
  222. }
  223. set
  224. {
  225. this.Product1NoField = value;
  226. }
  227. }
  228. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  229. public string Product2No
  230. {
  231. get
  232. {
  233. return this.Product2NoField;
  234. }
  235. set
  236. {
  237. this.Product2NoField = value;
  238. }
  239. }
  240. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  241. public string ProductNo1
  242. {
  243. get
  244. {
  245. return this.ProductNo1Field;
  246. }
  247. set
  248. {
  249. this.ProductNo1Field = value;
  250. }
  251. }
  252. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  253. public string ProductNo2
  254. {
  255. get
  256. {
  257. return this.ProductNo2Field;
  258. }
  259. set
  260. {
  261. this.ProductNo2Field = value;
  262. }
  263. }
  264. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  265. public string BlendRatio
  266. {
  267. get
  268. {
  269. return this.BlendRatioField;
  270. }
  271. set
  272. {
  273. this.BlendRatioField = value;
  274. }
  275. }
  276. }
  277. }