Skip to content

Commit

Permalink
Add saleReferenceID attribute (#1436)
Browse files Browse the repository at this point in the history
  • Loading branch information
gcatanese authored Mar 3, 2025
1 parent cef1bcf commit 4c397a0
Showing 1 changed file with 26 additions and 0 deletions.
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;
}


}

0 comments on commit 4c397a0

Please sign in to comment.