ServiceRequestUnlockTank.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. using System.Xml.Serialization;
  2. namespace Wayne.FDCPOSLibrary
  3. {
  4. [System.SerializableAttribute()]
  5. [System.Xml.Serialization.XmlRootAttribute(ElementName = "ServiceRequest", Namespace = "")]
  6. public partial class ServiceRequestUnlockTank : ServiceRequest
  7. {
  8. private ServiceRequestPOSdataUnlockTank[] pOSdataField;
  9. [System.Xml.Serialization.XmlElementAttribute("POSdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  10. public ServiceRequestPOSdataUnlockTank[] POSdata
  11. {
  12. get
  13. {
  14. return this.pOSdataField;
  15. }
  16. set
  17. {
  18. this.pOSdataField = value;
  19. }
  20. }
  21. public ServiceRequestUnlockTank()
  22. {
  23. RequestType = "UnlockTank";
  24. }
  25. }
  26. [System.SerializableAttribute()]
  27. public partial class ServiceRequestPOSdataUnlockTank
  28. {
  29. private string pOSTimeStampField;
  30. private ServiceRequestDeviceClassUnlockTank DeviceClassField;
  31. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  32. public string POSTimeStamp
  33. {
  34. get
  35. {
  36. return this.pOSTimeStampField;
  37. }
  38. set
  39. {
  40. this.pOSTimeStampField = value;
  41. }
  42. }
  43. [System.Xml.Serialization.XmlElementAttribute("DeviceClass", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  44. public ServiceRequestDeviceClassUnlockTank DeviceClass
  45. {
  46. get
  47. {
  48. return this.DeviceClassField;
  49. }
  50. set
  51. {
  52. this.DeviceClassField = value;
  53. }
  54. }
  55. }
  56. [System.SerializableAttribute()]
  57. public partial class ServiceRequestDeviceClassUnlockTank
  58. {
  59. private string TypeField;
  60. private string DeviceIdField;
  61. private string TankNoField;
  62. [System.Xml.Serialization.XmlAttributeAttribute()]
  63. public string Type
  64. {
  65. get
  66. {
  67. return this.TypeField;
  68. }
  69. set
  70. {
  71. this.TypeField = value;
  72. }
  73. }
  74. [System.Xml.Serialization.XmlAttributeAttribute()]
  75. public string DeviceID
  76. {
  77. get
  78. {
  79. return this.DeviceIdField;
  80. }
  81. set
  82. {
  83. this.DeviceIdField = value;
  84. }
  85. }
  86. [System.Xml.Serialization.XmlAttributeAttribute()]
  87. public string TankNo
  88. {
  89. get
  90. {
  91. return this.TankNoField;
  92. }
  93. set
  94. {
  95. this.TankNoField = value;
  96. }
  97. }
  98. }
  99. }