ServiceResponseGetAvailableFuelSaleTrxs.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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 ServiceResponseGetAvailableFuelSaleTrxs : ServiceResponse
  7. {
  8. private ServiceResponseFDCdataGetAvailableFuelSaleTrxs[] FDCdataField;
  9. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  10. public ServiceResponseFDCdataGetAvailableFuelSaleTrxs[] FDCdata
  11. {
  12. get
  13. {
  14. return this.FDCdataField;
  15. }
  16. set
  17. {
  18. this.FDCdataField = value;
  19. }
  20. }
  21. public ServiceResponseGetAvailableFuelSaleTrxs()
  22. {
  23. RequestType = "GetAvailableFuelSaleTrxs";
  24. }
  25. }
  26. [System.SerializableAttribute()]
  27. public partial class ServiceResponseFDCdataGetAvailableFuelSaleTrxs
  28. {
  29. private string FDCTimeStampField;
  30. private ServiceResponseDeviceClassGetAvailableFuelSaleTrxs[] DeviceClassField;
  31. private string FDCStatusField;
  32. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  33. public string FDCTimeStamp
  34. {
  35. get
  36. {
  37. return this.FDCTimeStampField;
  38. }
  39. set
  40. {
  41. this.FDCTimeStampField = value;
  42. }
  43. }
  44. [System.Xml.Serialization.XmlElementAttribute("DeviceClass", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  45. public ServiceResponseDeviceClassGetAvailableFuelSaleTrxs[] DeviceClass
  46. {
  47. get
  48. {
  49. return this.DeviceClassField;
  50. }
  51. set
  52. {
  53. this.DeviceClassField = value;
  54. }
  55. }
  56. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  57. public string FDCStatus
  58. {
  59. get
  60. {
  61. return this.FDCStatusField;
  62. }
  63. set
  64. {
  65. this.FDCStatusField = value;
  66. }
  67. }
  68. }
  69. [System.SerializableAttribute()]
  70. public partial class ServiceResponseDeviceClassGetAvailableFuelSaleTrxs
  71. {
  72. private string TypeField;
  73. private string DeviceIdField;
  74. private string PumpNoField;
  75. private string TransactionSeqNoField; // v05 and next
  76. private string StateField; // v05 and next
  77. private ServiceResponseTransactionGetAvailableFuelSaleTrxs[] TransactionField; // v03
  78. private string ReleaseTokenField; // extension field
  79. [System.Xml.Serialization.XmlAttributeAttribute()]
  80. public string Type
  81. {
  82. get
  83. {
  84. return this.TypeField;
  85. }
  86. set
  87. {
  88. this.TypeField = value;
  89. }
  90. }
  91. [System.Xml.Serialization.XmlAttributeAttribute()]
  92. public string DeviceID
  93. {
  94. get
  95. {
  96. return this.DeviceIdField;
  97. }
  98. set
  99. {
  100. this.DeviceIdField = value;
  101. }
  102. }
  103. [System.Xml.Serialization.XmlAttributeAttribute()]
  104. public string PumpNo
  105. {
  106. get
  107. {
  108. return this.PumpNoField;
  109. }
  110. set
  111. {
  112. this.PumpNoField = value;
  113. }
  114. }
  115. [System.Xml.Serialization.XmlAttributeAttribute()]
  116. public string TransactionSeqNo
  117. {
  118. get
  119. {
  120. return this.TransactionSeqNoField;
  121. }
  122. set
  123. {
  124. this.TransactionSeqNoField = value;
  125. }
  126. }
  127. [System.Xml.Serialization.XmlAttributeAttribute()]
  128. public string ReleaseToken
  129. {
  130. get
  131. {
  132. return this.ReleaseTokenField;
  133. }
  134. set
  135. {
  136. this.ReleaseTokenField = value;
  137. }
  138. }
  139. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  140. public string State
  141. {
  142. get
  143. {
  144. return this.StateField;
  145. }
  146. set
  147. {
  148. this.StateField = value;
  149. }
  150. }
  151. [System.Xml.Serialization.XmlElementAttribute("Transaction", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  152. public ServiceResponseTransactionGetAvailableFuelSaleTrxs[] Transaction
  153. {
  154. get
  155. {
  156. return this.TransactionField;
  157. }
  158. set
  159. {
  160. this.TransactionField = value;
  161. }
  162. }
  163. }
  164. [System.SerializableAttribute()]
  165. public partial class ServiceResponseTransactionGetAvailableFuelSaleTrxs
  166. {
  167. private string StateField;
  168. private string TransactionNoField; // v03 field
  169. private string TransactionSeqNoField; // v05 and next field
  170. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  171. public string State
  172. {
  173. get
  174. {
  175. return this.StateField;
  176. }
  177. set
  178. {
  179. this.StateField = value;
  180. }
  181. }
  182. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  183. public string TransactionNo
  184. {
  185. get
  186. {
  187. return this.TransactionNoField;
  188. }
  189. set
  190. {
  191. this.TransactionNoField = value;
  192. }
  193. }
  194. [System.Xml.Serialization.XmlAttributeAttribute()]
  195. public string TransactionSeqNo
  196. {
  197. get
  198. {
  199. return this.TransactionSeqNoField;
  200. }
  201. set
  202. {
  203. this.TransactionSeqNoField = value;
  204. }
  205. }
  206. }
  207. }