FDCMessageCurrentFuellingStatus.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. namespace Wayne.FDCPOSLibrary
  2. {
  3. [System.SerializableAttribute()]
  4. [System.Xml.Serialization.XmlRootAttribute(ElementName = "FDCMessage", Namespace = "")]
  5. public partial class FDCMessageCurrentFuellingStatus : FDCMessage
  6. {
  7. private FDCMessageFDCdataCurrentFuellingStatus[] fDCdataField;
  8. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  9. public FDCMessageFDCdataCurrentFuellingStatus[] FDCdata
  10. {
  11. get
  12. {
  13. return this.fDCdataField;
  14. }
  15. set
  16. {
  17. this.fDCdataField = value;
  18. }
  19. }
  20. public FDCMessageCurrentFuellingStatus()
  21. {
  22. this.MessageType = "FuelPointCurrentFuellingStatus";
  23. }
  24. }
  25. [System.SerializableAttribute()]
  26. public partial class FDCMessageFDCdataCurrentFuellingStatus
  27. {
  28. private string FDCTimeStampField;
  29. private FDCMessageDeviceClassCurrentFuellingStatus[] DeviceClassField;
  30. //private FDCMessageDeviceClass[] DeviceClassField;
  31. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  32. public string FDCTimeStamp
  33. {
  34. get
  35. {
  36. return this.FDCTimeStampField;
  37. }
  38. set
  39. {
  40. this.FDCTimeStampField = value;
  41. }
  42. }
  43. [System.Xml.Serialization.XmlElementAttribute("DeviceClass", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  44. public FDCMessageDeviceClassCurrentFuellingStatus[] DeviceClass
  45. //public FDCMessageDeviceClass[] DeviceClass
  46. {
  47. get
  48. {
  49. return this.DeviceClassField;
  50. }
  51. set
  52. {
  53. this.DeviceClassField = value;
  54. }
  55. }
  56. }
  57. [System.SerializableAttribute()]
  58. public partial class FDCMessageDeviceClassCurrentFuellingStatus
  59. {
  60. private string TypeField;
  61. private string DeviceIdField;
  62. private string PumpNoField;
  63. private string TransactionNoField; // v03 field
  64. private string TransactionSeqNoField; // v05 and next field
  65. private FuelModeElementClass FuelModeField;
  66. private string CurrentAmountField; // v03 field
  67. private string CurrentVolumeField; // v03 field
  68. private string CurrentNozzleNoField; // v03 field
  69. private string CurrentUnitPriceField; // v03 field
  70. private string AmountField;
  71. private string VolumeField;
  72. private string NozzleNoField;
  73. private string UnitPriceField;
  74. private string ReleaseTokenField;
  75. private string VolumeProduct1Field;
  76. private string VolumeProduct2Field;
  77. private string ProductNo1Field;
  78. private string ProductNo2Field;
  79. private string BlendRatioField;
  80. private string FuelPeriodSequenceNoField;
  81. [System.Xml.Serialization.XmlAttributeAttribute()]
  82. public string Type
  83. {
  84. get
  85. {
  86. return this.TypeField;
  87. }
  88. set
  89. {
  90. this.TypeField = value;
  91. }
  92. }
  93. [System.Xml.Serialization.XmlAttributeAttribute()]
  94. public string DeviceID
  95. {
  96. get
  97. {
  98. return this.DeviceIdField;
  99. }
  100. set
  101. {
  102. this.DeviceIdField = value;
  103. }
  104. }
  105. [System.Xml.Serialization.XmlAttributeAttribute()]
  106. public string PumpNo
  107. {
  108. get
  109. {
  110. return this.PumpNoField;
  111. }
  112. set
  113. {
  114. this.PumpNoField = value;
  115. }
  116. }
  117. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  118. public string TransactionNo
  119. {
  120. get
  121. {
  122. return this.TransactionNoField;
  123. }
  124. set
  125. {
  126. this.TransactionNoField = value;
  127. }
  128. }
  129. [System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  130. public string NozzleNo
  131. {
  132. get
  133. {
  134. return this.NozzleNoField;
  135. }
  136. set
  137. {
  138. this.NozzleNoField = value;
  139. }
  140. }
  141. [System.Xml.Serialization.XmlAttributeAttribute()]
  142. public string TransactionSeqNo
  143. {
  144. get
  145. {
  146. return this.TransactionSeqNoField;
  147. }
  148. set
  149. {
  150. this.TransactionSeqNoField = value;
  151. }
  152. }
  153. [System.Xml.Serialization.XmlElementAttribute("FuelMode", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  154. public FuelModeElementClass FuelMode
  155. {
  156. get
  157. {
  158. return this.FuelModeField;
  159. }
  160. set
  161. {
  162. this.FuelModeField = value;
  163. }
  164. }
  165. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  166. public string CurrentAmount
  167. {
  168. get
  169. {
  170. return this.CurrentAmountField;
  171. }
  172. set
  173. {
  174. this.CurrentAmountField = value;
  175. }
  176. }
  177. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  178. public string CurrentVolume
  179. {
  180. get
  181. {
  182. return this.CurrentVolumeField;
  183. }
  184. set
  185. {
  186. this.CurrentVolumeField = value;
  187. }
  188. }
  189. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  190. public string CurrentNozzleNo
  191. {
  192. get
  193. {
  194. return this.CurrentNozzleNoField;
  195. }
  196. set
  197. {
  198. this.CurrentNozzleNoField = value;
  199. }
  200. }
  201. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  202. public string CurrentUnitPrice
  203. {
  204. get
  205. {
  206. return this.CurrentUnitPriceField;
  207. }
  208. set
  209. {
  210. this.CurrentUnitPriceField = value;
  211. }
  212. }
  213. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  214. public string Amount
  215. {
  216. get
  217. {
  218. return this.AmountField;
  219. }
  220. set
  221. {
  222. this.AmountField = value;
  223. }
  224. }
  225. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  226. public string Volume
  227. {
  228. get
  229. {
  230. return this.VolumeField;
  231. }
  232. set
  233. {
  234. this.VolumeField = value;
  235. }
  236. }
  237. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  238. //public string NozzleNo
  239. //{
  240. // get
  241. // {
  242. // return this.NozzleNoField;
  243. // }
  244. // set
  245. // {
  246. // this.NozzleNoField = value;
  247. // }
  248. //}
  249. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  250. public string UnitPrice
  251. {
  252. get
  253. {
  254. return this.UnitPriceField;
  255. }
  256. set
  257. {
  258. this.UnitPriceField = value;
  259. }
  260. }
  261. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  262. public string ReleaseToken
  263. {
  264. get
  265. {
  266. return this.ReleaseTokenField;
  267. }
  268. set
  269. {
  270. this.ReleaseTokenField = value;
  271. }
  272. }
  273. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  274. public string VolumeProduct1
  275. {
  276. get
  277. {
  278. return this.VolumeProduct1Field;
  279. }
  280. set
  281. {
  282. this.VolumeProduct1Field = value;
  283. }
  284. }
  285. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  286. public string VolumeProduct2
  287. {
  288. get
  289. {
  290. return this.VolumeProduct2Field;
  291. }
  292. set
  293. {
  294. this.VolumeProduct2Field = value;
  295. }
  296. }
  297. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  298. public string ProductNo1
  299. {
  300. get
  301. {
  302. return this.ProductNo1Field;
  303. }
  304. set
  305. {
  306. this.ProductNo1Field = value;
  307. }
  308. }
  309. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  310. public string ProductNo2
  311. {
  312. get
  313. {
  314. return this.ProductNo2Field;
  315. }
  316. set
  317. {
  318. this.ProductNo2Field = value;
  319. }
  320. }
  321. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  322. public string BlendRatio
  323. {
  324. get
  325. {
  326. return this.BlendRatioField;
  327. }
  328. set
  329. {
  330. this.BlendRatioField = value;
  331. }
  332. }
  333. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  334. public string FuelPeriodSequenceNo
  335. {
  336. get
  337. {
  338. return this.FuelPeriodSequenceNoField;
  339. }
  340. set
  341. {
  342. this.FuelPeriodSequenceNoField = value;
  343. }
  344. }
  345. }
  346. }