@@ -93,7 +93,7 @@ public class AccountingApi {
93
93
private ApiClient apiClient;
94
94
private static AccountingApi instance = null;
95
95
private String userAgent = "Default";
96
- private String version = "4.1.0 ";
96
+ private String version = "4.1.1 ";
97
97
final static Logger logger = LoggerFactory.getLogger(AccountingApi.class);
98
98
99
99
public AccountingApi() {
@@ -1398,14 +1398,15 @@ public HttpResponse createContactsForHttpResponse(String accessToken, String xe
1398
1398
* @param xeroTenantId Xero identifier for Tenant
1399
1399
* @param creditNoteID Unique identifier for a Credit Note
1400
1400
* @param allocations Allocations with array of Allocation object in body of request.
1401
+ * @param summarizeErrors If false return 200 OK and mix of successfully created obejcts and any with validation errors
1401
1402
* @param accessToken Authorization token for user set in header of each request
1402
1403
* @return Allocations
1403
1404
* @throws IOException if an error occurs while attempting to invoke the API
1404
1405
**/
1405
- public Allocations createCreditNoteAllocation(String accessToken, String xeroTenantId, UUID creditNoteID, Allocations allocations) throws IOException {
1406
+ public Allocations createCreditNoteAllocation(String accessToken, String xeroTenantId, UUID creditNoteID, Allocations allocations, Boolean summarizeErrors ) throws IOException {
1406
1407
try {
1407
1408
TypeReference<Allocations> typeRef = new TypeReference<Allocations>() {};
1408
- HttpResponse response = createCreditNoteAllocationForHttpResponse(accessToken, xeroTenantId, creditNoteID, allocations);
1409
+ HttpResponse response = createCreditNoteAllocationForHttpResponse(accessToken, xeroTenantId, creditNoteID, allocations, summarizeErrors );
1409
1410
return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
1410
1411
} catch (HttpResponseException e) {
1411
1412
if (logger.isDebugEnabled()) {
@@ -1429,7 +1430,7 @@ public Allocations createCreditNoteAllocation(String accessToken, String xeroTe
1429
1430
return null;
1430
1431
}
1431
1432
1432
- public HttpResponse createCreditNoteAllocationForHttpResponse(String accessToken, String xeroTenantId, UUID creditNoteID, Allocations allocations) throws IOException {
1433
+ public HttpResponse createCreditNoteAllocationForHttpResponse(String accessToken, String xeroTenantId, UUID creditNoteID, Allocations allocations, Boolean summarizeErrors ) throws IOException {
1433
1434
// verify the required parameter 'xeroTenantId' is set
1434
1435
if (xeroTenantId == null) {
1435
1436
throw new IllegalArgumentException("Missing the required parameter 'xeroTenantId' when calling createCreditNoteAllocation");
@@ -1452,6 +1453,17 @@ public HttpResponse createCreditNoteAllocationForHttpResponse(String accessToken
1452
1453
uriVariables.put("CreditNoteID", creditNoteID);
1453
1454
1454
1455
UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}/Allocations");
1456
+ if (summarizeErrors != null) {
1457
+ String key = "summarizeErrors";
1458
+ Object value = summarizeErrors;
1459
+ if (value instanceof Collection) {
1460
+ uriBuilder = uriBuilder.queryParam(key, ((Collection) value).toArray());
1461
+ } else if (value instanceof Object[]) {
1462
+ uriBuilder = uriBuilder.queryParam(key, (Object[]) value);
1463
+ } else {
1464
+ uriBuilder = uriBuilder.queryParam(key, value);
1465
+ }
1466
+ }
1455
1467
String url = uriBuilder.buildFromMap(uriVariables).toString();
1456
1468
GenericUrl genericUrl = new GenericUrl(url);
1457
1469
if (logger.isDebugEnabled()) {
0 commit comments