ServiceResponseBaseFuelSaleTrx.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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 ServiceResponseBaseFuelSaleTrx : ServiceResponse
  7. {
  8. private ServiceResponseFDCdataBaseFuelSaleTrx[] FDCdataField;
  9. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  10. public ServiceResponseFDCdataBaseFuelSaleTrx[] FDCdata
  11. {
  12. get
  13. {
  14. return this.FDCdataField;
  15. }
  16. set
  17. {
  18. this.FDCdataField = value;
  19. }
  20. }
  21. public ServiceResponseBaseFuelSaleTrx()
  22. {
  23. //RequestType = "BaseFuelSaleTrx";
  24. }
  25. }
  26. [System.SerializableAttribute()]
  27. public partial class ServiceResponseFDCdataBaseFuelSaleTrx
  28. {
  29. private string FDCTimeStampField;
  30. private ServiceResponseDeviceClassBaseFuelSaleTrx 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 ServiceResponseDeviceClassBaseFuelSaleTrx 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 ServiceResponseDeviceClassBaseFuelSaleTrx
  71. {
  72. private string TypeField;
  73. private string DeviceIdField;
  74. private string PumpNoField;
  75. private string TransactionNoField; // v03 field
  76. private string TransactionSeqNoField; // v05 and next field
  77. private string StateField; // v05 only
  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 TransactionNo
  117. {
  118. get
  119. {
  120. return this.TransactionNoField;
  121. }
  122. set
  123. {
  124. this.TransactionNoField = value;
  125. }
  126. }
  127. [System.Xml.Serialization.XmlAttributeAttribute()]
  128. public string TransactionSeqNo
  129. {
  130. get
  131. {
  132. return this.TransactionSeqNoField;
  133. }
  134. set
  135. {
  136. this.TransactionSeqNoField = value;
  137. }
  138. }
  139. [System.Xml.Serialization.XmlAttributeAttribute()]
  140. public string ReleaseToken
  141. {
  142. get
  143. {
  144. return this.ReleaseTokenField;
  145. }
  146. set
  147. {
  148. this.ReleaseTokenField = value;
  149. }
  150. }
  151. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  152. public string State
  153. {
  154. get
  155. {
  156. return this.StateField;
  157. }
  158. set
  159. {
  160. this.StateField = value;
  161. }
  162. }
  163. }
  164. }