|
25 | 25 | * <element name="AdditionalInformation" type="{}AdditionalInformation" minOccurs="0"/> |
26 | 26 | * </sequence> |
27 | 27 | * <attribute name="CustomerOrderID" use="required" type="{}CustomerOrderID" /> |
| 28 | + * <attribute name="SaleReferenceID" use="required" type="{}SaleReferenceID" /> |
28 | 29 | * <attribute name="OpenOrderState" type="{}OpenOrderState" default="false" /> |
29 | 30 | * <attribute name="StartDate" use="required" type="{}StartDate" /> |
30 | 31 | * <attribute name="EndDate" type="{}EndDate" /> |
@@ -55,6 +56,12 @@ public class CustomerOrder { |
55 | 56 | @XmlElement(name = "CustomerOrderID", required = true) |
56 | 57 | @Schema(description = "Identification of a customer order.") |
57 | 58 | protected String customerOrderID; |
| 59 | + /** |
| 60 | + * The Sale reference id. |
| 61 | + */ |
| 62 | + @XmlElement(name = "SaleReferenceID", required = true) |
| 63 | + @Schema(description = "Identification of a Sale global transaction for a sequence of related POI transactions.") |
| 64 | + protected String saleReferenceID; |
58 | 65 | /** |
59 | 66 | * The Open order state. |
60 | 67 | */ |
@@ -134,6 +141,24 @@ public void setCustomerOrderID(String value) { |
134 | 141 | this.customerOrderID = value; |
135 | 142 | } |
136 | 143 |
|
| 144 | + /** |
| 145 | + * Gets the value of the saleReferenceID property. |
| 146 | + * |
| 147 | + * @return possible object is {@link String } |
| 148 | + */ |
| 149 | + public String getSaleReferenceID() { |
| 150 | + return saleReferenceID; |
| 151 | + } |
| 152 | + |
| 153 | + /** |
| 154 | + * Sets the value of the saleReferenceID property. |
| 155 | + * |
| 156 | + * @param value allowed object is {@link String } |
| 157 | + */ |
| 158 | + public void setSaleReferenceID(String value) { |
| 159 | + this.saleReferenceID = saleReferenceID; |
| 160 | + } |
| 161 | + |
137 | 162 | /** |
138 | 163 | * Gets the value of the openOrderState property. |
139 | 164 | * |
@@ -264,4 +289,5 @@ public void setAccessedBy(String value) { |
264 | 289 | this.accessedBy = value; |
265 | 290 | } |
266 | 291 |
|
| 292 | + |
267 | 293 | } |
0 commit comments