Skip to content

Commit 4c397a0

Browse files
authored
Add saleReferenceID attribute (#1436)
1 parent cef1bcf commit 4c397a0

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/main/java/com/adyen/model/nexo/CustomerOrder.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* <element name="AdditionalInformation" type="{}AdditionalInformation" minOccurs="0"/>
2626
* </sequence>
2727
* <attribute name="CustomerOrderID" use="required" type="{}CustomerOrderID" />
28+
* <attribute name="SaleReferenceID" use="required" type="{}SaleReferenceID" />
2829
* <attribute name="OpenOrderState" type="{}OpenOrderState" default="false" />
2930
* <attribute name="StartDate" use="required" type="{}StartDate" />
3031
* <attribute name="EndDate" type="{}EndDate" />
@@ -55,6 +56,12 @@ public class CustomerOrder {
5556
@XmlElement(name = "CustomerOrderID", required = true)
5657
@Schema(description = "Identification of a customer order.")
5758
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;
5865
/**
5966
* The Open order state.
6067
*/
@@ -134,6 +141,24 @@ public void setCustomerOrderID(String value) {
134141
this.customerOrderID = value;
135142
}
136143

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+
137162
/**
138163
* Gets the value of the openOrderState property.
139164
*
@@ -264,4 +289,5 @@ public void setAccessedBy(String value) {
264289
this.accessedBy = value;
265290
}
266291

292+
267293
}

0 commit comments

Comments
 (0)