FDCMessageFuelModeChange.cs 4.6 KB

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