Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions src/main/java/com/adyen/model/nexo/CustomerOrder.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
* <element name="AdditionalInformation" type="{}AdditionalInformation" minOccurs="0"/>
* </sequence>
* <attribute name="CustomerOrderID" use="required" type="{}CustomerOrderID" />
* <attribute name="SaleReferenceID" use="required" type="{}SaleReferenceID" />
* <attribute name="OpenOrderState" type="{}OpenOrderState" default="false" />
* <attribute name="StartDate" use="required" type="{}StartDate" />
* <attribute name="EndDate" type="{}EndDate" />
Expand Down Expand Up @@ -55,6 +56,12 @@ public class CustomerOrder {
@XmlElement(name = "CustomerOrderID", required = true)
@Schema(description = "Identification of a customer order.")
protected String customerOrderID;
/**
* The Sale reference id.
*/
@XmlElement(name = "SaleReferenceID", required = true)
@Schema(description = "Identification of a Sale global transaction for a sequence of related POI transactions.")
protected String saleReferenceID;
/**
* The Open order state.
*/
Expand Down Expand Up @@ -134,6 +141,24 @@ public void setCustomerOrderID(String value) {
this.customerOrderID = value;
}

/**
* Gets the value of the saleReferenceID property.
*
* @return possible object is {@link String }
*/
public String getSaleReferenceID() {
return saleReferenceID;
}

/**
* Sets the value of the saleReferenceID property.
*
* @param value allowed object is {@link String }
*/
public void setSaleReferenceID(String value) {
this.saleReferenceID = saleReferenceID;
}

/**
* Gets the value of the openOrderState property.
*
Expand Down Expand Up @@ -264,4 +289,5 @@ public void setAccessedBy(String value) {
this.accessedBy = value;
}


}