@@ -310,7 +310,7 @@
2.9.10
2.9.10.5
2.6.4
- 4.12
+ 4.13.1
4.5.3
2.27
2.6.4
diff --git a/src/main/java/com/xero/api/client/AccountingApi.java b/src/main/java/com/xero/api/client/AccountingApi.java
index b71b77ce..5e6324ad 100644
--- a/src/main/java/com/xero/api/client/AccountingApi.java
+++ b/src/main/java/com/xero/api/client/AccountingApi.java
@@ -17,6 +17,7 @@
import com.xero.api.XeroApiExceptionHandler;
import com.xero.models.accounting.Account;
import com.xero.models.accounting.Accounts;
+import com.xero.models.accounting.Actions;
import com.xero.models.accounting.Allocations;
import com.xero.models.accounting.Attachments;
import com.xero.models.accounting.BankTransactions;
@@ -83,7 +84,7 @@ public class AccountingApi {
private ApiClient apiClient;
private static AccountingApi instance = null;
private String userAgent = "Default";
- private String version = "4.3.2";
+ private String version = "4.3.3";
static final Logger logger = LoggerFactory.getLogger(AccountingApi.class);
public AccountingApi() {
@@ -4279,6 +4280,112 @@ public HttpResponse createManualJournalAttachmentByFileNameForHttpResponse(
.execute();
}
+ /**
+ * Allows you to create history record for a manual journal
+ *
+ * 200 - Success - return response of type HistoryRecords array of HistoryRecord objects
+ *
+ *
400 - A failed request due to validation error
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param manualJournalID Xero generated unique identifier for a manual journal
+ * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of
+ * request
+ * @param accessToken Authorization token for user set in header of each request
+ * @return HistoryRecords
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public HistoryRecords createManualJournalHistoryRecord(
+ String accessToken, String xeroTenantId, UUID manualJournalID, HistoryRecords historyRecords)
+ throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response =
+ createManualJournalHistoryRecordForHttpResponse(
+ accessToken, xeroTenantId, manualJournalID, historyRecords);
+ return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : createManualJournalHistoryRecord -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ if (e.getStatusCode() == 400) {
+ TypeReference errorTypeRef =
+ new TypeReference() {};
+ com.xero.models.accounting.Error object =
+ apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef);
+ if (object.getElements() == null || object.getElements().isEmpty()) {
+ handler.validationError("HistoryRecords", object.getMessage(), e);
+ }
+ handler.validationError("HistoryRecords", object, e);
+ } else {
+ handler.execute(e);
+ }
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse createManualJournalHistoryRecordForHttpResponse(
+ String accessToken, String xeroTenantId, UUID manualJournalID, HistoryRecords historyRecords)
+ throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling"
+ + " createManualJournalHistoryRecord");
+ } // verify the required parameter 'manualJournalID' is set
+ if (manualJournalID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'manualJournalID' when calling"
+ + " createManualJournalHistoryRecord");
+ } // verify the required parameter 'historyRecords' is set
+ if (historyRecords == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'historyRecords' when calling"
+ + " createManualJournalHistoryRecord");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling"
+ + " createManualJournalHistoryRecord");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.setAccept("application/json");
+ headers.setUserAgent(this.getUserAgent());
+ // create a map of path variables
+ final Map uriVariables = new HashMap();
+ uriVariables.put("ManualJournalID", manualJournalID);
+
+ UriBuilder uriBuilder =
+ UriBuilder.fromUri(apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}/History");
+ String url = uriBuilder.buildFromMap(uriVariables).toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("PUT " + genericUrl.toString());
+ }
+
+ HttpContent content = null;
+ content = apiClient.new JacksonJsonHttpContent(historyRecords);
+
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.PUT, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
/**
* Allows you to create one or more manual journals
*
@@ -5225,6 +5332,234 @@ public HttpResponse createPrepaymentHistoryForHttpResponse(
.execute();
}
+ // Overload params for createPurchaseOrderAttachmentByFileName to allow byte[] or File type to be
+ // passed as body
+ /**
+ * Allows you to create Attachment on Purchase Order
+ *
+ * 200 - Success - return response of type Attachments array of Attachment
+ *
+ *
400 - A failed request due to validation error
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param purchaseOrderID Unique identifier for Purchase Order object
+ * @param fileName Name of the attachment
+ * @param body Byte array of file in body of request
+ * @param mimeType The type of file being attached
+ * @param accessToken Authorization token for user set in header of each request
+ * @return Attachments
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public Attachments createPurchaseOrderAttachmentByFileName(
+ String accessToken,
+ String xeroTenantId,
+ UUID purchaseOrderID,
+ String fileName,
+ byte[] body,
+ String mimeType)
+ throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response =
+ createPurchaseOrderAttachmentByFileNameForHttpResponse(
+ accessToken, xeroTenantId, purchaseOrderID, fileName, body, mimeType);
+ return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : createPurchaseOrderAttachmentByFileName -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ handler.execute(e);
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse createPurchaseOrderAttachmentByFileNameForHttpResponse(
+ String accessToken,
+ String xeroTenantId,
+ UUID purchaseOrderID,
+ String fileName,
+ byte[] body,
+ String mimeType)
+ throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'purchaseOrderID' is set
+ if (purchaseOrderID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'purchaseOrderID' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'fileName' is set
+ if (fileName == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'fileName' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'body' is set
+ if (body == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'body' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.setAccept("application/json");
+ headers.setUserAgent(this.getUserAgent());
+ // create a map of path variables
+ final Map uriVariables = new HashMap();
+ uriVariables.put("PurchaseOrderID", purchaseOrderID);
+ uriVariables.put("FileName", fileName);
+
+ UriBuilder uriBuilder =
+ UriBuilder.fromUri(
+ apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{FileName}");
+ String url = uriBuilder.buildFromMap(uriVariables).toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("PUT " + genericUrl.toString());
+ }
+
+ ByteArrayContent content = null;
+
+ content = new ByteArrayContent(mimeType, body);
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.PUT, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
+ /**
+ * Allows you to create Attachment on Purchase Order
+ *
+ * 200 - Success - return response of type Attachments array of Attachment
+ *
+ *
400 - A failed request due to validation error
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param purchaseOrderID Unique identifier for Purchase Order object
+ * @param fileName Name of the attachment
+ * @param body Byte array of file in body of request
+ * @param accessToken Authorization token for user set in header of each request
+ * @return Attachments
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public Attachments createPurchaseOrderAttachmentByFileName(
+ String accessToken, String xeroTenantId, UUID purchaseOrderID, String fileName, File body)
+ throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response =
+ createPurchaseOrderAttachmentByFileNameForHttpResponse(
+ accessToken, xeroTenantId, purchaseOrderID, fileName, body);
+ return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : createPurchaseOrderAttachmentByFileName -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ if (e.getStatusCode() == 400) {
+ TypeReference errorTypeRef =
+ new TypeReference() {};
+ com.xero.models.accounting.Error object =
+ apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef);
+ if (object.getElements() == null || object.getElements().isEmpty()) {
+ handler.validationError("Attachments", object.getMessage(), e);
+ }
+ handler.validationError("Attachments", object, e);
+ } else {
+ handler.execute(e);
+ }
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse createPurchaseOrderAttachmentByFileNameForHttpResponse(
+ String accessToken, String xeroTenantId, UUID purchaseOrderID, String fileName, File body)
+ throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'purchaseOrderID' is set
+ if (purchaseOrderID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'purchaseOrderID' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'fileName' is set
+ if (fileName == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'fileName' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'body' is set
+ if (body == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'body' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling"
+ + " createPurchaseOrderAttachmentByFileName");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.setAccept("application/json");
+ headers.setUserAgent(this.getUserAgent());
+ // create a map of path variables
+ final Map uriVariables = new HashMap();
+ uriVariables.put("PurchaseOrderID", purchaseOrderID);
+ uriVariables.put("FileName", fileName);
+
+ UriBuilder uriBuilder =
+ UriBuilder.fromUri(
+ apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{FileName}");
+ String url = uriBuilder.buildFromMap(uriVariables).toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("PUT " + genericUrl.toString());
+ }
+ java.nio.file.Path bodyPath = body.toPath();
+ String mimeType = Files.probeContentType(bodyPath);
+ HttpContent content = null;
+ content = new FileContent(mimeType, body);
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.PUT, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
/**
* Allows you to create HistoryRecord for purchase orders
*
@@ -13955,6 +14290,84 @@ public HttpResponse getManualJournalsForHttpResponse(
.execute();
}
+ /**
+ * Allows you to retrieve history from a manual journal
+ *
+ * 200 - Success - return response of HistoryRecords array of 0 to N HistoryRecord
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param manualJournalID Xero generated unique identifier for a manual journal
+ * @param accessToken Authorization token for user set in header of each request
+ * @return HistoryRecords
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public HistoryRecords getManualJournalsHistory(
+ String accessToken, String xeroTenantId, UUID manualJournalID) throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response =
+ getManualJournalsHistoryForHttpResponse(accessToken, xeroTenantId, manualJournalID);
+ return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : getManualJournalsHistory -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ handler.execute(e);
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse getManualJournalsHistoryForHttpResponse(
+ String accessToken, String xeroTenantId, UUID manualJournalID) throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling getManualJournalsHistory");
+ } // verify the required parameter 'manualJournalID' is set
+ if (manualJournalID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'manualJournalID' when calling getManualJournalsHistory");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling getManualJournalsHistory");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.setAccept("application/json");
+ headers.setUserAgent(this.getUserAgent());
+ // create a map of path variables
+ final Map uriVariables = new HashMap();
+ uriVariables.put("ManualJournalID", manualJournalID);
+
+ UriBuilder uriBuilder =
+ UriBuilder.fromUri(apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}/History");
+ String url = uriBuilder.buildFromMap(uriVariables).toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("GET " + genericUrl.toString());
+ }
+
+ HttpContent content = null;
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.GET, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
/**
* Allows you to retrieve a URL to an online invoice
*
@@ -14032,6 +14445,74 @@ public HttpResponse getOnlineInvoiceForHttpResponse(
.execute();
}
+ /**
+ * Retrieve a list of the key actions your app has permission to perform in the connected
+ * organisation.
+ *
+ * 200 - Success - return response of type Actions array with all key actions
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param accessToken Authorization token for user set in header of each request
+ * @return Actions
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public Actions getOrganisationActions(String accessToken, String xeroTenantId)
+ throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response = getOrganisationActionsForHttpResponse(accessToken, xeroTenantId);
+ return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : getOrganisationActions -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ handler.execute(e);
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse getOrganisationActionsForHttpResponse(String accessToken, String xeroTenantId)
+ throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling getOrganisationActions");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling getOrganisationActions");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.setAccept("application/json");
+ headers.setUserAgent(this.getUserAgent());
+ UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Organisation/Actions");
+ String url = uriBuilder.build().toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("GET " + genericUrl.toString());
+ }
+
+ HttpContent content = null;
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.GET, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
/**
* Allows you To verify if an organisation is using contruction industry scheme, you can retrieve
* the CIS settings for the organistaion.
@@ -15125,14 +15606,294 @@ public PurchaseOrders getPurchaseOrder(
try {
TypeReference typeRef = new TypeReference() {};
HttpResponse response =
- getPurchaseOrderForHttpResponse(accessToken, xeroTenantId, purchaseOrderID);
- return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
+ getPurchaseOrderForHttpResponse(accessToken, xeroTenantId, purchaseOrderID);
+ return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : getPurchaseOrder -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ handler.execute(e);
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse getPurchaseOrderForHttpResponse(
+ String accessToken, String xeroTenantId, UUID purchaseOrderID) throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling getPurchaseOrder");
+ } // verify the required parameter 'purchaseOrderID' is set
+ if (purchaseOrderID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'purchaseOrderID' when calling getPurchaseOrder");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling getPurchaseOrder");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.setAccept("application/json");
+ headers.setUserAgent(this.getUserAgent());
+ // create a map of path variables
+ final Map uriVariables = new HashMap();
+ uriVariables.put("PurchaseOrderID", purchaseOrderID);
+
+ UriBuilder uriBuilder =
+ UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}");
+ String url = uriBuilder.buildFromMap(uriVariables).toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("GET " + genericUrl.toString());
+ }
+
+ HttpContent content = null;
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.GET, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
+ /**
+ * Allows you to retrieve purchase orders as PDF files
+ *
+ * 200 - Success - return response of byte array pdf version of specified Purchase
+ * Orders
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param purchaseOrderID Unique identifier for an Purchase Order
+ * @param accessToken Authorization token for user set in header of each request
+ * @return File
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public ByteArrayInputStream getPurchaseOrderAsPdf(
+ String accessToken, String xeroTenantId, UUID purchaseOrderID) throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response =
+ getPurchaseOrderAsPdfForHttpResponse(accessToken, xeroTenantId, purchaseOrderID);
+ InputStream is = response.getContent();
+ return convertInputToByteArray(is);
+
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : getPurchaseOrderAsPdf -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ handler.execute(e);
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse getPurchaseOrderAsPdfForHttpResponse(
+ String accessToken, String xeroTenantId, UUID purchaseOrderID) throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling getPurchaseOrderAsPdf");
+ } // verify the required parameter 'purchaseOrderID' is set
+ if (purchaseOrderID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'purchaseOrderID' when calling getPurchaseOrderAsPdf");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling getPurchaseOrderAsPdf");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.setAccept("application/pdf");
+ headers.setUserAgent(this.getUserAgent());
+ // create a map of path variables
+ final Map uriVariables = new HashMap();
+ uriVariables.put("PurchaseOrderID", purchaseOrderID);
+
+ UriBuilder uriBuilder =
+ UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}");
+ String url = uriBuilder.buildFromMap(uriVariables).toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("GET " + genericUrl.toString());
+ }
+
+ HttpContent content = null;
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.GET, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
+ /**
+ * Allows you to retrieve Attachment on a Purchase Order by Filename
+ *
+ * 200 - Success - return response of attachment for Purchase Order as binary data
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param purchaseOrderID Unique identifier for Purchase Order object
+ * @param fileName Name of the attachment
+ * @param contentType The mime type of the attachment file you are retrieving i.e image/jpg,
+ * application/pdf
+ * @param accessToken Authorization token for user set in header of each request
+ * @return File
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public ByteArrayInputStream getPurchaseOrderAttachmentByFileName(
+ String accessToken,
+ String xeroTenantId,
+ UUID purchaseOrderID,
+ String fileName,
+ String contentType)
+ throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response =
+ getPurchaseOrderAttachmentByFileNameForHttpResponse(
+ accessToken, xeroTenantId, purchaseOrderID, fileName, contentType);
+ InputStream is = response.getContent();
+ return convertInputToByteArray(is);
+
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : getPurchaseOrderAttachmentByFileName -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ handler.execute(e);
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse getPurchaseOrderAttachmentByFileNameForHttpResponse(
+ String accessToken,
+ String xeroTenantId,
+ UUID purchaseOrderID,
+ String fileName,
+ String contentType)
+ throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling"
+ + " getPurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'purchaseOrderID' is set
+ if (purchaseOrderID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'purchaseOrderID' when calling"
+ + " getPurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'fileName' is set
+ if (fileName == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'fileName' when calling"
+ + " getPurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'contentType' is set
+ if (contentType == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'contentType' when calling"
+ + " getPurchaseOrderAttachmentByFileName");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling"
+ + " getPurchaseOrderAttachmentByFileName");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.set("contentType", contentType);
+ headers.setAccept("application/octet-stream");
+ headers.setUserAgent(this.getUserAgent());
+ // create a map of path variables
+ final Map uriVariables = new HashMap();
+ uriVariables.put("PurchaseOrderID", purchaseOrderID);
+ uriVariables.put("FileName", fileName);
+
+ UriBuilder uriBuilder =
+ UriBuilder.fromUri(
+ apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{FileName}");
+ String url = uriBuilder.buildFromMap(uriVariables).toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("GET " + genericUrl.toString());
+ }
+
+ HttpContent content = null;
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.GET, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
+ /**
+ * Allows you to retrieve specific Attachment on purchase order
+ *
+ * 200 - Success - return response of attachment for Account as binary data
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param purchaseOrderID Unique identifier for Purchase Order object
+ * @param attachmentID Unique identifier for Attachment object
+ * @param contentType The mime type of the attachment file you are retrieving i.e image/jpg,
+ * application/pdf
+ * @param accessToken Authorization token for user set in header of each request
+ * @return File
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public ByteArrayInputStream getPurchaseOrderAttachmentById(
+ String accessToken,
+ String xeroTenantId,
+ UUID purchaseOrderID,
+ UUID attachmentID,
+ String contentType)
+ throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response =
+ getPurchaseOrderAttachmentByIdForHttpResponse(
+ accessToken, xeroTenantId, purchaseOrderID, attachmentID, contentType);
+ InputStream is = response.getContent();
+ return convertInputToByteArray(is);
+
} catch (HttpResponseException e) {
if (logger.isDebugEnabled()) {
logger.debug(
"------------------ HttpResponseException "
+ e.getStatusCode()
- + " : getPurchaseOrder -------------------");
+ + " : getPurchaseOrderAttachmentById -------------------");
logger.debug(e.toString());
}
XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
@@ -15143,31 +15904,53 @@ public PurchaseOrders getPurchaseOrder(
return null;
}
- public HttpResponse getPurchaseOrderForHttpResponse(
- String accessToken, String xeroTenantId, UUID purchaseOrderID) throws IOException {
+ public HttpResponse getPurchaseOrderAttachmentByIdForHttpResponse(
+ String accessToken,
+ String xeroTenantId,
+ UUID purchaseOrderID,
+ UUID attachmentID,
+ String contentType)
+ throws IOException {
// verify the required parameter 'xeroTenantId' is set
if (xeroTenantId == null) {
throw new IllegalArgumentException(
- "Missing the required parameter 'xeroTenantId' when calling getPurchaseOrder");
+ "Missing the required parameter 'xeroTenantId' when calling"
+ + " getPurchaseOrderAttachmentById");
} // verify the required parameter 'purchaseOrderID' is set
if (purchaseOrderID == null) {
throw new IllegalArgumentException(
- "Missing the required parameter 'purchaseOrderID' when calling getPurchaseOrder");
+ "Missing the required parameter 'purchaseOrderID' when calling"
+ + " getPurchaseOrderAttachmentById");
+ } // verify the required parameter 'attachmentID' is set
+ if (attachmentID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'attachmentID' when calling"
+ + " getPurchaseOrderAttachmentById");
+ } // verify the required parameter 'contentType' is set
+ if (contentType == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'contentType' when calling"
+ + " getPurchaseOrderAttachmentById");
}
if (accessToken == null) {
throw new IllegalArgumentException(
- "Missing the required parameter 'accessToken' when calling getPurchaseOrder");
+ "Missing the required parameter 'accessToken' when calling"
+ + " getPurchaseOrderAttachmentById");
}
HttpHeaders headers = new HttpHeaders();
headers.set("xero-tenant-id", xeroTenantId);
- headers.setAccept("application/json");
+ headers.set("contentType", contentType);
+ headers.setAccept("application/octet-stream");
headers.setUserAgent(this.getUserAgent());
// create a map of path variables
final Map uriVariables = new HashMap();
uriVariables.put("PurchaseOrderID", purchaseOrderID);
+ uriVariables.put("AttachmentID", attachmentID);
UriBuilder uriBuilder =
- UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}");
+ UriBuilder.fromUri(
+ apiClient.getBasePath()
+ + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{AttachmentID}");
String url = uriBuilder.buildFromMap(uriVariables).toString();
GenericUrl genericUrl = new GenericUrl(url);
if (logger.isDebugEnabled()) {
@@ -15188,32 +15971,29 @@ public HttpResponse getPurchaseOrderForHttpResponse(
}
/**
- * Allows you to retrieve purchase orders as PDF files
+ * Allows you to retrieve attachments for purchase orders
*
- * 200 - Success - return response of byte array pdf version of specified Purchase
- * Orders
+ *
200 - Success - return response of type Attachments array of Purchase Orders
*
* @param xeroTenantId Xero identifier for Tenant
- * @param purchaseOrderID Unique identifier for an Purchase Order
+ * @param purchaseOrderID Unique identifier for Purchase Orders object
* @param accessToken Authorization token for user set in header of each request
- * @return File
+ * @return Attachments
* @throws IOException if an error occurs while attempting to invoke the API
*/
- public ByteArrayInputStream getPurchaseOrderAsPdf(
+ public Attachments getPurchaseOrderAttachments(
String accessToken, String xeroTenantId, UUID purchaseOrderID) throws IOException {
try {
- TypeReference typeRef = new TypeReference() {};
+ TypeReference typeRef = new TypeReference() {};
HttpResponse response =
- getPurchaseOrderAsPdfForHttpResponse(accessToken, xeroTenantId, purchaseOrderID);
- InputStream is = response.getContent();
- return convertInputToByteArray(is);
-
+ getPurchaseOrderAttachmentsForHttpResponse(accessToken, xeroTenantId, purchaseOrderID);
+ return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
} catch (HttpResponseException e) {
if (logger.isDebugEnabled()) {
logger.debug(
"------------------ HttpResponseException "
+ e.getStatusCode()
- + " : getPurchaseOrderAsPdf -------------------");
+ + " : getPurchaseOrderAttachments -------------------");
logger.debug(e.toString());
}
XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
@@ -15224,31 +16004,33 @@ public ByteArrayInputStream getPurchaseOrderAsPdf(
return null;
}
- public HttpResponse getPurchaseOrderAsPdfForHttpResponse(
+ public HttpResponse getPurchaseOrderAttachmentsForHttpResponse(
String accessToken, String xeroTenantId, UUID purchaseOrderID) throws IOException {
// verify the required parameter 'xeroTenantId' is set
if (xeroTenantId == null) {
throw new IllegalArgumentException(
- "Missing the required parameter 'xeroTenantId' when calling getPurchaseOrderAsPdf");
+ "Missing the required parameter 'xeroTenantId' when calling getPurchaseOrderAttachments");
} // verify the required parameter 'purchaseOrderID' is set
if (purchaseOrderID == null) {
throw new IllegalArgumentException(
- "Missing the required parameter 'purchaseOrderID' when calling getPurchaseOrderAsPdf");
+ "Missing the required parameter 'purchaseOrderID' when calling"
+ + " getPurchaseOrderAttachments");
}
if (accessToken == null) {
throw new IllegalArgumentException(
- "Missing the required parameter 'accessToken' when calling getPurchaseOrderAsPdf");
+ "Missing the required parameter 'accessToken' when calling getPurchaseOrderAttachments");
}
HttpHeaders headers = new HttpHeaders();
headers.set("xero-tenant-id", xeroTenantId);
- headers.setAccept("application/pdf");
+ headers.setAccept("application/json");
headers.setUserAgent(this.getUserAgent());
// create a map of path variables
final Map uriVariables = new HashMap();
uriVariables.put("PurchaseOrderID", purchaseOrderID);
UriBuilder uriBuilder =
- UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}");
+ UriBuilder.fromUri(
+ apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments");
String url = uriBuilder.buildFromMap(uriVariables).toString();
GenericUrl genericUrl = new GenericUrl(url);
if (logger.isDebugEnabled()) {
@@ -22986,6 +23768,234 @@ public HttpResponse updatePurchaseOrderForHttpResponse(
.execute();
}
+ // Overload params for updatePurchaseOrderAttachmentByFileName to allow byte[] or File type to be
+ // passed as body
+ /**
+ * Allows you to update Attachment on Purchase Order by Filename
+ *
+ * 200 - Success - return response of type Attachments array of Attachment
+ *
+ *
400 - Validation Error - some data was incorrect returns response of type Error
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param purchaseOrderID Unique identifier for Purchase Order object
+ * @param fileName Name of the attachment
+ * @param body Byte array of file in body of request
+ * @param mimeType The type of file being attached
+ * @param accessToken Authorization token for user set in header of each request
+ * @return Attachments
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public Attachments updatePurchaseOrderAttachmentByFileName(
+ String accessToken,
+ String xeroTenantId,
+ UUID purchaseOrderID,
+ String fileName,
+ byte[] body,
+ String mimeType)
+ throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response =
+ updatePurchaseOrderAttachmentByFileNameForHttpResponse(
+ accessToken, xeroTenantId, purchaseOrderID, fileName, body, mimeType);
+ return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : updatePurchaseOrderAttachmentByFileName -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ handler.execute(e);
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse updatePurchaseOrderAttachmentByFileNameForHttpResponse(
+ String accessToken,
+ String xeroTenantId,
+ UUID purchaseOrderID,
+ String fileName,
+ byte[] body,
+ String mimeType)
+ throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'purchaseOrderID' is set
+ if (purchaseOrderID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'purchaseOrderID' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'fileName' is set
+ if (fileName == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'fileName' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'body' is set
+ if (body == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'body' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.setAccept("application/json");
+ headers.setUserAgent(this.getUserAgent());
+ // create a map of path variables
+ final Map uriVariables = new HashMap();
+ uriVariables.put("PurchaseOrderID", purchaseOrderID);
+ uriVariables.put("FileName", fileName);
+
+ UriBuilder uriBuilder =
+ UriBuilder.fromUri(
+ apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{FileName}");
+ String url = uriBuilder.buildFromMap(uriVariables).toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("POST " + genericUrl.toString());
+ }
+
+ ByteArrayContent content = null;
+
+ content = new ByteArrayContent(mimeType, body);
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.POST, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
+ /**
+ * Allows you to update Attachment on Purchase Order by Filename
+ *
+ * 200 - Success - return response of type Attachments array of Attachment
+ *
+ *
400 - Validation Error - some data was incorrect returns response of type Error
+ *
+ * @param xeroTenantId Xero identifier for Tenant
+ * @param purchaseOrderID Unique identifier for Purchase Order object
+ * @param fileName Name of the attachment
+ * @param body Byte array of file in body of request
+ * @param accessToken Authorization token for user set in header of each request
+ * @return Attachments
+ * @throws IOException if an error occurs while attempting to invoke the API
+ */
+ public Attachments updatePurchaseOrderAttachmentByFileName(
+ String accessToken, String xeroTenantId, UUID purchaseOrderID, String fileName, File body)
+ throws IOException {
+ try {
+ TypeReference typeRef = new TypeReference() {};
+ HttpResponse response =
+ updatePurchaseOrderAttachmentByFileNameForHttpResponse(
+ accessToken, xeroTenantId, purchaseOrderID, fileName, body);
+ return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
+ } catch (HttpResponseException e) {
+ if (logger.isDebugEnabled()) {
+ logger.debug(
+ "------------------ HttpResponseException "
+ + e.getStatusCode()
+ + " : updatePurchaseOrderAttachmentByFileName -------------------");
+ logger.debug(e.toString());
+ }
+ XeroApiExceptionHandler handler = new XeroApiExceptionHandler();
+ if (e.getStatusCode() == 400) {
+ TypeReference errorTypeRef =
+ new TypeReference() {};
+ com.xero.models.accounting.Error object =
+ apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef);
+ if (object.getElements() == null || object.getElements().isEmpty()) {
+ handler.validationError("Attachments", object.getMessage(), e);
+ }
+ handler.validationError("Attachments", object, e);
+ } else {
+ handler.execute(e);
+ }
+ } catch (IOException ioe) {
+ throw ioe;
+ }
+ return null;
+ }
+
+ public HttpResponse updatePurchaseOrderAttachmentByFileNameForHttpResponse(
+ String accessToken, String xeroTenantId, UUID purchaseOrderID, String fileName, File body)
+ throws IOException {
+ // verify the required parameter 'xeroTenantId' is set
+ if (xeroTenantId == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'xeroTenantId' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'purchaseOrderID' is set
+ if (purchaseOrderID == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'purchaseOrderID' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'fileName' is set
+ if (fileName == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'fileName' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ } // verify the required parameter 'body' is set
+ if (body == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'body' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ }
+ if (accessToken == null) {
+ throw new IllegalArgumentException(
+ "Missing the required parameter 'accessToken' when calling"
+ + " updatePurchaseOrderAttachmentByFileName");
+ }
+ HttpHeaders headers = new HttpHeaders();
+ headers.set("xero-tenant-id", xeroTenantId);
+ headers.setAccept("application/json");
+ headers.setUserAgent(this.getUserAgent());
+ // create a map of path variables
+ final Map uriVariables = new HashMap();
+ uriVariables.put("PurchaseOrderID", purchaseOrderID);
+ uriVariables.put("FileName", fileName);
+
+ UriBuilder uriBuilder =
+ UriBuilder.fromUri(
+ apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{FileName}");
+ String url = uriBuilder.buildFromMap(uriVariables).toString();
+ GenericUrl genericUrl = new GenericUrl(url);
+ if (logger.isDebugEnabled()) {
+ logger.debug("POST " + genericUrl.toString());
+ }
+ java.nio.file.Path bodyPath = body.toPath();
+ String mimeType = Files.probeContentType(bodyPath);
+ HttpContent content = null;
+ content = new FileContent(mimeType, body);
+ Credential credential =
+ new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken);
+ HttpTransport transport = apiClient.getHttpTransport();
+ HttpRequestFactory requestFactory = transport.createRequestFactory(credential);
+ return requestFactory
+ .buildRequest(HttpMethods.POST, genericUrl, content)
+ .setHeaders(headers)
+ .setConnectTimeout(apiClient.getConnectionTimeout())
+ .setReadTimeout(apiClient.getReadTimeout())
+ .execute();
+ }
+
/**
* Allows you to update a specified quote
*
diff --git a/src/main/java/com/xero/api/client/AssetApi.java b/src/main/java/com/xero/api/client/AssetApi.java
index fc2cd4ef..1b4d690e 100644
--- a/src/main/java/com/xero/api/client/AssetApi.java
+++ b/src/main/java/com/xero/api/client/AssetApi.java
@@ -35,7 +35,7 @@ public class AssetApi {
private ApiClient apiClient;
private static AssetApi instance = null;
private String userAgent = "Default";
- private String version = "4.3.2";
+ private String version = "4.3.3";
static final Logger logger = LoggerFactory.getLogger(AssetApi.class);
public AssetApi() {
diff --git a/src/main/java/com/xero/api/client/BankFeedsApi.java b/src/main/java/com/xero/api/client/BankFeedsApi.java
index ac749b61..e355ca6b 100644
--- a/src/main/java/com/xero/api/client/BankFeedsApi.java
+++ b/src/main/java/com/xero/api/client/BankFeedsApi.java
@@ -33,7 +33,7 @@ public class BankFeedsApi {
private ApiClient apiClient;
private static BankFeedsApi instance = null;
private String userAgent = "Default";
- private String version = "4.3.2";
+ private String version = "4.3.3";
static final Logger logger = LoggerFactory.getLogger(BankFeedsApi.class);
public BankFeedsApi() {
diff --git a/src/main/java/com/xero/api/client/IdentityApi.java b/src/main/java/com/xero/api/client/IdentityApi.java
index e995c2de..4e4a1439 100644
--- a/src/main/java/com/xero/api/client/IdentityApi.java
+++ b/src/main/java/com/xero/api/client/IdentityApi.java
@@ -31,7 +31,7 @@ public class IdentityApi {
private ApiClient apiClient;
private static IdentityApi instance = null;
private String userAgent = "Default";
- private String version = "4.3.2";
+ private String version = "4.3.3";
static final Logger logger = LoggerFactory.getLogger(IdentityApi.class);
public IdentityApi() {
diff --git a/src/main/java/com/xero/api/client/PayrollAuApi.java b/src/main/java/com/xero/api/client/PayrollAuApi.java
index 2423bcda..efb1f088 100644
--- a/src/main/java/com/xero/api/client/PayrollAuApi.java
+++ b/src/main/java/com/xero/api/client/PayrollAuApi.java
@@ -50,7 +50,7 @@ public class PayrollAuApi {
private ApiClient apiClient;
private static PayrollAuApi instance = null;
private String userAgent = "Default";
- private String version = "4.3.2";
+ private String version = "4.3.3";
static final Logger logger = LoggerFactory.getLogger(PayrollAuApi.class);
public PayrollAuApi() {
diff --git a/src/main/java/com/xero/api/client/PayrollNzApi.java b/src/main/java/com/xero/api/client/PayrollNzApi.java
index b66d7c2e..7ff92edf 100644
--- a/src/main/java/com/xero/api/client/PayrollNzApi.java
+++ b/src/main/java/com/xero/api/client/PayrollNzApi.java
@@ -92,7 +92,7 @@ public class PayrollNzApi {
private ApiClient apiClient;
private static PayrollNzApi instance = null;
private String userAgent = "Default";
- private String version = "4.3.2";
+ private String version = "4.3.3";
static final Logger logger = LoggerFactory.getLogger(PayrollNzApi.class);
public PayrollNzApi() {
diff --git a/src/main/java/com/xero/api/client/PayrollUkApi.java b/src/main/java/com/xero/api/client/PayrollUkApi.java
index c6163a14..b52251ab 100644
--- a/src/main/java/com/xero/api/client/PayrollUkApi.java
+++ b/src/main/java/com/xero/api/client/PayrollUkApi.java
@@ -92,7 +92,7 @@ public class PayrollUkApi {
private ApiClient apiClient;
private static PayrollUkApi instance = null;
private String userAgent = "Default";
- private String version = "4.3.2";
+ private String version = "4.3.3";
static final Logger logger = LoggerFactory.getLogger(PayrollUkApi.class);
public PayrollUkApi() {
diff --git a/src/main/java/com/xero/api/client/ProjectApi.java b/src/main/java/com/xero/api/client/ProjectApi.java
index ccac7810..7fae25d3 100644
--- a/src/main/java/com/xero/api/client/ProjectApi.java
+++ b/src/main/java/com/xero/api/client/ProjectApi.java
@@ -41,7 +41,7 @@ public class ProjectApi {
private ApiClient apiClient;
private static ProjectApi instance = null;
private String userAgent = "Default";
- private String version = "4.3.2";
+ private String version = "4.3.3";
static final Logger logger = LoggerFactory.getLogger(ProjectApi.class);
public ProjectApi() {
diff --git a/src/main/java/com/xero/models/accounting/Account.java b/src/main/java/com/xero/models/accounting/Account.java
index 0b7d8f67..71a64c0f 100644
--- a/src/main/java/com/xero/models/accounting/Account.java
+++ b/src/main/java/com/xero/models/accounting/Account.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/AccountType.java b/src/main/java/com/xero/models/accounting/AccountType.java
index 3a29cb3e..6cc1b010 100644
--- a/src/main/java/com/xero/models/accounting/AccountType.java
+++ b/src/main/java/com/xero/models/accounting/AccountType.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Accounts.java b/src/main/java/com/xero/models/accounting/Accounts.java
index a739f35a..77bb9846 100644
--- a/src/main/java/com/xero/models/accounting/Accounts.java
+++ b/src/main/java/com/xero/models/accounting/Accounts.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/AccountsPayable.java b/src/main/java/com/xero/models/accounting/AccountsPayable.java
index 66e77874..7254a8d1 100644
--- a/src/main/java/com/xero/models/accounting/AccountsPayable.java
+++ b/src/main/java/com/xero/models/accounting/AccountsPayable.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/AccountsReceivable.java b/src/main/java/com/xero/models/accounting/AccountsReceivable.java
index 2edd45a6..a55b29bd 100644
--- a/src/main/java/com/xero/models/accounting/AccountsReceivable.java
+++ b/src/main/java/com/xero/models/accounting/AccountsReceivable.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Action.java b/src/main/java/com/xero/models/accounting/Action.java
new file mode 100644
index 00000000..66878def
--- /dev/null
+++ b/src/main/java/com/xero/models/accounting/Action.java
@@ -0,0 +1,140 @@
+/*
+ * Accounting API
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: 2.3.7
+ * Contact: api@xero.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.xero.models.accounting;
+
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonValue;
+import com.xero.api.StringUtil;
+import io.swagger.annotations.ApiModelProperty;
+import java.util.Objects;
+
+/** Action */
+public class Action {
+ StringUtil util = new StringUtil();
+
+ @JsonProperty("Name")
+ private String name;
+ /** Status of the action for this organisation */
+ public enum StatusEnum {
+ ALLOWED("ALLOWED"),
+
+ NOT_ALLOWED("NOT-ALLOWED");
+
+ private String value;
+
+ StatusEnum(String value) {
+ this.value = value;
+ }
+
+ @JsonValue
+ public String getValue() {
+ return value;
+ }
+
+ @Override
+ public String toString() {
+ return String.valueOf(value);
+ }
+
+ @JsonCreator
+ public static StatusEnum fromValue(String value) {
+ for (StatusEnum b : StatusEnum.values()) {
+ if (b.value.equals(value)) {
+ return b;
+ }
+ }
+ throw new IllegalArgumentException("Unexpected value '" + value + "'");
+ }
+ }
+
+ @JsonProperty("Status")
+ private StatusEnum status;
+
+ public Action name(String name) {
+ this.name = name;
+ return this;
+ }
+
+ /**
+ * Name of the actions for this organisation
+ *
+ * @return name
+ */
+ @ApiModelProperty(
+ example = "UseMulticurrency",
+ value = "Name of the actions for this organisation")
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public Action status(StatusEnum status) {
+ this.status = status;
+ return this;
+ }
+
+ /**
+ * Status of the action for this organisation
+ *
+ * @return status
+ */
+ @ApiModelProperty(value = "Status of the action for this organisation")
+ public StatusEnum getStatus() {
+ return status;
+ }
+
+ public void setStatus(StatusEnum status) {
+ this.status = status;
+ }
+
+ @Override
+ public boolean equals(java.lang.Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ Action action = (Action) o;
+ return Objects.equals(this.name, action.name) && Objects.equals(this.status, action.status);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(name, status);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class Action {\n");
+ sb.append(" name: ").append(toIndentedString(name)).append("\n");
+ sb.append(" status: ").append(toIndentedString(status)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first line).
+ */
+ private String toIndentedString(java.lang.Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+}
diff --git a/src/main/java/com/xero/models/accounting/Actions.java b/src/main/java/com/xero/models/accounting/Actions.java
new file mode 100644
index 00000000..9d49cbf5
--- /dev/null
+++ b/src/main/java/com/xero/models/accounting/Actions.java
@@ -0,0 +1,91 @@
+/*
+ * Accounting API
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
+ *
+ * The version of the OpenAPI document: 2.3.7
+ * Contact: api@xero.com
+ *
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
+ * https://openapi-generator.tech
+ * Do not edit the class manually.
+ */
+
+package com.xero.models.accounting;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.xero.api.StringUtil;
+import io.swagger.annotations.ApiModelProperty;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Objects;
+
+/** Actions */
+public class Actions {
+ StringUtil util = new StringUtil();
+
+ @JsonProperty("Actions")
+ private List actions = new ArrayList();
+
+ public Actions actions(List actions) {
+ this.actions = actions;
+ return this;
+ }
+
+ public Actions addActionsItem(Action actionsItem) {
+ if (this.actions == null) {
+ this.actions = new ArrayList();
+ }
+ this.actions.add(actionsItem);
+ return this;
+ }
+
+ /**
+ * Get actions
+ *
+ * @return actions
+ */
+ @ApiModelProperty(value = "")
+ public List getActions() {
+ return actions;
+ }
+
+ public void setActions(List actions) {
+ this.actions = actions;
+ }
+
+ @Override
+ public boolean equals(java.lang.Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ Actions actions = (Actions) o;
+ return Objects.equals(this.actions, actions.actions);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(actions);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class Actions {\n");
+ sb.append(" actions: ").append(toIndentedString(actions)).append("\n");
+ sb.append("}");
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first line).
+ */
+ private String toIndentedString(java.lang.Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+}
diff --git a/src/main/java/com/xero/models/accounting/Address.java b/src/main/java/com/xero/models/accounting/Address.java
index 88e0b7e2..44432df1 100644
--- a/src/main/java/com/xero/models/accounting/Address.java
+++ b/src/main/java/com/xero/models/accounting/Address.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Allocation.java b/src/main/java/com/xero/models/accounting/Allocation.java
index aae2d673..64360146 100644
--- a/src/main/java/com/xero/models/accounting/Allocation.java
+++ b/src/main/java/com/xero/models/accounting/Allocation.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Allocations.java b/src/main/java/com/xero/models/accounting/Allocations.java
index 1ab39a2a..6e231fc8 100644
--- a/src/main/java/com/xero/models/accounting/Allocations.java
+++ b/src/main/java/com/xero/models/accounting/Allocations.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Attachment.java b/src/main/java/com/xero/models/accounting/Attachment.java
index 1aa22ca1..42081fb2 100644
--- a/src/main/java/com/xero/models/accounting/Attachment.java
+++ b/src/main/java/com/xero/models/accounting/Attachment.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Attachments.java b/src/main/java/com/xero/models/accounting/Attachments.java
index d08de86e..487d79be 100644
--- a/src/main/java/com/xero/models/accounting/Attachments.java
+++ b/src/main/java/com/xero/models/accounting/Attachments.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Balances.java b/src/main/java/com/xero/models/accounting/Balances.java
index 52f935b0..e11798c1 100644
--- a/src/main/java/com/xero/models/accounting/Balances.java
+++ b/src/main/java/com/xero/models/accounting/Balances.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/BankTransaction.java b/src/main/java/com/xero/models/accounting/BankTransaction.java
index e292a9da..2e7d5e45 100644
--- a/src/main/java/com/xero/models/accounting/BankTransaction.java
+++ b/src/main/java/com/xero/models/accounting/BankTransaction.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/BankTransactions.java b/src/main/java/com/xero/models/accounting/BankTransactions.java
index 50403845..d16f4039 100644
--- a/src/main/java/com/xero/models/accounting/BankTransactions.java
+++ b/src/main/java/com/xero/models/accounting/BankTransactions.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/BankTransfer.java b/src/main/java/com/xero/models/accounting/BankTransfer.java
index dd2a2c0b..0a4c6f1b 100644
--- a/src/main/java/com/xero/models/accounting/BankTransfer.java
+++ b/src/main/java/com/xero/models/accounting/BankTransfer.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/BankTransfers.java b/src/main/java/com/xero/models/accounting/BankTransfers.java
index f75f7a03..cae8a9b0 100644
--- a/src/main/java/com/xero/models/accounting/BankTransfers.java
+++ b/src/main/java/com/xero/models/accounting/BankTransfers.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/BatchPayment.java b/src/main/java/com/xero/models/accounting/BatchPayment.java
index 63a195f1..cd174694 100644
--- a/src/main/java/com/xero/models/accounting/BatchPayment.java
+++ b/src/main/java/com/xero/models/accounting/BatchPayment.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/BatchPaymentDetails.java b/src/main/java/com/xero/models/accounting/BatchPaymentDetails.java
index 30cff452..c83e0f42 100644
--- a/src/main/java/com/xero/models/accounting/BatchPaymentDetails.java
+++ b/src/main/java/com/xero/models/accounting/BatchPaymentDetails.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/BatchPayments.java b/src/main/java/com/xero/models/accounting/BatchPayments.java
index cbd72b7f..2cc0fafb 100644
--- a/src/main/java/com/xero/models/accounting/BatchPayments.java
+++ b/src/main/java/com/xero/models/accounting/BatchPayments.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Bill.java b/src/main/java/com/xero/models/accounting/Bill.java
index f20217f4..5d2617ca 100644
--- a/src/main/java/com/xero/models/accounting/Bill.java
+++ b/src/main/java/com/xero/models/accounting/Bill.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/BrandingTheme.java b/src/main/java/com/xero/models/accounting/BrandingTheme.java
index adefdd07..a8c0b3ae 100644
--- a/src/main/java/com/xero/models/accounting/BrandingTheme.java
+++ b/src/main/java/com/xero/models/accounting/BrandingTheme.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/BrandingThemes.java b/src/main/java/com/xero/models/accounting/BrandingThemes.java
index 1a1f97ee..2eeb80f9 100644
--- a/src/main/java/com/xero/models/accounting/BrandingThemes.java
+++ b/src/main/java/com/xero/models/accounting/BrandingThemes.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/CISOrgSetting.java b/src/main/java/com/xero/models/accounting/CISOrgSetting.java
index c1099ddd..462bdc1c 100644
--- a/src/main/java/com/xero/models/accounting/CISOrgSetting.java
+++ b/src/main/java/com/xero/models/accounting/CISOrgSetting.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/CISSetting.java b/src/main/java/com/xero/models/accounting/CISSetting.java
index e00a46d9..c0cace23 100644
--- a/src/main/java/com/xero/models/accounting/CISSetting.java
+++ b/src/main/java/com/xero/models/accounting/CISSetting.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/CISSettings.java b/src/main/java/com/xero/models/accounting/CISSettings.java
index 493fce5d..41d79e7a 100644
--- a/src/main/java/com/xero/models/accounting/CISSettings.java
+++ b/src/main/java/com/xero/models/accounting/CISSettings.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Contact.java b/src/main/java/com/xero/models/accounting/Contact.java
index 7cb80ec5..e7e3d613 100644
--- a/src/main/java/com/xero/models/accounting/Contact.java
+++ b/src/main/java/com/xero/models/accounting/Contact.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ContactGroup.java b/src/main/java/com/xero/models/accounting/ContactGroup.java
index 3fa7adc9..cb26ab34 100644
--- a/src/main/java/com/xero/models/accounting/ContactGroup.java
+++ b/src/main/java/com/xero/models/accounting/ContactGroup.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ContactGroups.java b/src/main/java/com/xero/models/accounting/ContactGroups.java
index fc85fff6..d61555bf 100644
--- a/src/main/java/com/xero/models/accounting/ContactGroups.java
+++ b/src/main/java/com/xero/models/accounting/ContactGroups.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ContactPerson.java b/src/main/java/com/xero/models/accounting/ContactPerson.java
index 6e47accc..13c230b2 100644
--- a/src/main/java/com/xero/models/accounting/ContactPerson.java
+++ b/src/main/java/com/xero/models/accounting/ContactPerson.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Contacts.java b/src/main/java/com/xero/models/accounting/Contacts.java
index 24127b9f..9e80c547 100644
--- a/src/main/java/com/xero/models/accounting/Contacts.java
+++ b/src/main/java/com/xero/models/accounting/Contacts.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/CountryCode.java b/src/main/java/com/xero/models/accounting/CountryCode.java
index aca9e212..a0c56deb 100644
--- a/src/main/java/com/xero/models/accounting/CountryCode.java
+++ b/src/main/java/com/xero/models/accounting/CountryCode.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/CreditNote.java b/src/main/java/com/xero/models/accounting/CreditNote.java
index c1e6b65f..6df1157f 100644
--- a/src/main/java/com/xero/models/accounting/CreditNote.java
+++ b/src/main/java/com/xero/models/accounting/CreditNote.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/CreditNotes.java b/src/main/java/com/xero/models/accounting/CreditNotes.java
index 23441ca1..cea67d8c 100644
--- a/src/main/java/com/xero/models/accounting/CreditNotes.java
+++ b/src/main/java/com/xero/models/accounting/CreditNotes.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Currencies.java b/src/main/java/com/xero/models/accounting/Currencies.java
index 9a725eea..38e0cc4e 100644
--- a/src/main/java/com/xero/models/accounting/Currencies.java
+++ b/src/main/java/com/xero/models/accounting/Currencies.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Currency.java b/src/main/java/com/xero/models/accounting/Currency.java
index 2e795d6b..cd02d85d 100644
--- a/src/main/java/com/xero/models/accounting/Currency.java
+++ b/src/main/java/com/xero/models/accounting/Currency.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/CurrencyCode.java b/src/main/java/com/xero/models/accounting/CurrencyCode.java
index 272b1892..05ff21cb 100644
--- a/src/main/java/com/xero/models/accounting/CurrencyCode.java
+++ b/src/main/java/com/xero/models/accounting/CurrencyCode.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Element.java b/src/main/java/com/xero/models/accounting/Element.java
index 0ed13bc7..79c0bcb4 100644
--- a/src/main/java/com/xero/models/accounting/Element.java
+++ b/src/main/java/com/xero/models/accounting/Element.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Employee.java b/src/main/java/com/xero/models/accounting/Employee.java
index d76e3184..71117c8c 100644
--- a/src/main/java/com/xero/models/accounting/Employee.java
+++ b/src/main/java/com/xero/models/accounting/Employee.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Employees.java b/src/main/java/com/xero/models/accounting/Employees.java
index 4cd4d598..26d25c5d 100644
--- a/src/main/java/com/xero/models/accounting/Employees.java
+++ b/src/main/java/com/xero/models/accounting/Employees.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Error.java b/src/main/java/com/xero/models/accounting/Error.java
index 844a7fe5..86623c59 100644
--- a/src/main/java/com/xero/models/accounting/Error.java
+++ b/src/main/java/com/xero/models/accounting/Error.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ExpenseClaim.java b/src/main/java/com/xero/models/accounting/ExpenseClaim.java
index 4e0d2ea1..2b0793fe 100644
--- a/src/main/java/com/xero/models/accounting/ExpenseClaim.java
+++ b/src/main/java/com/xero/models/accounting/ExpenseClaim.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ExpenseClaims.java b/src/main/java/com/xero/models/accounting/ExpenseClaims.java
index fae2f08a..b4ace29b 100644
--- a/src/main/java/com/xero/models/accounting/ExpenseClaims.java
+++ b/src/main/java/com/xero/models/accounting/ExpenseClaims.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ExternalLink.java b/src/main/java/com/xero/models/accounting/ExternalLink.java
index af9df7d6..b2c05516 100644
--- a/src/main/java/com/xero/models/accounting/ExternalLink.java
+++ b/src/main/java/com/xero/models/accounting/ExternalLink.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/HistoryRecord.java b/src/main/java/com/xero/models/accounting/HistoryRecord.java
index e0d93036..cc969130 100644
--- a/src/main/java/com/xero/models/accounting/HistoryRecord.java
+++ b/src/main/java/com/xero/models/accounting/HistoryRecord.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/HistoryRecords.java b/src/main/java/com/xero/models/accounting/HistoryRecords.java
index 105102fd..2a42fc2a 100644
--- a/src/main/java/com/xero/models/accounting/HistoryRecords.java
+++ b/src/main/java/com/xero/models/accounting/HistoryRecords.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Invoice.java b/src/main/java/com/xero/models/accounting/Invoice.java
index 175f6fc9..7b1c6d82 100644
--- a/src/main/java/com/xero/models/accounting/Invoice.java
+++ b/src/main/java/com/xero/models/accounting/Invoice.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/InvoiceReminder.java b/src/main/java/com/xero/models/accounting/InvoiceReminder.java
index c09e972f..a0284c9d 100644
--- a/src/main/java/com/xero/models/accounting/InvoiceReminder.java
+++ b/src/main/java/com/xero/models/accounting/InvoiceReminder.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/InvoiceReminders.java b/src/main/java/com/xero/models/accounting/InvoiceReminders.java
index 215cb267..441bc816 100644
--- a/src/main/java/com/xero/models/accounting/InvoiceReminders.java
+++ b/src/main/java/com/xero/models/accounting/InvoiceReminders.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Invoices.java b/src/main/java/com/xero/models/accounting/Invoices.java
index aba1fa83..a5d35c15 100644
--- a/src/main/java/com/xero/models/accounting/Invoices.java
+++ b/src/main/java/com/xero/models/accounting/Invoices.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Item.java b/src/main/java/com/xero/models/accounting/Item.java
index 8611f7f4..964e8962 100644
--- a/src/main/java/com/xero/models/accounting/Item.java
+++ b/src/main/java/com/xero/models/accounting/Item.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Items.java b/src/main/java/com/xero/models/accounting/Items.java
index ee05de93..8649d835 100644
--- a/src/main/java/com/xero/models/accounting/Items.java
+++ b/src/main/java/com/xero/models/accounting/Items.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Journal.java b/src/main/java/com/xero/models/accounting/Journal.java
index d9282698..8c23d56c 100644
--- a/src/main/java/com/xero/models/accounting/Journal.java
+++ b/src/main/java/com/xero/models/accounting/Journal.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/JournalLine.java b/src/main/java/com/xero/models/accounting/JournalLine.java
index 72eb67a7..4ba1ae0a 100644
--- a/src/main/java/com/xero/models/accounting/JournalLine.java
+++ b/src/main/java/com/xero/models/accounting/JournalLine.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Journals.java b/src/main/java/com/xero/models/accounting/Journals.java
index ed910a70..0171d95f 100644
--- a/src/main/java/com/xero/models/accounting/Journals.java
+++ b/src/main/java/com/xero/models/accounting/Journals.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/LineAmountTypes.java b/src/main/java/com/xero/models/accounting/LineAmountTypes.java
index 072489e4..5bd79a04 100644
--- a/src/main/java/com/xero/models/accounting/LineAmountTypes.java
+++ b/src/main/java/com/xero/models/accounting/LineAmountTypes.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/LineItem.java b/src/main/java/com/xero/models/accounting/LineItem.java
index 61572df8..5c993b6d 100644
--- a/src/main/java/com/xero/models/accounting/LineItem.java
+++ b/src/main/java/com/xero/models/accounting/LineItem.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/LineItemTracking.java b/src/main/java/com/xero/models/accounting/LineItemTracking.java
index 2101794c..f6d5bb8c 100644
--- a/src/main/java/com/xero/models/accounting/LineItemTracking.java
+++ b/src/main/java/com/xero/models/accounting/LineItemTracking.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/LinkedTransaction.java b/src/main/java/com/xero/models/accounting/LinkedTransaction.java
index ff58caef..8978ecf7 100644
--- a/src/main/java/com/xero/models/accounting/LinkedTransaction.java
+++ b/src/main/java/com/xero/models/accounting/LinkedTransaction.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/LinkedTransactions.java b/src/main/java/com/xero/models/accounting/LinkedTransactions.java
index 95e34241..2fc82c8d 100644
--- a/src/main/java/com/xero/models/accounting/LinkedTransactions.java
+++ b/src/main/java/com/xero/models/accounting/LinkedTransactions.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ManualJournal.java b/src/main/java/com/xero/models/accounting/ManualJournal.java
index dcf0d887..72ee9d9a 100644
--- a/src/main/java/com/xero/models/accounting/ManualJournal.java
+++ b/src/main/java/com/xero/models/accounting/ManualJournal.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ManualJournalLine.java b/src/main/java/com/xero/models/accounting/ManualJournalLine.java
index 93ec1dad..d4a0f0c0 100644
--- a/src/main/java/com/xero/models/accounting/ManualJournalLine.java
+++ b/src/main/java/com/xero/models/accounting/ManualJournalLine.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ManualJournals.java b/src/main/java/com/xero/models/accounting/ManualJournals.java
index bacdadbe..134388ff 100644
--- a/src/main/java/com/xero/models/accounting/ManualJournals.java
+++ b/src/main/java/com/xero/models/accounting/ManualJournals.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/OnlineInvoice.java b/src/main/java/com/xero/models/accounting/OnlineInvoice.java
index 255d73eb..aa17775d 100644
--- a/src/main/java/com/xero/models/accounting/OnlineInvoice.java
+++ b/src/main/java/com/xero/models/accounting/OnlineInvoice.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/OnlineInvoices.java b/src/main/java/com/xero/models/accounting/OnlineInvoices.java
index ae43e564..644667ec 100644
--- a/src/main/java/com/xero/models/accounting/OnlineInvoices.java
+++ b/src/main/java/com/xero/models/accounting/OnlineInvoices.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Organisation.java b/src/main/java/com/xero/models/accounting/Organisation.java
index 862e9e91..76dfd331 100644
--- a/src/main/java/com/xero/models/accounting/Organisation.java
+++ b/src/main/java/com/xero/models/accounting/Organisation.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Organisations.java b/src/main/java/com/xero/models/accounting/Organisations.java
index f4c5f45e..8c6d7916 100644
--- a/src/main/java/com/xero/models/accounting/Organisations.java
+++ b/src/main/java/com/xero/models/accounting/Organisations.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Overpayment.java b/src/main/java/com/xero/models/accounting/Overpayment.java
index 94a740fd..312d8bc3 100644
--- a/src/main/java/com/xero/models/accounting/Overpayment.java
+++ b/src/main/java/com/xero/models/accounting/Overpayment.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Overpayments.java b/src/main/java/com/xero/models/accounting/Overpayments.java
index 9c204415..325007a3 100644
--- a/src/main/java/com/xero/models/accounting/Overpayments.java
+++ b/src/main/java/com/xero/models/accounting/Overpayments.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Payment.java b/src/main/java/com/xero/models/accounting/Payment.java
index 60109d31..53f1f0f1 100644
--- a/src/main/java/com/xero/models/accounting/Payment.java
+++ b/src/main/java/com/xero/models/accounting/Payment.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/PaymentDelete.java b/src/main/java/com/xero/models/accounting/PaymentDelete.java
index a7fd065a..a62a5949 100644
--- a/src/main/java/com/xero/models/accounting/PaymentDelete.java
+++ b/src/main/java/com/xero/models/accounting/PaymentDelete.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/PaymentService.java b/src/main/java/com/xero/models/accounting/PaymentService.java
index b2aa2aa8..c002c58f 100644
--- a/src/main/java/com/xero/models/accounting/PaymentService.java
+++ b/src/main/java/com/xero/models/accounting/PaymentService.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/PaymentServices.java b/src/main/java/com/xero/models/accounting/PaymentServices.java
index 8559eec6..cab97ac3 100644
--- a/src/main/java/com/xero/models/accounting/PaymentServices.java
+++ b/src/main/java/com/xero/models/accounting/PaymentServices.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/PaymentTerm.java b/src/main/java/com/xero/models/accounting/PaymentTerm.java
index d25bbd3f..b29ea9de 100644
--- a/src/main/java/com/xero/models/accounting/PaymentTerm.java
+++ b/src/main/java/com/xero/models/accounting/PaymentTerm.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/PaymentTermType.java b/src/main/java/com/xero/models/accounting/PaymentTermType.java
index d2b12286..5f49367c 100644
--- a/src/main/java/com/xero/models/accounting/PaymentTermType.java
+++ b/src/main/java/com/xero/models/accounting/PaymentTermType.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Payments.java b/src/main/java/com/xero/models/accounting/Payments.java
index bea7f29c..1f9f0892 100644
--- a/src/main/java/com/xero/models/accounting/Payments.java
+++ b/src/main/java/com/xero/models/accounting/Payments.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Phone.java b/src/main/java/com/xero/models/accounting/Phone.java
index 1d58c38d..215f6a8d 100644
--- a/src/main/java/com/xero/models/accounting/Phone.java
+++ b/src/main/java/com/xero/models/accounting/Phone.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Prepayment.java b/src/main/java/com/xero/models/accounting/Prepayment.java
index 518f250d..6ca2aa0f 100644
--- a/src/main/java/com/xero/models/accounting/Prepayment.java
+++ b/src/main/java/com/xero/models/accounting/Prepayment.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Prepayments.java b/src/main/java/com/xero/models/accounting/Prepayments.java
index 92bcd187..c09c282a 100644
--- a/src/main/java/com/xero/models/accounting/Prepayments.java
+++ b/src/main/java/com/xero/models/accounting/Prepayments.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Purchase.java b/src/main/java/com/xero/models/accounting/Purchase.java
index f49bb62e..8aa2f120 100644
--- a/src/main/java/com/xero/models/accounting/Purchase.java
+++ b/src/main/java/com/xero/models/accounting/Purchase.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/PurchaseOrder.java b/src/main/java/com/xero/models/accounting/PurchaseOrder.java
index d3e3e602..82fcc6a4 100644
--- a/src/main/java/com/xero/models/accounting/PurchaseOrder.java
+++ b/src/main/java/com/xero/models/accounting/PurchaseOrder.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/PurchaseOrders.java b/src/main/java/com/xero/models/accounting/PurchaseOrders.java
index ab1bf03d..7c41aa7a 100644
--- a/src/main/java/com/xero/models/accounting/PurchaseOrders.java
+++ b/src/main/java/com/xero/models/accounting/PurchaseOrders.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Quote.java b/src/main/java/com/xero/models/accounting/Quote.java
index 7d9cf017..b33146ad 100644
--- a/src/main/java/com/xero/models/accounting/Quote.java
+++ b/src/main/java/com/xero/models/accounting/Quote.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/QuoteLineAmountTypes.java b/src/main/java/com/xero/models/accounting/QuoteLineAmountTypes.java
index accc78ba..10db44f8 100644
--- a/src/main/java/com/xero/models/accounting/QuoteLineAmountTypes.java
+++ b/src/main/java/com/xero/models/accounting/QuoteLineAmountTypes.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/QuoteStatusCodes.java b/src/main/java/com/xero/models/accounting/QuoteStatusCodes.java
index c2f5dbe7..e81766e0 100644
--- a/src/main/java/com/xero/models/accounting/QuoteStatusCodes.java
+++ b/src/main/java/com/xero/models/accounting/QuoteStatusCodes.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Quotes.java b/src/main/java/com/xero/models/accounting/Quotes.java
index 30cb3a46..cea1e37d 100644
--- a/src/main/java/com/xero/models/accounting/Quotes.java
+++ b/src/main/java/com/xero/models/accounting/Quotes.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Receipt.java b/src/main/java/com/xero/models/accounting/Receipt.java
index 22a7fd28..d1cd6aa1 100644
--- a/src/main/java/com/xero/models/accounting/Receipt.java
+++ b/src/main/java/com/xero/models/accounting/Receipt.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Receipts.java b/src/main/java/com/xero/models/accounting/Receipts.java
index 246ef337..6c3f750f 100644
--- a/src/main/java/com/xero/models/accounting/Receipts.java
+++ b/src/main/java/com/xero/models/accounting/Receipts.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/RepeatingInvoice.java b/src/main/java/com/xero/models/accounting/RepeatingInvoice.java
index 3f353945..e455baa8 100644
--- a/src/main/java/com/xero/models/accounting/RepeatingInvoice.java
+++ b/src/main/java/com/xero/models/accounting/RepeatingInvoice.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/RepeatingInvoices.java b/src/main/java/com/xero/models/accounting/RepeatingInvoices.java
index b96f3d28..5b77971a 100644
--- a/src/main/java/com/xero/models/accounting/RepeatingInvoices.java
+++ b/src/main/java/com/xero/models/accounting/RepeatingInvoices.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Report.java b/src/main/java/com/xero/models/accounting/Report.java
index 55f8faf0..52c5d347 100644
--- a/src/main/java/com/xero/models/accounting/Report.java
+++ b/src/main/java/com/xero/models/accounting/Report.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ReportAttribute.java b/src/main/java/com/xero/models/accounting/ReportAttribute.java
index b1b29858..b3954b9f 100644
--- a/src/main/java/com/xero/models/accounting/ReportAttribute.java
+++ b/src/main/java/com/xero/models/accounting/ReportAttribute.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ReportCell.java b/src/main/java/com/xero/models/accounting/ReportCell.java
index ac497ed8..8381c611 100644
--- a/src/main/java/com/xero/models/accounting/ReportCell.java
+++ b/src/main/java/com/xero/models/accounting/ReportCell.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ReportFields.java b/src/main/java/com/xero/models/accounting/ReportFields.java
index 812c2c36..664b4e1e 100644
--- a/src/main/java/com/xero/models/accounting/ReportFields.java
+++ b/src/main/java/com/xero/models/accounting/ReportFields.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ReportRow.java b/src/main/java/com/xero/models/accounting/ReportRow.java
index a9288aa9..a998659d 100644
--- a/src/main/java/com/xero/models/accounting/ReportRow.java
+++ b/src/main/java/com/xero/models/accounting/ReportRow.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ReportRows.java b/src/main/java/com/xero/models/accounting/ReportRows.java
index eb8a0c8f..f0bc99e8 100644
--- a/src/main/java/com/xero/models/accounting/ReportRows.java
+++ b/src/main/java/com/xero/models/accounting/ReportRows.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ReportWithRow.java b/src/main/java/com/xero/models/accounting/ReportWithRow.java
index 2a7588ae..3669a5d3 100644
--- a/src/main/java/com/xero/models/accounting/ReportWithRow.java
+++ b/src/main/java/com/xero/models/accounting/ReportWithRow.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ReportWithRows.java b/src/main/java/com/xero/models/accounting/ReportWithRows.java
index 33b9057c..8d056715 100644
--- a/src/main/java/com/xero/models/accounting/ReportWithRows.java
+++ b/src/main/java/com/xero/models/accounting/ReportWithRows.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Reports.java b/src/main/java/com/xero/models/accounting/Reports.java
index 95657d79..d5beb773 100644
--- a/src/main/java/com/xero/models/accounting/Reports.java
+++ b/src/main/java/com/xero/models/accounting/Reports.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/RequestEmpty.java b/src/main/java/com/xero/models/accounting/RequestEmpty.java
index 5a0d1dc4..6ed06761 100644
--- a/src/main/java/com/xero/models/accounting/RequestEmpty.java
+++ b/src/main/java/com/xero/models/accounting/RequestEmpty.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/RowType.java b/src/main/java/com/xero/models/accounting/RowType.java
index 3a3e9e8e..40209d2f 100644
--- a/src/main/java/com/xero/models/accounting/RowType.java
+++ b/src/main/java/com/xero/models/accounting/RowType.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/SalesTrackingCategory.java b/src/main/java/com/xero/models/accounting/SalesTrackingCategory.java
index f3e034fe..245abb65 100644
--- a/src/main/java/com/xero/models/accounting/SalesTrackingCategory.java
+++ b/src/main/java/com/xero/models/accounting/SalesTrackingCategory.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Schedule.java b/src/main/java/com/xero/models/accounting/Schedule.java
index 5f622845..eee0ecc2 100644
--- a/src/main/java/com/xero/models/accounting/Schedule.java
+++ b/src/main/java/com/xero/models/accounting/Schedule.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TaxComponent.java b/src/main/java/com/xero/models/accounting/TaxComponent.java
index 136b145a..9ad2c65d 100644
--- a/src/main/java/com/xero/models/accounting/TaxComponent.java
+++ b/src/main/java/com/xero/models/accounting/TaxComponent.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TaxRate.java b/src/main/java/com/xero/models/accounting/TaxRate.java
index f3ede7f8..88adaca8 100644
--- a/src/main/java/com/xero/models/accounting/TaxRate.java
+++ b/src/main/java/com/xero/models/accounting/TaxRate.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TaxRates.java b/src/main/java/com/xero/models/accounting/TaxRates.java
index bb66027f..0c66aa02 100644
--- a/src/main/java/com/xero/models/accounting/TaxRates.java
+++ b/src/main/java/com/xero/models/accounting/TaxRates.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TaxType.java b/src/main/java/com/xero/models/accounting/TaxType.java
index 96a004a1..8ee6d6cf 100644
--- a/src/main/java/com/xero/models/accounting/TaxType.java
+++ b/src/main/java/com/xero/models/accounting/TaxType.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TenNinetyNineContact.java b/src/main/java/com/xero/models/accounting/TenNinetyNineContact.java
index 43f9a608..cfe9b4ba 100644
--- a/src/main/java/com/xero/models/accounting/TenNinetyNineContact.java
+++ b/src/main/java/com/xero/models/accounting/TenNinetyNineContact.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TimeZone.java b/src/main/java/com/xero/models/accounting/TimeZone.java
index ebcec703..0ae8c53d 100644
--- a/src/main/java/com/xero/models/accounting/TimeZone.java
+++ b/src/main/java/com/xero/models/accounting/TimeZone.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TrackingCategories.java b/src/main/java/com/xero/models/accounting/TrackingCategories.java
index f7ff2176..d7e5bf2a 100644
--- a/src/main/java/com/xero/models/accounting/TrackingCategories.java
+++ b/src/main/java/com/xero/models/accounting/TrackingCategories.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TrackingCategory.java b/src/main/java/com/xero/models/accounting/TrackingCategory.java
index f44ce4d1..ad21c1fb 100644
--- a/src/main/java/com/xero/models/accounting/TrackingCategory.java
+++ b/src/main/java/com/xero/models/accounting/TrackingCategory.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TrackingOption.java b/src/main/java/com/xero/models/accounting/TrackingOption.java
index 7a21cff2..51bee6e5 100644
--- a/src/main/java/com/xero/models/accounting/TrackingOption.java
+++ b/src/main/java/com/xero/models/accounting/TrackingOption.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/TrackingOptions.java b/src/main/java/com/xero/models/accounting/TrackingOptions.java
index d72fa303..4f116646 100644
--- a/src/main/java/com/xero/models/accounting/TrackingOptions.java
+++ b/src/main/java/com/xero/models/accounting/TrackingOptions.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/User.java b/src/main/java/com/xero/models/accounting/User.java
index 34a5ecff..044b1beb 100644
--- a/src/main/java/com/xero/models/accounting/User.java
+++ b/src/main/java/com/xero/models/accounting/User.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/Users.java b/src/main/java/com/xero/models/accounting/Users.java
index c2829c03..7ace3103 100644
--- a/src/main/java/com/xero/models/accounting/Users.java
+++ b/src/main/java/com/xero/models/accounting/Users.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/accounting/ValidationError.java b/src/main/java/com/xero/models/accounting/ValidationError.java
index 96fbfff0..3fbf487b 100644
--- a/src/main/java/com/xero/models/accounting/ValidationError.java
+++ b/src/main/java/com/xero/models/accounting/ValidationError.java
@@ -2,7 +2,7 @@
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/Asset.java b/src/main/java/com/xero/models/assets/Asset.java
index 28be1422..a9020b57 100644
--- a/src/main/java/com/xero/models/assets/Asset.java
+++ b/src/main/java/com/xero/models/assets/Asset.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/AssetStatus.java b/src/main/java/com/xero/models/assets/AssetStatus.java
index 53a245be..824e77e2 100644
--- a/src/main/java/com/xero/models/assets/AssetStatus.java
+++ b/src/main/java/com/xero/models/assets/AssetStatus.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/AssetStatusQueryParam.java b/src/main/java/com/xero/models/assets/AssetStatusQueryParam.java
index 968e7f7d..c10e4970 100644
--- a/src/main/java/com/xero/models/assets/AssetStatusQueryParam.java
+++ b/src/main/java/com/xero/models/assets/AssetStatusQueryParam.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/AssetType.java b/src/main/java/com/xero/models/assets/AssetType.java
index 32701758..758bcdec 100644
--- a/src/main/java/com/xero/models/assets/AssetType.java
+++ b/src/main/java/com/xero/models/assets/AssetType.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/Assets.java b/src/main/java/com/xero/models/assets/Assets.java
index 493923ba..4aeb75a4 100644
--- a/src/main/java/com/xero/models/assets/Assets.java
+++ b/src/main/java/com/xero/models/assets/Assets.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/BookDepreciationDetail.java b/src/main/java/com/xero/models/assets/BookDepreciationDetail.java
index 904b85be..f47b6cd4 100644
--- a/src/main/java/com/xero/models/assets/BookDepreciationDetail.java
+++ b/src/main/java/com/xero/models/assets/BookDepreciationDetail.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/BookDepreciationSetting.java b/src/main/java/com/xero/models/assets/BookDepreciationSetting.java
index d6535b23..fa76f5aa 100644
--- a/src/main/java/com/xero/models/assets/BookDepreciationSetting.java
+++ b/src/main/java/com/xero/models/assets/BookDepreciationSetting.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/Error.java b/src/main/java/com/xero/models/assets/Error.java
index 1ea82eb5..9f732599 100644
--- a/src/main/java/com/xero/models/assets/Error.java
+++ b/src/main/java/com/xero/models/assets/Error.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/FieldValidationErrorsElement.java b/src/main/java/com/xero/models/assets/FieldValidationErrorsElement.java
index 4e504f51..24df5623 100644
--- a/src/main/java/com/xero/models/assets/FieldValidationErrorsElement.java
+++ b/src/main/java/com/xero/models/assets/FieldValidationErrorsElement.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/Pagination.java b/src/main/java/com/xero/models/assets/Pagination.java
index f0324e72..f15783c4 100644
--- a/src/main/java/com/xero/models/assets/Pagination.java
+++ b/src/main/java/com/xero/models/assets/Pagination.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/ResourceValidationErrorsElement.java b/src/main/java/com/xero/models/assets/ResourceValidationErrorsElement.java
index 4aadd4ea..bd356fc3 100644
--- a/src/main/java/com/xero/models/assets/ResourceValidationErrorsElement.java
+++ b/src/main/java/com/xero/models/assets/ResourceValidationErrorsElement.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/assets/Setting.java b/src/main/java/com/xero/models/assets/Setting.java
index 6c543de4..fa54055a 100644
--- a/src/main/java/com/xero/models/assets/Setting.java
+++ b/src/main/java/com/xero/models/assets/Setting.java
@@ -2,7 +2,7 @@
* Xero Assets API
* This is the Xero Assets API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/CountryCode.java b/src/main/java/com/xero/models/bankfeeds/CountryCode.java
index 7db3deac..c0ab8315 100644
--- a/src/main/java/com/xero/models/bankfeeds/CountryCode.java
+++ b/src/main/java/com/xero/models/bankfeeds/CountryCode.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/CreditDebitIndicator.java b/src/main/java/com/xero/models/bankfeeds/CreditDebitIndicator.java
index a1696ad9..f60b12ff 100644
--- a/src/main/java/com/xero/models/bankfeeds/CreditDebitIndicator.java
+++ b/src/main/java/com/xero/models/bankfeeds/CreditDebitIndicator.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/CurrencyCode.java b/src/main/java/com/xero/models/bankfeeds/CurrencyCode.java
index e311aff3..0e35c224 100644
--- a/src/main/java/com/xero/models/bankfeeds/CurrencyCode.java
+++ b/src/main/java/com/xero/models/bankfeeds/CurrencyCode.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/EndBalance.java b/src/main/java/com/xero/models/bankfeeds/EndBalance.java
index f421c41f..3c90a386 100644
--- a/src/main/java/com/xero/models/bankfeeds/EndBalance.java
+++ b/src/main/java/com/xero/models/bankfeeds/EndBalance.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/Error.java b/src/main/java/com/xero/models/bankfeeds/Error.java
index 5a7807fb..28d1a357 100644
--- a/src/main/java/com/xero/models/bankfeeds/Error.java
+++ b/src/main/java/com/xero/models/bankfeeds/Error.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/FeedConnection.java b/src/main/java/com/xero/models/bankfeeds/FeedConnection.java
index ec45ced2..89053224 100644
--- a/src/main/java/com/xero/models/bankfeeds/FeedConnection.java
+++ b/src/main/java/com/xero/models/bankfeeds/FeedConnection.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/FeedConnections.java b/src/main/java/com/xero/models/bankfeeds/FeedConnections.java
index 9aa6e2ed..25cc4b52 100644
--- a/src/main/java/com/xero/models/bankfeeds/FeedConnections.java
+++ b/src/main/java/com/xero/models/bankfeeds/FeedConnections.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/Pagination.java b/src/main/java/com/xero/models/bankfeeds/Pagination.java
index 149639f5..b50ae9a0 100644
--- a/src/main/java/com/xero/models/bankfeeds/Pagination.java
+++ b/src/main/java/com/xero/models/bankfeeds/Pagination.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/StartBalance.java b/src/main/java/com/xero/models/bankfeeds/StartBalance.java
index 23217ad8..d746da8c 100644
--- a/src/main/java/com/xero/models/bankfeeds/StartBalance.java
+++ b/src/main/java/com/xero/models/bankfeeds/StartBalance.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/Statement.java b/src/main/java/com/xero/models/bankfeeds/Statement.java
index 9a88325c..1ce68d19 100644
--- a/src/main/java/com/xero/models/bankfeeds/Statement.java
+++ b/src/main/java/com/xero/models/bankfeeds/Statement.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/StatementLine.java b/src/main/java/com/xero/models/bankfeeds/StatementLine.java
index 5ad0dfbd..88f3dcc7 100644
--- a/src/main/java/com/xero/models/bankfeeds/StatementLine.java
+++ b/src/main/java/com/xero/models/bankfeeds/StatementLine.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/bankfeeds/Statements.java b/src/main/java/com/xero/models/bankfeeds/Statements.java
index 1e3b7673..7d34ff8f 100644
--- a/src/main/java/com/xero/models/bankfeeds/Statements.java
+++ b/src/main/java/com/xero/models/bankfeeds/Statements.java
@@ -2,7 +2,7 @@
* Bank Feeds API
* This specifing endpoints Xero Bank feeds API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/identity/AccessToken.java b/src/main/java/com/xero/models/identity/AccessToken.java
index 5e817b36..19297986 100644
--- a/src/main/java/com/xero/models/identity/AccessToken.java
+++ b/src/main/java/com/xero/models/identity/AccessToken.java
@@ -2,7 +2,7 @@
* Xero oAuth 2 identity service
* This specifing endpoints related to managing authentication tokens and identity for Xero API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/identity/Connection.java b/src/main/java/com/xero/models/identity/Connection.java
index af74cda3..4bf2ed85 100644
--- a/src/main/java/com/xero/models/identity/Connection.java
+++ b/src/main/java/com/xero/models/identity/Connection.java
@@ -2,7 +2,7 @@
* Xero oAuth 2 identity service
* This specifing endpoints related to managing authentication tokens and identity for Xero API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/identity/RefreshToken.java b/src/main/java/com/xero/models/identity/RefreshToken.java
index ee50a264..53e25e6e 100644
--- a/src/main/java/com/xero/models/identity/RefreshToken.java
+++ b/src/main/java/com/xero/models/identity/RefreshToken.java
@@ -2,7 +2,7 @@
* Xero oAuth 2 identity service
* This specifing endpoints related to managing authentication tokens and identity for Xero API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/Account.java b/src/main/java/com/xero/models/payrollau/Account.java
index bf0aff04..778c4350 100644
--- a/src/main/java/com/xero/models/payrollau/Account.java
+++ b/src/main/java/com/xero/models/payrollau/Account.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/AccountType.java b/src/main/java/com/xero/models/payrollau/AccountType.java
index cc6d7114..b70f0519 100644
--- a/src/main/java/com/xero/models/payrollau/AccountType.java
+++ b/src/main/java/com/xero/models/payrollau/AccountType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/AllowanceType.java b/src/main/java/com/xero/models/payrollau/AllowanceType.java
index ec7845a2..0749c340 100644
--- a/src/main/java/com/xero/models/payrollau/AllowanceType.java
+++ b/src/main/java/com/xero/models/payrollau/AllowanceType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/BankAccount.java b/src/main/java/com/xero/models/payrollau/BankAccount.java
index 770a1f1d..ed4af35d 100644
--- a/src/main/java/com/xero/models/payrollau/BankAccount.java
+++ b/src/main/java/com/xero/models/payrollau/BankAccount.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/CalendarType.java b/src/main/java/com/xero/models/payrollau/CalendarType.java
index 589a2ce7..66f30c6d 100644
--- a/src/main/java/com/xero/models/payrollau/CalendarType.java
+++ b/src/main/java/com/xero/models/payrollau/CalendarType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/DeductionLine.java b/src/main/java/com/xero/models/payrollau/DeductionLine.java
index 0688c2d0..3b81c3ce 100644
--- a/src/main/java/com/xero/models/payrollau/DeductionLine.java
+++ b/src/main/java/com/xero/models/payrollau/DeductionLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/DeductionType.java b/src/main/java/com/xero/models/payrollau/DeductionType.java
index 6172f320..c8e3fd27 100644
--- a/src/main/java/com/xero/models/payrollau/DeductionType.java
+++ b/src/main/java/com/xero/models/payrollau/DeductionType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/DeductionTypeCalculationType.java b/src/main/java/com/xero/models/payrollau/DeductionTypeCalculationType.java
index 52059db5..5ed9eee1 100644
--- a/src/main/java/com/xero/models/payrollau/DeductionTypeCalculationType.java
+++ b/src/main/java/com/xero/models/payrollau/DeductionTypeCalculationType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/EarningsLine.java b/src/main/java/com/xero/models/payrollau/EarningsLine.java
index ef957df3..187af9cd 100644
--- a/src/main/java/com/xero/models/payrollau/EarningsLine.java
+++ b/src/main/java/com/xero/models/payrollau/EarningsLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/EarningsRate.java b/src/main/java/com/xero/models/payrollau/EarningsRate.java
index 7aee4f51..4b2f96d4 100644
--- a/src/main/java/com/xero/models/payrollau/EarningsRate.java
+++ b/src/main/java/com/xero/models/payrollau/EarningsRate.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/EarningsRateCalculationType.java b/src/main/java/com/xero/models/payrollau/EarningsRateCalculationType.java
index a611847c..44a94755 100644
--- a/src/main/java/com/xero/models/payrollau/EarningsRateCalculationType.java
+++ b/src/main/java/com/xero/models/payrollau/EarningsRateCalculationType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/EarningsType.java b/src/main/java/com/xero/models/payrollau/EarningsType.java
index 0672953c..ff342728 100644
--- a/src/main/java/com/xero/models/payrollau/EarningsType.java
+++ b/src/main/java/com/xero/models/payrollau/EarningsType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/Employee.java b/src/main/java/com/xero/models/payrollau/Employee.java
index 8bb795eb..a624dc29 100644
--- a/src/main/java/com/xero/models/payrollau/Employee.java
+++ b/src/main/java/com/xero/models/payrollau/Employee.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/EmployeeStatus.java b/src/main/java/com/xero/models/payrollau/EmployeeStatus.java
index e9ab32c9..b20451de 100644
--- a/src/main/java/com/xero/models/payrollau/EmployeeStatus.java
+++ b/src/main/java/com/xero/models/payrollau/EmployeeStatus.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/Employees.java b/src/main/java/com/xero/models/payrollau/Employees.java
index 9dee4294..99d80297 100644
--- a/src/main/java/com/xero/models/payrollau/Employees.java
+++ b/src/main/java/com/xero/models/payrollau/Employees.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/EmploymentBasis.java b/src/main/java/com/xero/models/payrollau/EmploymentBasis.java
index 33a28c0d..0a98fbc3 100644
--- a/src/main/java/com/xero/models/payrollau/EmploymentBasis.java
+++ b/src/main/java/com/xero/models/payrollau/EmploymentBasis.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/EmploymentTerminationPaymentType.java b/src/main/java/com/xero/models/payrollau/EmploymentTerminationPaymentType.java
index 00e6e42e..72aa1761 100644
--- a/src/main/java/com/xero/models/payrollau/EmploymentTerminationPaymentType.java
+++ b/src/main/java/com/xero/models/payrollau/EmploymentTerminationPaymentType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/EntitlementFinalPayPayoutType.java b/src/main/java/com/xero/models/payrollau/EntitlementFinalPayPayoutType.java
index 9355c491..636662be 100644
--- a/src/main/java/com/xero/models/payrollau/EntitlementFinalPayPayoutType.java
+++ b/src/main/java/com/xero/models/payrollau/EntitlementFinalPayPayoutType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/HomeAddress.java b/src/main/java/com/xero/models/payrollau/HomeAddress.java
index 959d41b8..0d63b94b 100644
--- a/src/main/java/com/xero/models/payrollau/HomeAddress.java
+++ b/src/main/java/com/xero/models/payrollau/HomeAddress.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveAccrualLine.java b/src/main/java/com/xero/models/payrollau/LeaveAccrualLine.java
index 7f20ba13..41ccca19 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveAccrualLine.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveAccrualLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveApplication.java b/src/main/java/com/xero/models/payrollau/LeaveApplication.java
index d7875254..89530f48 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveApplication.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveApplication.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveApplications.java b/src/main/java/com/xero/models/payrollau/LeaveApplications.java
index 5c41fdbb..c6f718b8 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveApplications.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveApplications.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveBalance.java b/src/main/java/com/xero/models/payrollau/LeaveBalance.java
index c7d5a8ec..47921940 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveBalance.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveBalance.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveEarningsLine.java b/src/main/java/com/xero/models/payrollau/LeaveEarningsLine.java
index a575b500..257fe4e4 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveEarningsLine.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveEarningsLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveLine.java b/src/main/java/com/xero/models/payrollau/LeaveLine.java
index f1544669..7d30a0ab 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveLine.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveLineCalculationType.java b/src/main/java/com/xero/models/payrollau/LeaveLineCalculationType.java
index 9566cc87..d504f3ec 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveLineCalculationType.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveLineCalculationType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveLines.java b/src/main/java/com/xero/models/payrollau/LeaveLines.java
index 8c3a6b03..cf3e0589 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveLines.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveLines.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeavePeriod.java b/src/main/java/com/xero/models/payrollau/LeavePeriod.java
index bcea196a..49d010bd 100644
--- a/src/main/java/com/xero/models/payrollau/LeavePeriod.java
+++ b/src/main/java/com/xero/models/payrollau/LeavePeriod.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeavePeriodStatus.java b/src/main/java/com/xero/models/payrollau/LeavePeriodStatus.java
index 889707be..649d366f 100644
--- a/src/main/java/com/xero/models/payrollau/LeavePeriodStatus.java
+++ b/src/main/java/com/xero/models/payrollau/LeavePeriodStatus.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveType.java b/src/main/java/com/xero/models/payrollau/LeaveType.java
index 06edf950..36aa59e9 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveType.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/LeaveTypeContributionType.java b/src/main/java/com/xero/models/payrollau/LeaveTypeContributionType.java
index d2a970b0..791497d3 100644
--- a/src/main/java/com/xero/models/payrollau/LeaveTypeContributionType.java
+++ b/src/main/java/com/xero/models/payrollau/LeaveTypeContributionType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/ManualTaxType.java b/src/main/java/com/xero/models/payrollau/ManualTaxType.java
index 0aac01c6..527014f9 100644
--- a/src/main/java/com/xero/models/payrollau/ManualTaxType.java
+++ b/src/main/java/com/xero/models/payrollau/ManualTaxType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/ModelAPIException.java b/src/main/java/com/xero/models/payrollau/ModelAPIException.java
index c044ada9..af849134 100644
--- a/src/main/java/com/xero/models/payrollau/ModelAPIException.java
+++ b/src/main/java/com/xero/models/payrollau/ModelAPIException.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/OpeningBalances.java b/src/main/java/com/xero/models/payrollau/OpeningBalances.java
index 02de1c6d..9c892fa3 100644
--- a/src/main/java/com/xero/models/payrollau/OpeningBalances.java
+++ b/src/main/java/com/xero/models/payrollau/OpeningBalances.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayItem.java b/src/main/java/com/xero/models/payrollau/PayItem.java
index 3bf29d3d..deb40b47 100644
--- a/src/main/java/com/xero/models/payrollau/PayItem.java
+++ b/src/main/java/com/xero/models/payrollau/PayItem.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayItems.java b/src/main/java/com/xero/models/payrollau/PayItems.java
index f508adaa..aa6096b6 100644
--- a/src/main/java/com/xero/models/payrollau/PayItems.java
+++ b/src/main/java/com/xero/models/payrollau/PayItems.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayRun.java b/src/main/java/com/xero/models/payrollau/PayRun.java
index 08c90e62..2283e203 100644
--- a/src/main/java/com/xero/models/payrollau/PayRun.java
+++ b/src/main/java/com/xero/models/payrollau/PayRun.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayRunStatus.java b/src/main/java/com/xero/models/payrollau/PayRunStatus.java
index 3d36984d..3d3bddca 100644
--- a/src/main/java/com/xero/models/payrollau/PayRunStatus.java
+++ b/src/main/java/com/xero/models/payrollau/PayRunStatus.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayRuns.java b/src/main/java/com/xero/models/payrollau/PayRuns.java
index 64eb1fa2..48f931f2 100644
--- a/src/main/java/com/xero/models/payrollau/PayRuns.java
+++ b/src/main/java/com/xero/models/payrollau/PayRuns.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayTemplate.java b/src/main/java/com/xero/models/payrollau/PayTemplate.java
index 2f2c56ae..a4786fa5 100644
--- a/src/main/java/com/xero/models/payrollau/PayTemplate.java
+++ b/src/main/java/com/xero/models/payrollau/PayTemplate.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PaymentFrequencyType.java b/src/main/java/com/xero/models/payrollau/PaymentFrequencyType.java
index 50a5f48c..8ccb609c 100644
--- a/src/main/java/com/xero/models/payrollau/PaymentFrequencyType.java
+++ b/src/main/java/com/xero/models/payrollau/PaymentFrequencyType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayrollCalendar.java b/src/main/java/com/xero/models/payrollau/PayrollCalendar.java
index 46ff264a..bd4ae4ea 100644
--- a/src/main/java/com/xero/models/payrollau/PayrollCalendar.java
+++ b/src/main/java/com/xero/models/payrollau/PayrollCalendar.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayrollCalendars.java b/src/main/java/com/xero/models/payrollau/PayrollCalendars.java
index 32f7d8ca..fbdf2f47 100644
--- a/src/main/java/com/xero/models/payrollau/PayrollCalendars.java
+++ b/src/main/java/com/xero/models/payrollau/PayrollCalendars.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/Payslip.java b/src/main/java/com/xero/models/payrollau/Payslip.java
index e8f31362..0bca486a 100644
--- a/src/main/java/com/xero/models/payrollau/Payslip.java
+++ b/src/main/java/com/xero/models/payrollau/Payslip.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayslipLines.java b/src/main/java/com/xero/models/payrollau/PayslipLines.java
index ff128310..843782db 100644
--- a/src/main/java/com/xero/models/payrollau/PayslipLines.java
+++ b/src/main/java/com/xero/models/payrollau/PayslipLines.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayslipObject.java b/src/main/java/com/xero/models/payrollau/PayslipObject.java
index 18385796..675742c3 100644
--- a/src/main/java/com/xero/models/payrollau/PayslipObject.java
+++ b/src/main/java/com/xero/models/payrollau/PayslipObject.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/PayslipSummary.java b/src/main/java/com/xero/models/payrollau/PayslipSummary.java
index 063f039c..5dffb97f 100644
--- a/src/main/java/com/xero/models/payrollau/PayslipSummary.java
+++ b/src/main/java/com/xero/models/payrollau/PayslipSummary.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/Payslips.java b/src/main/java/com/xero/models/payrollau/Payslips.java
index 89b6376c..bcca982a 100644
--- a/src/main/java/com/xero/models/payrollau/Payslips.java
+++ b/src/main/java/com/xero/models/payrollau/Payslips.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/RateType.java b/src/main/java/com/xero/models/payrollau/RateType.java
index 9a2c74e3..a94877e0 100644
--- a/src/main/java/com/xero/models/payrollau/RateType.java
+++ b/src/main/java/com/xero/models/payrollau/RateType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/ReimbursementLine.java b/src/main/java/com/xero/models/payrollau/ReimbursementLine.java
index c6398be9..97460482 100644
--- a/src/main/java/com/xero/models/payrollau/ReimbursementLine.java
+++ b/src/main/java/com/xero/models/payrollau/ReimbursementLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/ReimbursementLines.java b/src/main/java/com/xero/models/payrollau/ReimbursementLines.java
index fd91523f..7f099c28 100644
--- a/src/main/java/com/xero/models/payrollau/ReimbursementLines.java
+++ b/src/main/java/com/xero/models/payrollau/ReimbursementLines.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/ReimbursementType.java b/src/main/java/com/xero/models/payrollau/ReimbursementType.java
index edf13a2e..c2e81861 100644
--- a/src/main/java/com/xero/models/payrollau/ReimbursementType.java
+++ b/src/main/java/com/xero/models/payrollau/ReimbursementType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/ResidencyStatus.java b/src/main/java/com/xero/models/payrollau/ResidencyStatus.java
index 0246422e..f29f5add 100644
--- a/src/main/java/com/xero/models/payrollau/ResidencyStatus.java
+++ b/src/main/java/com/xero/models/payrollau/ResidencyStatus.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/Settings.java b/src/main/java/com/xero/models/payrollau/Settings.java
index e85de554..78ec05cf 100644
--- a/src/main/java/com/xero/models/payrollau/Settings.java
+++ b/src/main/java/com/xero/models/payrollau/Settings.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SettingsObject.java b/src/main/java/com/xero/models/payrollau/SettingsObject.java
index b0efa922..46208f41 100644
--- a/src/main/java/com/xero/models/payrollau/SettingsObject.java
+++ b/src/main/java/com/xero/models/payrollau/SettingsObject.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SettingsTrackingCategories.java b/src/main/java/com/xero/models/payrollau/SettingsTrackingCategories.java
index 72d9414d..bc2ca72c 100644
--- a/src/main/java/com/xero/models/payrollau/SettingsTrackingCategories.java
+++ b/src/main/java/com/xero/models/payrollau/SettingsTrackingCategories.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SettingsTrackingCategoriesEmployeeGroups.java b/src/main/java/com/xero/models/payrollau/SettingsTrackingCategoriesEmployeeGroups.java
index 8af9d2a6..7e66151f 100644
--- a/src/main/java/com/xero/models/payrollau/SettingsTrackingCategoriesEmployeeGroups.java
+++ b/src/main/java/com/xero/models/payrollau/SettingsTrackingCategoriesEmployeeGroups.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SettingsTrackingCategoriesTimesheetCategories.java b/src/main/java/com/xero/models/payrollau/SettingsTrackingCategoriesTimesheetCategories.java
index deabfb2c..3d6f68df 100644
--- a/src/main/java/com/xero/models/payrollau/SettingsTrackingCategoriesTimesheetCategories.java
+++ b/src/main/java/com/xero/models/payrollau/SettingsTrackingCategoriesTimesheetCategories.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/State.java b/src/main/java/com/xero/models/payrollau/State.java
index 3451a76d..67794432 100644
--- a/src/main/java/com/xero/models/payrollau/State.java
+++ b/src/main/java/com/xero/models/payrollau/State.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperFund.java b/src/main/java/com/xero/models/payrollau/SuperFund.java
index 4b43185f..f0c2f979 100644
--- a/src/main/java/com/xero/models/payrollau/SuperFund.java
+++ b/src/main/java/com/xero/models/payrollau/SuperFund.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperFundProduct.java b/src/main/java/com/xero/models/payrollau/SuperFundProduct.java
index d7795017..93d41d16 100644
--- a/src/main/java/com/xero/models/payrollau/SuperFundProduct.java
+++ b/src/main/java/com/xero/models/payrollau/SuperFundProduct.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperFundProducts.java b/src/main/java/com/xero/models/payrollau/SuperFundProducts.java
index e21fbad9..8a322b33 100644
--- a/src/main/java/com/xero/models/payrollau/SuperFundProducts.java
+++ b/src/main/java/com/xero/models/payrollau/SuperFundProducts.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperFundType.java b/src/main/java/com/xero/models/payrollau/SuperFundType.java
index 0196c6d8..7bbcbb16 100644
--- a/src/main/java/com/xero/models/payrollau/SuperFundType.java
+++ b/src/main/java/com/xero/models/payrollau/SuperFundType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperFunds.java b/src/main/java/com/xero/models/payrollau/SuperFunds.java
index ee3cf768..858ab316 100644
--- a/src/main/java/com/xero/models/payrollau/SuperFunds.java
+++ b/src/main/java/com/xero/models/payrollau/SuperFunds.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperLine.java b/src/main/java/com/xero/models/payrollau/SuperLine.java
index 8443e8d3..0d91512c 100644
--- a/src/main/java/com/xero/models/payrollau/SuperLine.java
+++ b/src/main/java/com/xero/models/payrollau/SuperLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperMembership.java b/src/main/java/com/xero/models/payrollau/SuperMembership.java
index 9a43b3cd..bbd0cfe0 100644
--- a/src/main/java/com/xero/models/payrollau/SuperMembership.java
+++ b/src/main/java/com/xero/models/payrollau/SuperMembership.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperannuationCalculationType.java b/src/main/java/com/xero/models/payrollau/SuperannuationCalculationType.java
index 80f698d1..eb1718ac 100644
--- a/src/main/java/com/xero/models/payrollau/SuperannuationCalculationType.java
+++ b/src/main/java/com/xero/models/payrollau/SuperannuationCalculationType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperannuationContributionType.java b/src/main/java/com/xero/models/payrollau/SuperannuationContributionType.java
index 6a09f697..3692a94a 100644
--- a/src/main/java/com/xero/models/payrollau/SuperannuationContributionType.java
+++ b/src/main/java/com/xero/models/payrollau/SuperannuationContributionType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/SuperannuationLine.java b/src/main/java/com/xero/models/payrollau/SuperannuationLine.java
index 8cc2ec84..3728da57 100644
--- a/src/main/java/com/xero/models/payrollau/SuperannuationLine.java
+++ b/src/main/java/com/xero/models/payrollau/SuperannuationLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/TFNExemptionType.java b/src/main/java/com/xero/models/payrollau/TFNExemptionType.java
index ba94b954..5e2ec1a9 100644
--- a/src/main/java/com/xero/models/payrollau/TFNExemptionType.java
+++ b/src/main/java/com/xero/models/payrollau/TFNExemptionType.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/TaxDeclaration.java b/src/main/java/com/xero/models/payrollau/TaxDeclaration.java
index 37c3f019..46e63e5e 100644
--- a/src/main/java/com/xero/models/payrollau/TaxDeclaration.java
+++ b/src/main/java/com/xero/models/payrollau/TaxDeclaration.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -83,7 +83,7 @@ public TaxDeclaration employeeID(UUID employeeID) {
*
* @return employeeID
*/
- @ApiModelProperty(required = true, value = "Address line 1 for employee home address")
+ @ApiModelProperty(value = "Address line 1 for employee home address")
public UUID getEmployeeID() {
return employeeID;
}
diff --git a/src/main/java/com/xero/models/payrollau/TaxLine.java b/src/main/java/com/xero/models/payrollau/TaxLine.java
index 2076d82a..6ecbb86e 100644
--- a/src/main/java/com/xero/models/payrollau/TaxLine.java
+++ b/src/main/java/com/xero/models/payrollau/TaxLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/Timesheet.java b/src/main/java/com/xero/models/payrollau/Timesheet.java
index 0cf16293..7506ad12 100644
--- a/src/main/java/com/xero/models/payrollau/Timesheet.java
+++ b/src/main/java/com/xero/models/payrollau/Timesheet.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/TimesheetLine.java b/src/main/java/com/xero/models/payrollau/TimesheetLine.java
index bf04da59..325035fe 100644
--- a/src/main/java/com/xero/models/payrollau/TimesheetLine.java
+++ b/src/main/java/com/xero/models/payrollau/TimesheetLine.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/TimesheetObject.java b/src/main/java/com/xero/models/payrollau/TimesheetObject.java
index 881cc2b9..764d647b 100644
--- a/src/main/java/com/xero/models/payrollau/TimesheetObject.java
+++ b/src/main/java/com/xero/models/payrollau/TimesheetObject.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/TimesheetStatus.java b/src/main/java/com/xero/models/payrollau/TimesheetStatus.java
index 85873a6d..d082e0f8 100644
--- a/src/main/java/com/xero/models/payrollau/TimesheetStatus.java
+++ b/src/main/java/com/xero/models/payrollau/TimesheetStatus.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,11 @@ public enum TimesheetStatus {
PROCESSED("PROCESSED"),
- APPROVED("APPROVED");
+ APPROVED("APPROVED"),
+
+ REJECTED("REJECTED"),
+
+ REQUESTED("REQUESTED");
private String value;
diff --git a/src/main/java/com/xero/models/payrollau/Timesheets.java b/src/main/java/com/xero/models/payrollau/Timesheets.java
index 736195e6..9af1656f 100644
--- a/src/main/java/com/xero/models/payrollau/Timesheets.java
+++ b/src/main/java/com/xero/models/payrollau/Timesheets.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollau/ValidationError.java b/src/main/java/com/xero/models/payrollau/ValidationError.java
index 116e671e..2dc34a26 100644
--- a/src/main/java/com/xero/models/payrollau/ValidationError.java
+++ b/src/main/java/com/xero/models/payrollau/ValidationError.java
@@ -2,7 +2,7 @@
* Xero Payroll AU
* This is the Xero Payroll API for orgs in Australia region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Account.java b/src/main/java/com/xero/models/payrollnz/Account.java
index 13cd2d02..65503d05 100644
--- a/src/main/java/com/xero/models/payrollnz/Account.java
+++ b/src/main/java/com/xero/models/payrollnz/Account.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Accounts.java b/src/main/java/com/xero/models/payrollnz/Accounts.java
index c2a77154..f1bd9235 100644
--- a/src/main/java/com/xero/models/payrollnz/Accounts.java
+++ b/src/main/java/com/xero/models/payrollnz/Accounts.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Address.java b/src/main/java/com/xero/models/payrollnz/Address.java
index ceed70c3..14039bb7 100644
--- a/src/main/java/com/xero/models/payrollnz/Address.java
+++ b/src/main/java/com/xero/models/payrollnz/Address.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/BankAccount.java b/src/main/java/com/xero/models/payrollnz/BankAccount.java
index 32ae7ee2..f52cdd61 100644
--- a/src/main/java/com/xero/models/payrollnz/BankAccount.java
+++ b/src/main/java/com/xero/models/payrollnz/BankAccount.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Benefit.java b/src/main/java/com/xero/models/payrollnz/Benefit.java
index 99eac4d2..58fd5304 100644
--- a/src/main/java/com/xero/models/payrollnz/Benefit.java
+++ b/src/main/java/com/xero/models/payrollnz/Benefit.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Deduction.java b/src/main/java/com/xero/models/payrollnz/Deduction.java
index 7370ddf7..91429a2c 100644
--- a/src/main/java/com/xero/models/payrollnz/Deduction.java
+++ b/src/main/java/com/xero/models/payrollnz/Deduction.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/DeductionLine.java b/src/main/java/com/xero/models/payrollnz/DeductionLine.java
index 41d219b2..84930384 100644
--- a/src/main/java/com/xero/models/payrollnz/DeductionLine.java
+++ b/src/main/java/com/xero/models/payrollnz/DeductionLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/DeductionObject.java b/src/main/java/com/xero/models/payrollnz/DeductionObject.java
index 72c2a4f4..6e04cd87 100644
--- a/src/main/java/com/xero/models/payrollnz/DeductionObject.java
+++ b/src/main/java/com/xero/models/payrollnz/DeductionObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Deductions.java b/src/main/java/com/xero/models/payrollnz/Deductions.java
index 28cc4325..21ce83ac 100644
--- a/src/main/java/com/xero/models/payrollnz/Deductions.java
+++ b/src/main/java/com/xero/models/payrollnz/Deductions.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EarningsLine.java b/src/main/java/com/xero/models/payrollnz/EarningsLine.java
index bed34697..b766f44c 100644
--- a/src/main/java/com/xero/models/payrollnz/EarningsLine.java
+++ b/src/main/java/com/xero/models/payrollnz/EarningsLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EarningsOrder.java b/src/main/java/com/xero/models/payrollnz/EarningsOrder.java
index 2c645824..15aa2a7d 100644
--- a/src/main/java/com/xero/models/payrollnz/EarningsOrder.java
+++ b/src/main/java/com/xero/models/payrollnz/EarningsOrder.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EarningsOrderObject.java b/src/main/java/com/xero/models/payrollnz/EarningsOrderObject.java
index 6ca694e3..0697f18e 100644
--- a/src/main/java/com/xero/models/payrollnz/EarningsOrderObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EarningsOrderObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EarningsOrders.java b/src/main/java/com/xero/models/payrollnz/EarningsOrders.java
index 68a6c89b..2920a8bf 100644
--- a/src/main/java/com/xero/models/payrollnz/EarningsOrders.java
+++ b/src/main/java/com/xero/models/payrollnz/EarningsOrders.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EarningsRate.java b/src/main/java/com/xero/models/payrollnz/EarningsRate.java
index b80f17e0..2116a55c 100644
--- a/src/main/java/com/xero/models/payrollnz/EarningsRate.java
+++ b/src/main/java/com/xero/models/payrollnz/EarningsRate.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EarningsRateObject.java b/src/main/java/com/xero/models/payrollnz/EarningsRateObject.java
index 33dc1a0c..9f037e26 100644
--- a/src/main/java/com/xero/models/payrollnz/EarningsRateObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EarningsRateObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EarningsRates.java b/src/main/java/com/xero/models/payrollnz/EarningsRates.java
index eaf42bbb..9e8f4d0d 100644
--- a/src/main/java/com/xero/models/payrollnz/EarningsRates.java
+++ b/src/main/java/com/xero/models/payrollnz/EarningsRates.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EarningsTemplate.java b/src/main/java/com/xero/models/payrollnz/EarningsTemplate.java
index f6c2305d..6e9f3cc1 100644
--- a/src/main/java/com/xero/models/payrollnz/EarningsTemplate.java
+++ b/src/main/java/com/xero/models/payrollnz/EarningsTemplate.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EarningsTemplateObject.java b/src/main/java/com/xero/models/payrollnz/EarningsTemplateObject.java
index ccf570ee..32cc1d0d 100644
--- a/src/main/java/com/xero/models/payrollnz/EarningsTemplateObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EarningsTemplateObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Employee.java b/src/main/java/com/xero/models/payrollnz/Employee.java
index 2c96119c..ba661ae5 100644
--- a/src/main/java/com/xero/models/payrollnz/Employee.java
+++ b/src/main/java/com/xero/models/payrollnz/Employee.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeEarningsTemplates.java b/src/main/java/com/xero/models/payrollnz/EmployeeEarningsTemplates.java
index 900078ff..eda42ae6 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeEarningsTemplates.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeEarningsTemplates.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeave.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeave.java
index 5b71163d..16bc9c29 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeave.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeave.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveBalance.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveBalance.java
index 942edaff..65f47abc 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveBalance.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveBalance.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveBalances.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveBalances.java
index b37a74fd..ecc1db39 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveBalances.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveBalances.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveObject.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveObject.java
index b26c999e..f39e807d 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveSetup.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveSetup.java
index 96d293ea..25927226 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveSetup.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveSetup.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveSetupObject.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveSetupObject.java
index 34a25e8f..d60a3437 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveSetupObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveSetupObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveType.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveType.java
index bc03c691..abc48a13 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveType.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveType.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveTypeObject.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveTypeObject.java
index b814b65e..7055c8e8 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveTypeObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveTypeObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveTypes.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveTypes.java
index c7cd3866..a0e85a6b 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeaveTypes.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeaveTypes.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeLeaves.java b/src/main/java/com/xero/models/payrollnz/EmployeeLeaves.java
index 3d015913..5cb4888c 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeLeaves.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeLeaves.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeObject.java b/src/main/java/com/xero/models/payrollnz/EmployeeObject.java
index 1c82273d..72af166e 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeOpeningBalance.java b/src/main/java/com/xero/models/payrollnz/EmployeeOpeningBalance.java
index 9179ee78..c21b4f98 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeOpeningBalance.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeOpeningBalance.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeOpeningBalancesObject.java b/src/main/java/com/xero/models/payrollnz/EmployeeOpeningBalancesObject.java
index 8a743c07..21fc2f06 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeOpeningBalancesObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeOpeningBalancesObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeePayTemplate.java b/src/main/java/com/xero/models/payrollnz/EmployeePayTemplate.java
index 3bd91b7e..6312c474 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeePayTemplate.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeePayTemplate.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeePayTemplateObject.java b/src/main/java/com/xero/models/payrollnz/EmployeePayTemplateObject.java
index 697828c6..010497be 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeePayTemplateObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeePayTemplateObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeePayTemplates.java b/src/main/java/com/xero/models/payrollnz/EmployeePayTemplates.java
index 3eccca51..2364c3d0 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeePayTemplates.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeePayTemplates.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveBalance.java b/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveBalance.java
index bda18a3f..da54867c 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveBalance.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveBalance.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveBalanceObject.java b/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveBalanceObject.java
index f508d43e..4b4da123 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveBalanceObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveBalanceObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveSummary.java b/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveSummary.java
index 21e242cf..534f4b8d 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveSummary.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeaveSummary.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeavesSummaries.java b/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeavesSummaries.java
index 9e0b7ae4..437aec44 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeavesSummaries.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeStatutoryLeavesSummaries.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeave.java b/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeave.java
index 65787031..8f70ba9b 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeave.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeave.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeaveObject.java b/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeaveObject.java
index fda1c951..a37bb1ec 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeaveObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeaveObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeaves.java b/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeaves.java
index 2e43c590..1c7e8d73 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeaves.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeStatutorySickLeaves.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeTax.java b/src/main/java/com/xero/models/payrollnz/EmployeeTax.java
index abb9b0fc..8d38ef12 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeTax.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeTax.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmployeeTaxObject.java b/src/main/java/com/xero/models/payrollnz/EmployeeTaxObject.java
index 389688ee..531a7775 100644
--- a/src/main/java/com/xero/models/payrollnz/EmployeeTaxObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmployeeTaxObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Employees.java b/src/main/java/com/xero/models/payrollnz/Employees.java
index 4af91a4a..13dda5dc 100644
--- a/src/main/java/com/xero/models/payrollnz/Employees.java
+++ b/src/main/java/com/xero/models/payrollnz/Employees.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Employment.java b/src/main/java/com/xero/models/payrollnz/Employment.java
index f3b812a3..f5aaede6 100644
--- a/src/main/java/com/xero/models/payrollnz/Employment.java
+++ b/src/main/java/com/xero/models/payrollnz/Employment.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/EmploymentObject.java b/src/main/java/com/xero/models/payrollnz/EmploymentObject.java
index 63cd2c9a..2d0077ed 100644
--- a/src/main/java/com/xero/models/payrollnz/EmploymentObject.java
+++ b/src/main/java/com/xero/models/payrollnz/EmploymentObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/GrossEarningsHistory.java b/src/main/java/com/xero/models/payrollnz/GrossEarningsHistory.java
index 8325b295..432544be 100644
--- a/src/main/java/com/xero/models/payrollnz/GrossEarningsHistory.java
+++ b/src/main/java/com/xero/models/payrollnz/GrossEarningsHistory.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/InvalidField.java b/src/main/java/com/xero/models/payrollnz/InvalidField.java
index 8fdb47f6..f6f0bc09 100644
--- a/src/main/java/com/xero/models/payrollnz/InvalidField.java
+++ b/src/main/java/com/xero/models/payrollnz/InvalidField.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/LeaveAccrualLine.java b/src/main/java/com/xero/models/payrollnz/LeaveAccrualLine.java
index 3c691fa3..9a97960f 100644
--- a/src/main/java/com/xero/models/payrollnz/LeaveAccrualLine.java
+++ b/src/main/java/com/xero/models/payrollnz/LeaveAccrualLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/LeaveEarningsLine.java b/src/main/java/com/xero/models/payrollnz/LeaveEarningsLine.java
index 715bf7d1..8111b977 100644
--- a/src/main/java/com/xero/models/payrollnz/LeaveEarningsLine.java
+++ b/src/main/java/com/xero/models/payrollnz/LeaveEarningsLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/LeavePeriod.java b/src/main/java/com/xero/models/payrollnz/LeavePeriod.java
index 6145ffee..7a9e28c9 100644
--- a/src/main/java/com/xero/models/payrollnz/LeavePeriod.java
+++ b/src/main/java/com/xero/models/payrollnz/LeavePeriod.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/LeavePeriods.java b/src/main/java/com/xero/models/payrollnz/LeavePeriods.java
index f535667a..824799fc 100644
--- a/src/main/java/com/xero/models/payrollnz/LeavePeriods.java
+++ b/src/main/java/com/xero/models/payrollnz/LeavePeriods.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/LeaveType.java b/src/main/java/com/xero/models/payrollnz/LeaveType.java
index 9d283c12..51ab0c58 100644
--- a/src/main/java/com/xero/models/payrollnz/LeaveType.java
+++ b/src/main/java/com/xero/models/payrollnz/LeaveType.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/LeaveTypeObject.java b/src/main/java/com/xero/models/payrollnz/LeaveTypeObject.java
index 7a55f4f3..8460dc01 100644
--- a/src/main/java/com/xero/models/payrollnz/LeaveTypeObject.java
+++ b/src/main/java/com/xero/models/payrollnz/LeaveTypeObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/LeaveTypes.java b/src/main/java/com/xero/models/payrollnz/LeaveTypes.java
index 0747ce8c..dfe1e75b 100644
--- a/src/main/java/com/xero/models/payrollnz/LeaveTypes.java
+++ b/src/main/java/com/xero/models/payrollnz/LeaveTypes.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Pagination.java b/src/main/java/com/xero/models/payrollnz/Pagination.java
index 0b4d04bc..3969abc4 100644
--- a/src/main/java/com/xero/models/payrollnz/Pagination.java
+++ b/src/main/java/com/xero/models/payrollnz/Pagination.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PayRun.java b/src/main/java/com/xero/models/payrollnz/PayRun.java
index 58f00947..36d4f92a 100644
--- a/src/main/java/com/xero/models/payrollnz/PayRun.java
+++ b/src/main/java/com/xero/models/payrollnz/PayRun.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PayRunCalendar.java b/src/main/java/com/xero/models/payrollnz/PayRunCalendar.java
index cb0a2df5..5f09d0ab 100644
--- a/src/main/java/com/xero/models/payrollnz/PayRunCalendar.java
+++ b/src/main/java/com/xero/models/payrollnz/PayRunCalendar.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PayRunCalendarObject.java b/src/main/java/com/xero/models/payrollnz/PayRunCalendarObject.java
index 6182a8b4..e5336b1f 100644
--- a/src/main/java/com/xero/models/payrollnz/PayRunCalendarObject.java
+++ b/src/main/java/com/xero/models/payrollnz/PayRunCalendarObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PayRunCalendars.java b/src/main/java/com/xero/models/payrollnz/PayRunCalendars.java
index 0c48d4bc..92f7357e 100644
--- a/src/main/java/com/xero/models/payrollnz/PayRunCalendars.java
+++ b/src/main/java/com/xero/models/payrollnz/PayRunCalendars.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PayRunObject.java b/src/main/java/com/xero/models/payrollnz/PayRunObject.java
index 3d59dc02..a99024f8 100644
--- a/src/main/java/com/xero/models/payrollnz/PayRunObject.java
+++ b/src/main/java/com/xero/models/payrollnz/PayRunObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PayRuns.java b/src/main/java/com/xero/models/payrollnz/PayRuns.java
index a7c6c85f..76adf071 100644
--- a/src/main/java/com/xero/models/payrollnz/PayRuns.java
+++ b/src/main/java/com/xero/models/payrollnz/PayRuns.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PaySlip.java b/src/main/java/com/xero/models/payrollnz/PaySlip.java
index a4623754..fbe68106 100644
--- a/src/main/java/com/xero/models/payrollnz/PaySlip.java
+++ b/src/main/java/com/xero/models/payrollnz/PaySlip.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PaySlipObject.java b/src/main/java/com/xero/models/payrollnz/PaySlipObject.java
index 9b6d9aa8..ba5eb272 100644
--- a/src/main/java/com/xero/models/payrollnz/PaySlipObject.java
+++ b/src/main/java/com/xero/models/payrollnz/PaySlipObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PaySlips.java b/src/main/java/com/xero/models/payrollnz/PaySlips.java
index d5057197..666463ee 100644
--- a/src/main/java/com/xero/models/payrollnz/PaySlips.java
+++ b/src/main/java/com/xero/models/payrollnz/PaySlips.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PaymentLine.java b/src/main/java/com/xero/models/payrollnz/PaymentLine.java
index c42b06ca..84257830 100644
--- a/src/main/java/com/xero/models/payrollnz/PaymentLine.java
+++ b/src/main/java/com/xero/models/payrollnz/PaymentLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PaymentMethod.java b/src/main/java/com/xero/models/payrollnz/PaymentMethod.java
index a6eeaef2..184b7a60 100644
--- a/src/main/java/com/xero/models/payrollnz/PaymentMethod.java
+++ b/src/main/java/com/xero/models/payrollnz/PaymentMethod.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/PaymentMethodObject.java b/src/main/java/com/xero/models/payrollnz/PaymentMethodObject.java
index a01eac4c..ff9fbcea 100644
--- a/src/main/java/com/xero/models/payrollnz/PaymentMethodObject.java
+++ b/src/main/java/com/xero/models/payrollnz/PaymentMethodObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Problem.java b/src/main/java/com/xero/models/payrollnz/Problem.java
index 3236743b..8e65cbc0 100644
--- a/src/main/java/com/xero/models/payrollnz/Problem.java
+++ b/src/main/java/com/xero/models/payrollnz/Problem.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Reimbursement.java b/src/main/java/com/xero/models/payrollnz/Reimbursement.java
index c7de7542..93f3c7f8 100644
--- a/src/main/java/com/xero/models/payrollnz/Reimbursement.java
+++ b/src/main/java/com/xero/models/payrollnz/Reimbursement.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/ReimbursementLine.java b/src/main/java/com/xero/models/payrollnz/ReimbursementLine.java
index f7a7e52c..2aee0771 100644
--- a/src/main/java/com/xero/models/payrollnz/ReimbursementLine.java
+++ b/src/main/java/com/xero/models/payrollnz/ReimbursementLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/ReimbursementObject.java b/src/main/java/com/xero/models/payrollnz/ReimbursementObject.java
index 446f8f92..dc389597 100644
--- a/src/main/java/com/xero/models/payrollnz/ReimbursementObject.java
+++ b/src/main/java/com/xero/models/payrollnz/ReimbursementObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Reimbursements.java b/src/main/java/com/xero/models/payrollnz/Reimbursements.java
index 5a0274af..799cad62 100644
--- a/src/main/java/com/xero/models/payrollnz/Reimbursements.java
+++ b/src/main/java/com/xero/models/payrollnz/Reimbursements.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/SalaryAndWage.java b/src/main/java/com/xero/models/payrollnz/SalaryAndWage.java
index 80b90858..6dcfd35e 100644
--- a/src/main/java/com/xero/models/payrollnz/SalaryAndWage.java
+++ b/src/main/java/com/xero/models/payrollnz/SalaryAndWage.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/SalaryAndWageObject.java b/src/main/java/com/xero/models/payrollnz/SalaryAndWageObject.java
index e7a82ac7..cad28c07 100644
--- a/src/main/java/com/xero/models/payrollnz/SalaryAndWageObject.java
+++ b/src/main/java/com/xero/models/payrollnz/SalaryAndWageObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/SalaryAndWages.java b/src/main/java/com/xero/models/payrollnz/SalaryAndWages.java
index c148c57d..dfe8f255 100644
--- a/src/main/java/com/xero/models/payrollnz/SalaryAndWages.java
+++ b/src/main/java/com/xero/models/payrollnz/SalaryAndWages.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Settings.java b/src/main/java/com/xero/models/payrollnz/Settings.java
index 64c7241e..a84ecbdf 100644
--- a/src/main/java/com/xero/models/payrollnz/Settings.java
+++ b/src/main/java/com/xero/models/payrollnz/Settings.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/StatutoryDeduction.java b/src/main/java/com/xero/models/payrollnz/StatutoryDeduction.java
index 07ed68b7..a0cfe559 100644
--- a/src/main/java/com/xero/models/payrollnz/StatutoryDeduction.java
+++ b/src/main/java/com/xero/models/payrollnz/StatutoryDeduction.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/StatutoryDeductionCategory.java b/src/main/java/com/xero/models/payrollnz/StatutoryDeductionCategory.java
index 37fea44d..b95b6ce7 100644
--- a/src/main/java/com/xero/models/payrollnz/StatutoryDeductionCategory.java
+++ b/src/main/java/com/xero/models/payrollnz/StatutoryDeductionCategory.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/StatutoryDeductionLine.java b/src/main/java/com/xero/models/payrollnz/StatutoryDeductionLine.java
index dd48a6a7..81358c67 100644
--- a/src/main/java/com/xero/models/payrollnz/StatutoryDeductionLine.java
+++ b/src/main/java/com/xero/models/payrollnz/StatutoryDeductionLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/StatutoryDeductionObject.java b/src/main/java/com/xero/models/payrollnz/StatutoryDeductionObject.java
index e0115ee4..fba41cb6 100644
--- a/src/main/java/com/xero/models/payrollnz/StatutoryDeductionObject.java
+++ b/src/main/java/com/xero/models/payrollnz/StatutoryDeductionObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/StatutoryDeductions.java b/src/main/java/com/xero/models/payrollnz/StatutoryDeductions.java
index 76d944bb..317b1822 100644
--- a/src/main/java/com/xero/models/payrollnz/StatutoryDeductions.java
+++ b/src/main/java/com/xero/models/payrollnz/StatutoryDeductions.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/SuperannuationLine.java b/src/main/java/com/xero/models/payrollnz/SuperannuationLine.java
index 953a27a7..a3e3e27f 100644
--- a/src/main/java/com/xero/models/payrollnz/SuperannuationLine.java
+++ b/src/main/java/com/xero/models/payrollnz/SuperannuationLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/SuperannuationObject.java b/src/main/java/com/xero/models/payrollnz/SuperannuationObject.java
index 1b243e03..27caac11 100644
--- a/src/main/java/com/xero/models/payrollnz/SuperannuationObject.java
+++ b/src/main/java/com/xero/models/payrollnz/SuperannuationObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Superannuations.java b/src/main/java/com/xero/models/payrollnz/Superannuations.java
index 6fbca910..2361d269 100644
--- a/src/main/java/com/xero/models/payrollnz/Superannuations.java
+++ b/src/main/java/com/xero/models/payrollnz/Superannuations.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/TaxCode.java b/src/main/java/com/xero/models/payrollnz/TaxCode.java
index 3e90c229..c3d43da2 100644
--- a/src/main/java/com/xero/models/payrollnz/TaxCode.java
+++ b/src/main/java/com/xero/models/payrollnz/TaxCode.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/TaxLine.java b/src/main/java/com/xero/models/payrollnz/TaxLine.java
index 7e609e5d..98e62b31 100644
--- a/src/main/java/com/xero/models/payrollnz/TaxLine.java
+++ b/src/main/java/com/xero/models/payrollnz/TaxLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/TaxSettings.java b/src/main/java/com/xero/models/payrollnz/TaxSettings.java
index f5b2d85e..2d3b4c5e 100644
--- a/src/main/java/com/xero/models/payrollnz/TaxSettings.java
+++ b/src/main/java/com/xero/models/payrollnz/TaxSettings.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Timesheet.java b/src/main/java/com/xero/models/payrollnz/Timesheet.java
index e93492b6..5c253b4a 100644
--- a/src/main/java/com/xero/models/payrollnz/Timesheet.java
+++ b/src/main/java/com/xero/models/payrollnz/Timesheet.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/TimesheetEarningsLine.java b/src/main/java/com/xero/models/payrollnz/TimesheetEarningsLine.java
index e947a9d4..785292d6 100644
--- a/src/main/java/com/xero/models/payrollnz/TimesheetEarningsLine.java
+++ b/src/main/java/com/xero/models/payrollnz/TimesheetEarningsLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/TimesheetLine.java b/src/main/java/com/xero/models/payrollnz/TimesheetLine.java
index 62819e42..0d8ab032 100644
--- a/src/main/java/com/xero/models/payrollnz/TimesheetLine.java
+++ b/src/main/java/com/xero/models/payrollnz/TimesheetLine.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/TimesheetLineObject.java b/src/main/java/com/xero/models/payrollnz/TimesheetLineObject.java
index ada19823..7fe46fca 100644
--- a/src/main/java/com/xero/models/payrollnz/TimesheetLineObject.java
+++ b/src/main/java/com/xero/models/payrollnz/TimesheetLineObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/TimesheetObject.java b/src/main/java/com/xero/models/payrollnz/TimesheetObject.java
index 9a408045..8417d47f 100644
--- a/src/main/java/com/xero/models/payrollnz/TimesheetObject.java
+++ b/src/main/java/com/xero/models/payrollnz/TimesheetObject.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/Timesheets.java b/src/main/java/com/xero/models/payrollnz/Timesheets.java
index 50105497..7cfdbef7 100644
--- a/src/main/java/com/xero/models/payrollnz/Timesheets.java
+++ b/src/main/java/com/xero/models/payrollnz/Timesheets.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/TrackingCategories.java b/src/main/java/com/xero/models/payrollnz/TrackingCategories.java
index 5fec694b..230249b8 100644
--- a/src/main/java/com/xero/models/payrollnz/TrackingCategories.java
+++ b/src/main/java/com/xero/models/payrollnz/TrackingCategories.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrollnz/TrackingCategory.java b/src/main/java/com/xero/models/payrollnz/TrackingCategory.java
index 2fb5c6a1..76f5a4fb 100644
--- a/src/main/java/com/xero/models/payrollnz/TrackingCategory.java
+++ b/src/main/java/com/xero/models/payrollnz/TrackingCategory.java
@@ -2,7 +2,7 @@
* Xero Payroll NZ
* This is the Xero Payroll API for orgs in the NZ region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Account.java b/src/main/java/com/xero/models/payrolluk/Account.java
index b518d7af..e8a8d291 100644
--- a/src/main/java/com/xero/models/payrolluk/Account.java
+++ b/src/main/java/com/xero/models/payrolluk/Account.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Accounts.java b/src/main/java/com/xero/models/payrolluk/Accounts.java
index aaa48ef9..c1d50b63 100644
--- a/src/main/java/com/xero/models/payrolluk/Accounts.java
+++ b/src/main/java/com/xero/models/payrolluk/Accounts.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Address.java b/src/main/java/com/xero/models/payrolluk/Address.java
index 970e7086..c7838ff5 100644
--- a/src/main/java/com/xero/models/payrolluk/Address.java
+++ b/src/main/java/com/xero/models/payrolluk/Address.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/BankAccount.java b/src/main/java/com/xero/models/payrolluk/BankAccount.java
index e6017009..58a768a8 100644
--- a/src/main/java/com/xero/models/payrolluk/BankAccount.java
+++ b/src/main/java/com/xero/models/payrolluk/BankAccount.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Benefit.java b/src/main/java/com/xero/models/payrolluk/Benefit.java
index 9af8b8fd..a9c984c6 100644
--- a/src/main/java/com/xero/models/payrolluk/Benefit.java
+++ b/src/main/java/com/xero/models/payrolluk/Benefit.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/BenefitLine.java b/src/main/java/com/xero/models/payrolluk/BenefitLine.java
index bb041342..553481d6 100644
--- a/src/main/java/com/xero/models/payrolluk/BenefitLine.java
+++ b/src/main/java/com/xero/models/payrolluk/BenefitLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/BenefitObject.java b/src/main/java/com/xero/models/payrolluk/BenefitObject.java
index 622ac77b..706f96cd 100644
--- a/src/main/java/com/xero/models/payrolluk/BenefitObject.java
+++ b/src/main/java/com/xero/models/payrolluk/BenefitObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Benefits.java b/src/main/java/com/xero/models/payrolluk/Benefits.java
index 713578a1..f4309159 100644
--- a/src/main/java/com/xero/models/payrolluk/Benefits.java
+++ b/src/main/java/com/xero/models/payrolluk/Benefits.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/CourtOrderLine.java b/src/main/java/com/xero/models/payrolluk/CourtOrderLine.java
index 06a7e6c0..8d37a7f1 100644
--- a/src/main/java/com/xero/models/payrolluk/CourtOrderLine.java
+++ b/src/main/java/com/xero/models/payrolluk/CourtOrderLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Deduction.java b/src/main/java/com/xero/models/payrolluk/Deduction.java
index eded68a8..84bb533a 100644
--- a/src/main/java/com/xero/models/payrolluk/Deduction.java
+++ b/src/main/java/com/xero/models/payrolluk/Deduction.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/DeductionLine.java b/src/main/java/com/xero/models/payrolluk/DeductionLine.java
index 711a7a82..dfecbe14 100644
--- a/src/main/java/com/xero/models/payrolluk/DeductionLine.java
+++ b/src/main/java/com/xero/models/payrolluk/DeductionLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/DeductionObject.java b/src/main/java/com/xero/models/payrolluk/DeductionObject.java
index a655b6dc..c3f19bb1 100644
--- a/src/main/java/com/xero/models/payrolluk/DeductionObject.java
+++ b/src/main/java/com/xero/models/payrolluk/DeductionObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Deductions.java b/src/main/java/com/xero/models/payrolluk/Deductions.java
index d495fde9..a596b909 100644
--- a/src/main/java/com/xero/models/payrolluk/Deductions.java
+++ b/src/main/java/com/xero/models/payrolluk/Deductions.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EarningsLine.java b/src/main/java/com/xero/models/payrolluk/EarningsLine.java
index 042ea77b..0ffae049 100644
--- a/src/main/java/com/xero/models/payrolluk/EarningsLine.java
+++ b/src/main/java/com/xero/models/payrolluk/EarningsLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EarningsOrder.java b/src/main/java/com/xero/models/payrolluk/EarningsOrder.java
index ab16492d..cd78c6ec 100644
--- a/src/main/java/com/xero/models/payrolluk/EarningsOrder.java
+++ b/src/main/java/com/xero/models/payrolluk/EarningsOrder.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EarningsOrderObject.java b/src/main/java/com/xero/models/payrolluk/EarningsOrderObject.java
index 6d95cfbe..659f70ac 100644
--- a/src/main/java/com/xero/models/payrolluk/EarningsOrderObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EarningsOrderObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EarningsOrders.java b/src/main/java/com/xero/models/payrolluk/EarningsOrders.java
index feba273f..39c23a0e 100644
--- a/src/main/java/com/xero/models/payrolluk/EarningsOrders.java
+++ b/src/main/java/com/xero/models/payrolluk/EarningsOrders.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EarningsRate.java b/src/main/java/com/xero/models/payrolluk/EarningsRate.java
index ad7cefc0..a643936e 100644
--- a/src/main/java/com/xero/models/payrolluk/EarningsRate.java
+++ b/src/main/java/com/xero/models/payrolluk/EarningsRate.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EarningsRateObject.java b/src/main/java/com/xero/models/payrolluk/EarningsRateObject.java
index 8e0e8958..b55e1ddd 100644
--- a/src/main/java/com/xero/models/payrolluk/EarningsRateObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EarningsRateObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EarningsRates.java b/src/main/java/com/xero/models/payrolluk/EarningsRates.java
index d25e3ac9..d7f47d18 100644
--- a/src/main/java/com/xero/models/payrolluk/EarningsRates.java
+++ b/src/main/java/com/xero/models/payrolluk/EarningsRates.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EarningsTemplate.java b/src/main/java/com/xero/models/payrolluk/EarningsTemplate.java
index 25890a12..5f179bff 100644
--- a/src/main/java/com/xero/models/payrolluk/EarningsTemplate.java
+++ b/src/main/java/com/xero/models/payrolluk/EarningsTemplate.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EarningsTemplateObject.java b/src/main/java/com/xero/models/payrolluk/EarningsTemplateObject.java
index 422b00b7..9fa39410 100644
--- a/src/main/java/com/xero/models/payrolluk/EarningsTemplateObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EarningsTemplateObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Employee.java b/src/main/java/com/xero/models/payrolluk/Employee.java
index 0908ee9c..48e33c3c 100644
--- a/src/main/java/com/xero/models/payrolluk/Employee.java
+++ b/src/main/java/com/xero/models/payrolluk/Employee.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeLeave.java b/src/main/java/com/xero/models/payrolluk/EmployeeLeave.java
index 8bd99b68..21c0f347 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeLeave.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeLeave.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveBalance.java b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveBalance.java
index 656fdda5..3fbe78f6 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveBalance.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveBalance.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveBalances.java b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveBalances.java
index f85f29f6..8842def1 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveBalances.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveBalances.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveObject.java b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveObject.java
index 2963fd1d..cc3a7149 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveType.java b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveType.java
index f9f3d1cc..a4ef8d16 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveType.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveType.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveTypeObject.java b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveTypeObject.java
index f661d9b5..19c0c470 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveTypeObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveTypeObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveTypes.java b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveTypes.java
index 32e527c9..a1a14b8e 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeLeaveTypes.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeLeaveTypes.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeLeaves.java b/src/main/java/com/xero/models/payrolluk/EmployeeLeaves.java
index f46f8e92..789fe9a3 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeLeaves.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeLeaves.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeObject.java b/src/main/java/com/xero/models/payrolluk/EmployeeObject.java
index 82c3da2a..e2fabd21 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeOpeningBalances.java b/src/main/java/com/xero/models/payrolluk/EmployeeOpeningBalances.java
index 68c455ce..91f726e3 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeOpeningBalances.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeOpeningBalances.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeOpeningBalancesObject.java b/src/main/java/com/xero/models/payrolluk/EmployeeOpeningBalancesObject.java
index 8c20cb55..8f3bbcb4 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeOpeningBalancesObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeOpeningBalancesObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeePayTemplate.java b/src/main/java/com/xero/models/payrolluk/EmployeePayTemplate.java
index 60aa7923..f3a041a3 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeePayTemplate.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeePayTemplate.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeePayTemplateObject.java b/src/main/java/com/xero/models/payrolluk/EmployeePayTemplateObject.java
index 5636e720..ccd9fcd7 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeePayTemplateObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeePayTemplateObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeePayTemplates.java b/src/main/java/com/xero/models/payrolluk/EmployeePayTemplates.java
index d1127615..a310b8ce 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeePayTemplates.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeePayTemplates.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveBalance.java b/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveBalance.java
index 764b9c84..496e893c 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveBalance.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveBalance.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveBalanceObject.java b/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveBalanceObject.java
index c3969183..8f691885 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveBalanceObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveBalanceObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveSummary.java b/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveSummary.java
index 396dca98..7f92bb77 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveSummary.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeaveSummary.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeavesSummaries.java b/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeavesSummaries.java
index 940f40d7..6d105e17 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeavesSummaries.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeStatutoryLeavesSummaries.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeave.java b/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeave.java
index ec523761..c58f32c6 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeave.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeave.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeaveObject.java b/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeaveObject.java
index 2dacc3b2..32d7aec7 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeaveObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeaveObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeaves.java b/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeaves.java
index 5affeedb..51cd1034 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeaves.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeStatutorySickLeaves.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeTax.java b/src/main/java/com/xero/models/payrolluk/EmployeeTax.java
index 7b92d0c4..edf3fd06 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeTax.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeTax.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmployeeTaxObject.java b/src/main/java/com/xero/models/payrolluk/EmployeeTaxObject.java
index 078cb5f2..dd974c88 100644
--- a/src/main/java/com/xero/models/payrolluk/EmployeeTaxObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EmployeeTaxObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Employees.java b/src/main/java/com/xero/models/payrolluk/Employees.java
index f1810ac5..8cede4a1 100644
--- a/src/main/java/com/xero/models/payrolluk/Employees.java
+++ b/src/main/java/com/xero/models/payrolluk/Employees.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Employment.java b/src/main/java/com/xero/models/payrolluk/Employment.java
index a5f317c9..c6500226 100644
--- a/src/main/java/com/xero/models/payrolluk/Employment.java
+++ b/src/main/java/com/xero/models/payrolluk/Employment.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/EmploymentObject.java b/src/main/java/com/xero/models/payrolluk/EmploymentObject.java
index 328383d9..68668fd0 100644
--- a/src/main/java/com/xero/models/payrolluk/EmploymentObject.java
+++ b/src/main/java/com/xero/models/payrolluk/EmploymentObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/InvalidField.java b/src/main/java/com/xero/models/payrolluk/InvalidField.java
index 98b964d3..d16c7847 100644
--- a/src/main/java/com/xero/models/payrolluk/InvalidField.java
+++ b/src/main/java/com/xero/models/payrolluk/InvalidField.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/LeaveAccrualLine.java b/src/main/java/com/xero/models/payrolluk/LeaveAccrualLine.java
index c0bb76b9..98d4c229 100644
--- a/src/main/java/com/xero/models/payrolluk/LeaveAccrualLine.java
+++ b/src/main/java/com/xero/models/payrolluk/LeaveAccrualLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/LeaveEarningsLine.java b/src/main/java/com/xero/models/payrolluk/LeaveEarningsLine.java
index 5961bf11..e10a565e 100644
--- a/src/main/java/com/xero/models/payrolluk/LeaveEarningsLine.java
+++ b/src/main/java/com/xero/models/payrolluk/LeaveEarningsLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/LeavePeriod.java b/src/main/java/com/xero/models/payrolluk/LeavePeriod.java
index 31ca33ec..8a4f7831 100644
--- a/src/main/java/com/xero/models/payrolluk/LeavePeriod.java
+++ b/src/main/java/com/xero/models/payrolluk/LeavePeriod.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/LeavePeriods.java b/src/main/java/com/xero/models/payrolluk/LeavePeriods.java
index 667cf194..3d7c723d 100644
--- a/src/main/java/com/xero/models/payrolluk/LeavePeriods.java
+++ b/src/main/java/com/xero/models/payrolluk/LeavePeriods.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/LeaveType.java b/src/main/java/com/xero/models/payrolluk/LeaveType.java
index b483e872..b1814c83 100644
--- a/src/main/java/com/xero/models/payrolluk/LeaveType.java
+++ b/src/main/java/com/xero/models/payrolluk/LeaveType.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/LeaveTypeObject.java b/src/main/java/com/xero/models/payrolluk/LeaveTypeObject.java
index e1c8b012..82a56afd 100644
--- a/src/main/java/com/xero/models/payrolluk/LeaveTypeObject.java
+++ b/src/main/java/com/xero/models/payrolluk/LeaveTypeObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/LeaveTypes.java b/src/main/java/com/xero/models/payrolluk/LeaveTypes.java
index 26cad947..36e90fb4 100644
--- a/src/main/java/com/xero/models/payrolluk/LeaveTypes.java
+++ b/src/main/java/com/xero/models/payrolluk/LeaveTypes.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Pagination.java b/src/main/java/com/xero/models/payrolluk/Pagination.java
index aa5379f4..db532422 100644
--- a/src/main/java/com/xero/models/payrolluk/Pagination.java
+++ b/src/main/java/com/xero/models/payrolluk/Pagination.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PayRun.java b/src/main/java/com/xero/models/payrolluk/PayRun.java
index 18fc73be..c83dd6ba 100644
--- a/src/main/java/com/xero/models/payrolluk/PayRun.java
+++ b/src/main/java/com/xero/models/payrolluk/PayRun.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PayRunCalendar.java b/src/main/java/com/xero/models/payrolluk/PayRunCalendar.java
index 1d31d66e..0a535d74 100644
--- a/src/main/java/com/xero/models/payrolluk/PayRunCalendar.java
+++ b/src/main/java/com/xero/models/payrolluk/PayRunCalendar.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PayRunCalendarObject.java b/src/main/java/com/xero/models/payrolluk/PayRunCalendarObject.java
index 80772758..23a39a49 100644
--- a/src/main/java/com/xero/models/payrolluk/PayRunCalendarObject.java
+++ b/src/main/java/com/xero/models/payrolluk/PayRunCalendarObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PayRunCalendars.java b/src/main/java/com/xero/models/payrolluk/PayRunCalendars.java
index 0cf576b4..7906bf46 100644
--- a/src/main/java/com/xero/models/payrolluk/PayRunCalendars.java
+++ b/src/main/java/com/xero/models/payrolluk/PayRunCalendars.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PayRunObject.java b/src/main/java/com/xero/models/payrolluk/PayRunObject.java
index 51ac8cc9..1917fe3a 100644
--- a/src/main/java/com/xero/models/payrolluk/PayRunObject.java
+++ b/src/main/java/com/xero/models/payrolluk/PayRunObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PayRuns.java b/src/main/java/com/xero/models/payrolluk/PayRuns.java
index 06f99b8b..e85d4ab0 100644
--- a/src/main/java/com/xero/models/payrolluk/PayRuns.java
+++ b/src/main/java/com/xero/models/payrolluk/PayRuns.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PaymentLine.java b/src/main/java/com/xero/models/payrolluk/PaymentLine.java
index bdf433b8..69693eb6 100644
--- a/src/main/java/com/xero/models/payrolluk/PaymentLine.java
+++ b/src/main/java/com/xero/models/payrolluk/PaymentLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PaymentMethod.java b/src/main/java/com/xero/models/payrolluk/PaymentMethod.java
index b6abba94..0c79e3d8 100644
--- a/src/main/java/com/xero/models/payrolluk/PaymentMethod.java
+++ b/src/main/java/com/xero/models/payrolluk/PaymentMethod.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PaymentMethodObject.java b/src/main/java/com/xero/models/payrolluk/PaymentMethodObject.java
index 33925e56..8d35da2a 100644
--- a/src/main/java/com/xero/models/payrolluk/PaymentMethodObject.java
+++ b/src/main/java/com/xero/models/payrolluk/PaymentMethodObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Payslip.java b/src/main/java/com/xero/models/payrolluk/Payslip.java
index c83f2939..caa42f84 100644
--- a/src/main/java/com/xero/models/payrolluk/Payslip.java
+++ b/src/main/java/com/xero/models/payrolluk/Payslip.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/PayslipObject.java b/src/main/java/com/xero/models/payrolluk/PayslipObject.java
index fdb46d44..55a57980 100644
--- a/src/main/java/com/xero/models/payrolluk/PayslipObject.java
+++ b/src/main/java/com/xero/models/payrolluk/PayslipObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Payslips.java b/src/main/java/com/xero/models/payrolluk/Payslips.java
index 93fac0ca..92e6202f 100644
--- a/src/main/java/com/xero/models/payrolluk/Payslips.java
+++ b/src/main/java/com/xero/models/payrolluk/Payslips.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Problem.java b/src/main/java/com/xero/models/payrolluk/Problem.java
index 8a5095b5..8b63057a 100644
--- a/src/main/java/com/xero/models/payrolluk/Problem.java
+++ b/src/main/java/com/xero/models/payrolluk/Problem.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Reimbursement.java b/src/main/java/com/xero/models/payrolluk/Reimbursement.java
index 0038c8e1..93e7d52b 100644
--- a/src/main/java/com/xero/models/payrolluk/Reimbursement.java
+++ b/src/main/java/com/xero/models/payrolluk/Reimbursement.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/ReimbursementLine.java b/src/main/java/com/xero/models/payrolluk/ReimbursementLine.java
index e661a22d..2fc072fd 100644
--- a/src/main/java/com/xero/models/payrolluk/ReimbursementLine.java
+++ b/src/main/java/com/xero/models/payrolluk/ReimbursementLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/ReimbursementObject.java b/src/main/java/com/xero/models/payrolluk/ReimbursementObject.java
index 715918af..a9fd001f 100644
--- a/src/main/java/com/xero/models/payrolluk/ReimbursementObject.java
+++ b/src/main/java/com/xero/models/payrolluk/ReimbursementObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Reimbursements.java b/src/main/java/com/xero/models/payrolluk/Reimbursements.java
index 82586a8e..0ba2d67f 100644
--- a/src/main/java/com/xero/models/payrolluk/Reimbursements.java
+++ b/src/main/java/com/xero/models/payrolluk/Reimbursements.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/SalaryAndWage.java b/src/main/java/com/xero/models/payrolluk/SalaryAndWage.java
index 750a1e6e..7cd7464a 100644
--- a/src/main/java/com/xero/models/payrolluk/SalaryAndWage.java
+++ b/src/main/java/com/xero/models/payrolluk/SalaryAndWage.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/SalaryAndWageObject.java b/src/main/java/com/xero/models/payrolluk/SalaryAndWageObject.java
index 5fc9872e..3fc63a32 100644
--- a/src/main/java/com/xero/models/payrolluk/SalaryAndWageObject.java
+++ b/src/main/java/com/xero/models/payrolluk/SalaryAndWageObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/SalaryAndWages.java b/src/main/java/com/xero/models/payrolluk/SalaryAndWages.java
index 7de5567d..1e583a2d 100644
--- a/src/main/java/com/xero/models/payrolluk/SalaryAndWages.java
+++ b/src/main/java/com/xero/models/payrolluk/SalaryAndWages.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Settings.java b/src/main/java/com/xero/models/payrolluk/Settings.java
index e17dc2d8..07c82cc2 100644
--- a/src/main/java/com/xero/models/payrolluk/Settings.java
+++ b/src/main/java/com/xero/models/payrolluk/Settings.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/StatutoryDeduction.java b/src/main/java/com/xero/models/payrolluk/StatutoryDeduction.java
index 7092cf4c..67c1bd12 100644
--- a/src/main/java/com/xero/models/payrolluk/StatutoryDeduction.java
+++ b/src/main/java/com/xero/models/payrolluk/StatutoryDeduction.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/StatutoryDeductionCategory.java b/src/main/java/com/xero/models/payrolluk/StatutoryDeductionCategory.java
index 350bb963..5ec116ca 100644
--- a/src/main/java/com/xero/models/payrolluk/StatutoryDeductionCategory.java
+++ b/src/main/java/com/xero/models/payrolluk/StatutoryDeductionCategory.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/TaxLine.java b/src/main/java/com/xero/models/payrolluk/TaxLine.java
index 6dc2549e..5b6b4d12 100644
--- a/src/main/java/com/xero/models/payrolluk/TaxLine.java
+++ b/src/main/java/com/xero/models/payrolluk/TaxLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Timesheet.java b/src/main/java/com/xero/models/payrolluk/Timesheet.java
index 11968294..65c280c1 100644
--- a/src/main/java/com/xero/models/payrolluk/Timesheet.java
+++ b/src/main/java/com/xero/models/payrolluk/Timesheet.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/TimesheetEarningsLine.java b/src/main/java/com/xero/models/payrolluk/TimesheetEarningsLine.java
index b45a0e23..b7f2191a 100644
--- a/src/main/java/com/xero/models/payrolluk/TimesheetEarningsLine.java
+++ b/src/main/java/com/xero/models/payrolluk/TimesheetEarningsLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/TimesheetLine.java b/src/main/java/com/xero/models/payrolluk/TimesheetLine.java
index 274121b1..539a3d22 100644
--- a/src/main/java/com/xero/models/payrolluk/TimesheetLine.java
+++ b/src/main/java/com/xero/models/payrolluk/TimesheetLine.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/TimesheetLineObject.java b/src/main/java/com/xero/models/payrolluk/TimesheetLineObject.java
index e23237dc..25231ec1 100644
--- a/src/main/java/com/xero/models/payrolluk/TimesheetLineObject.java
+++ b/src/main/java/com/xero/models/payrolluk/TimesheetLineObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/TimesheetObject.java b/src/main/java/com/xero/models/payrolluk/TimesheetObject.java
index bdefa77c..cdd1a24a 100644
--- a/src/main/java/com/xero/models/payrolluk/TimesheetObject.java
+++ b/src/main/java/com/xero/models/payrolluk/TimesheetObject.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/Timesheets.java b/src/main/java/com/xero/models/payrolluk/Timesheets.java
index 1096006c..94ec0909 100644
--- a/src/main/java/com/xero/models/payrolluk/Timesheets.java
+++ b/src/main/java/com/xero/models/payrolluk/Timesheets.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/TrackingCategories.java b/src/main/java/com/xero/models/payrolluk/TrackingCategories.java
index 77ea5cd7..66eaff14 100644
--- a/src/main/java/com/xero/models/payrolluk/TrackingCategories.java
+++ b/src/main/java/com/xero/models/payrolluk/TrackingCategories.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/payrolluk/TrackingCategory.java b/src/main/java/com/xero/models/payrolluk/TrackingCategory.java
index 3dae5381..27340072 100644
--- a/src/main/java/com/xero/models/payrolluk/TrackingCategory.java
+++ b/src/main/java/com/xero/models/payrolluk/TrackingCategory.java
@@ -2,7 +2,7 @@
* Xero Payroll UK
* This is the Xero Payroll API for orgs in the UK region.
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/Amount.java b/src/main/java/com/xero/models/project/Amount.java
index 569e076e..bf40cfa5 100644
--- a/src/main/java/com/xero/models/project/Amount.java
+++ b/src/main/java/com/xero/models/project/Amount.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/ChargeType.java b/src/main/java/com/xero/models/project/ChargeType.java
index 6dfee965..af147418 100644
--- a/src/main/java/com/xero/models/project/ChargeType.java
+++ b/src/main/java/com/xero/models/project/ChargeType.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/CurrencyCode.java b/src/main/java/com/xero/models/project/CurrencyCode.java
index 76b22f9b..3b8cb657 100644
--- a/src/main/java/com/xero/models/project/CurrencyCode.java
+++ b/src/main/java/com/xero/models/project/CurrencyCode.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/Error.java b/src/main/java/com/xero/models/project/Error.java
index 2f22cae9..818e2305 100644
--- a/src/main/java/com/xero/models/project/Error.java
+++ b/src/main/java/com/xero/models/project/Error.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/Pagination.java b/src/main/java/com/xero/models/project/Pagination.java
index 44764d8d..9226cb6d 100644
--- a/src/main/java/com/xero/models/project/Pagination.java
+++ b/src/main/java/com/xero/models/project/Pagination.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/Project.java b/src/main/java/com/xero/models/project/Project.java
index 2d123928..a839f0e2 100644
--- a/src/main/java/com/xero/models/project/Project.java
+++ b/src/main/java/com/xero/models/project/Project.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/ProjectCreateOrUpdate.java b/src/main/java/com/xero/models/project/ProjectCreateOrUpdate.java
index 5708e6e7..49420997 100644
--- a/src/main/java/com/xero/models/project/ProjectCreateOrUpdate.java
+++ b/src/main/java/com/xero/models/project/ProjectCreateOrUpdate.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/ProjectPatch.java b/src/main/java/com/xero/models/project/ProjectPatch.java
index 5d2deb0c..62433321 100644
--- a/src/main/java/com/xero/models/project/ProjectPatch.java
+++ b/src/main/java/com/xero/models/project/ProjectPatch.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/ProjectStatus.java b/src/main/java/com/xero/models/project/ProjectStatus.java
index b59454cb..72b1bf51 100644
--- a/src/main/java/com/xero/models/project/ProjectStatus.java
+++ b/src/main/java/com/xero/models/project/ProjectStatus.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/ProjectUser.java b/src/main/java/com/xero/models/project/ProjectUser.java
index 16c3bd5a..7a50891d 100644
--- a/src/main/java/com/xero/models/project/ProjectUser.java
+++ b/src/main/java/com/xero/models/project/ProjectUser.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/ProjectUsers.java b/src/main/java/com/xero/models/project/ProjectUsers.java
index 91178e73..9297aa7e 100644
--- a/src/main/java/com/xero/models/project/ProjectUsers.java
+++ b/src/main/java/com/xero/models/project/ProjectUsers.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/Projects.java b/src/main/java/com/xero/models/project/Projects.java
index 2da327dc..17298f3b 100644
--- a/src/main/java/com/xero/models/project/Projects.java
+++ b/src/main/java/com/xero/models/project/Projects.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/Task.java b/src/main/java/com/xero/models/project/Task.java
index 4c97a878..3362cf7f 100644
--- a/src/main/java/com/xero/models/project/Task.java
+++ b/src/main/java/com/xero/models/project/Task.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/TaskCreateOrUpdate.java b/src/main/java/com/xero/models/project/TaskCreateOrUpdate.java
index e16b7644..dc183b93 100644
--- a/src/main/java/com/xero/models/project/TaskCreateOrUpdate.java
+++ b/src/main/java/com/xero/models/project/TaskCreateOrUpdate.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/Tasks.java b/src/main/java/com/xero/models/project/Tasks.java
index 215a93d7..35114218 100644
--- a/src/main/java/com/xero/models/project/Tasks.java
+++ b/src/main/java/com/xero/models/project/Tasks.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/TimeEntries.java b/src/main/java/com/xero/models/project/TimeEntries.java
index 4e0041d7..e012e4c7 100644
--- a/src/main/java/com/xero/models/project/TimeEntries.java
+++ b/src/main/java/com/xero/models/project/TimeEntries.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/TimeEntry.java b/src/main/java/com/xero/models/project/TimeEntry.java
index 5656684c..2ca237dd 100644
--- a/src/main/java/com/xero/models/project/TimeEntry.java
+++ b/src/main/java/com/xero/models/project/TimeEntry.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/src/main/java/com/xero/models/project/TimeEntryCreateOrUpdate.java b/src/main/java/com/xero/models/project/TimeEntryCreateOrUpdate.java
index 8dc1e0af..163879e7 100644
--- a/src/main/java/com/xero/models/project/TimeEntryCreateOrUpdate.java
+++ b/src/main/java/com/xero/models/project/TimeEntryCreateOrUpdate.java
@@ -2,7 +2,7 @@
* Xero Projects API
* This is the Xero Projects API
*
- * The version of the OpenAPI document: 2.3.3
+ * The version of the OpenAPI document: 2.3.7
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).