From 83a556921609961322c60eb416cc0016fb18a1b6 Mon Sep 17 00:00:00 2001 From: svc-developer Date: Thu, 6 Oct 2022 18:38:51 +0000 Subject: [PATCH] 22.10.0 --- build.sbt | 2 +- .../avatax/rest/client/AvaTaxClient.java | 1620 ++++++++++------- 2 files changed, 915 insertions(+), 707 deletions(-) diff --git a/build.sbt b/build.sbt index 26ed997..84693a5 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ name := """avatax-rest-v2-api-java""" organization := "net.avalara.avatax" -version := "22.9.0" +version := "22.10.0" scalaVersion := "2.11.12" diff --git a/src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java b/src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java index bc40aa4..b225333 100644 --- a/src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java +++ b/src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java @@ -207,7 +207,7 @@ public Future verifyShipmentAsync(String companyCode, Stri public LicenseKeyModel accountResetLicenseKey(Integer id, ResetLicenseKeyModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/resetlicensekey"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -240,7 +240,7 @@ public LicenseKeyModel accountResetLicenseKey(Integer id, ResetLicenseKeyModel m public Future accountResetLicenseKeyAsync(Integer id, ResetLicenseKeyModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/resetlicensekey"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -269,7 +269,7 @@ public Future accountResetLicenseKeyAsync(Integer id, ResetLice public AccountModel activateAccount(Integer id, ActivateAccountModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/activate"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -298,7 +298,7 @@ public AccountModel activateAccount(Integer id, ActivateAccountModel model) thro public Future activateAccountAsync(Integer id, ActivateAccountModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/activate"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -338,7 +338,7 @@ public FetchResult auditAccount(Integer id, Date start, Date end, In path.addQuery("end", end); path.addQuery("$top", top); path.addQuery("$skip", skip); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -378,7 +378,7 @@ public Future> auditAccountAsync(Integer id, Date start, path.addQuery("end", end); path.addQuery("$top", top); path.addQuery("$skip", skip); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -407,7 +407,7 @@ public Future> auditAccountAsync(Integer id, Date start, public LicenseKeyModel createLicenseKey(Integer id, AccountLicenseKeyModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -436,7 +436,7 @@ public LicenseKeyModel createLicenseKey(Integer id, AccountLicenseKeyModel model public Future createLicenseKeyAsync(Integer id, AccountLicenseKeyModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -461,7 +461,7 @@ public ArrayList deleteLicenseKey(Integer id, String licensekeyname AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey/{licensekeyname}"); path.applyField("id", id); path.applyField("licensekeyname", licensekeyname); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -486,7 +486,7 @@ public Future> deleteLicenseKeyAsync(Integer id, String l AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey/{licensekeyname}"); path.applyField("id", id); path.applyField("licensekeyname", licensekeyname); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -511,7 +511,7 @@ public AccountModel getAccount(Integer id, String include) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}"); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -536,7 +536,7 @@ public Future getAccountAsync(Integer id, String include) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}"); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -566,7 +566,7 @@ public Future getAccountAsync(Integer id, String include) { public ArrayList getAccountConfiguration(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/configuration"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -596,7 +596,7 @@ public ArrayList getAccountConfiguration(Integer id) public Future> getAccountConfigurationAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/configuration"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -617,7 +617,7 @@ public AccountLicenseKeyModel getLicenseKey(Integer id, String licensekeyname) t AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey/{licensekeyname}"); path.applyField("id", id); path.applyField("licensekeyname", licensekeyname); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -638,7 +638,7 @@ public Future getLicenseKeyAsync(Integer id, String lice AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/licensekey/{licensekeyname}"); path.applyField("id", id); path.applyField("licensekeyname", licensekeyname); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -657,7 +657,7 @@ public Future getLicenseKeyAsync(Integer id, String lice public ArrayList getLicenseKeys(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/licensekeys"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -676,7 +676,7 @@ public ArrayList getLicenseKeys(Integer id) throws Excep public Future> getLicenseKeysAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/licensekeys"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -714,7 +714,7 @@ public FetchResult queryAccounts(String include, String filter, In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -752,7 +752,7 @@ public Future> queryAccountsAsync(String include, Stri path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -783,7 +783,7 @@ public Future> queryAccountsAsync(String include, Stri public ArrayList setAccountConfiguration(Integer id, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/configuration"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -814,7 +814,7 @@ public ArrayList setAccountConfiguration(Integer id, public Future> setAccountConfigurationAsync(Integer id, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/configuration"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -858,7 +858,7 @@ public AddressResolutionModel resolveAddress(String line1, String line2, String path.addQuery("postalCode", postalCode); path.addQuery("country", country); path.addQuery("textCase", textCase); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -902,7 +902,7 @@ public Future resolveAddressAsync(String line1, String l path.addQuery("postalCode", postalCode); path.addQuery("country", country); path.addQuery("textCase", textCase); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -926,7 +926,7 @@ public Future resolveAddressAsync(String line1, String l */ public AddressResolutionModel resolveAddressPost(AddressValidationInfo model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/addresses/resolve"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -950,7 +950,7 @@ public AddressResolutionModel resolveAddressPost(AddressValidationInfo model) th */ public Future resolveAddressPostAsync(AddressValidationInfo model) { AvaTaxPath path = new AvaTaxPath("/api/v2/addresses/resolve"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -966,7 +966,7 @@ public AdvancedRuleLookupFileModel createCompanyLookupFile(Integer accountId, In AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/companies/{companyId}/lookupFiles"); path.applyField("accountId", accountId); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -982,7 +982,7 @@ public Future createCompanyLookupFileAsync(Integer AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/companies/{companyId}/lookupFiles"); path.applyField("accountId", accountId); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -997,7 +997,7 @@ public ArrayList deleteLookupFile(Integer accountId, String id) thr AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1012,7 +1012,7 @@ public Future> deleteLookupFileAsync(Integer accountId, S AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -1027,7 +1027,7 @@ public FetchResult getCompanyLookupFiles(Integer ac AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/companies/{companyId}/lookupFiles"); path.applyField("accountId", accountId); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1042,7 +1042,7 @@ public Future> getCompanyLookupFilesAsy AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/companies/{companyId}/lookupFiles"); path.applyField("accountId", accountId); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -1057,7 +1057,7 @@ public AdvancedRuleLookupFileModel getLookupFile(Integer accountId, String id) t AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -1072,7 +1072,7 @@ public Future getLookupFileAsync(Integer accountId, AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -1088,7 +1088,7 @@ public AdvancedRuleLookupFileModel updateLookupFile(Integer accountId, String id AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -1104,7 +1104,7 @@ public Future updateLookupFileAsync(Integer account AvaTaxPath path = new AvaTaxPath("/api/v2/advancedrules/accounts/{accountId}/lookupFiles/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -1124,7 +1124,7 @@ public Future updateLookupFileAsync(Integer account */ public ArrayList createAvaFileForms(ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/avafileforms"); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1144,7 +1144,7 @@ public ArrayList createAvaFileForms(ArrayList> createAvaFileFormsAsync(ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/avafileforms"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -1164,7 +1164,7 @@ public Future> createAvaFileFormsAsync(ArrayList deleteAvaFileForm(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1184,7 +1184,7 @@ public ArrayList deleteAvaFileForm(Integer id) throws Exception { public Future> deleteAvaFileFormAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -1204,7 +1204,7 @@ public Future> deleteAvaFileFormAsync(Integer id) { public AvaFileFormModel getAvaFileForm(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -1224,7 +1224,7 @@ public AvaFileFormModel getAvaFileForm(Integer id) throws Exception { public Future getAvaFileFormAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -1251,7 +1251,7 @@ public FetchResult queryAvaFileForms(String filter, Integer to path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1278,7 +1278,7 @@ public Future> queryAvaFileFormsAsync(String filte path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -1300,7 +1300,7 @@ public Future> queryAvaFileFormsAsync(String filte public AvaFileFormModel updateAvaFileForm(Integer id, AvaFileFormModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -1322,7 +1322,7 @@ public AvaFileFormModel updateAvaFileForm(Integer id, AvaFileFormModel model) th public Future updateAvaFileFormAsync(Integer id, AvaFileFormModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/avafileforms/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -1354,7 +1354,7 @@ public BatchModel cancelBatch(Integer companyId, Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}/cancel"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -1386,7 +1386,7 @@ public Future cancelBatchAsync(Integer companyId, Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}/cancel"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -1424,7 +1424,7 @@ public Future cancelBatchAsync(Integer companyId, Integer id) { public ArrayList createBatches(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1462,7 +1462,7 @@ public ArrayList createBatches(Integer companyId, ArrayList> createBatchesAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -1498,7 +1498,7 @@ public Future> createBatchesAsync(Integer companyId, Array public CreateTransactionBatchResponseModel createTransactionBatch(Integer companyId, CreateTransactionBatchRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/transactions"); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -1534,7 +1534,7 @@ public CreateTransactionBatchResponseModel createTransactionBatch(Integer compan public Future createTransactionBatchAsync(Integer companyId, CreateTransactionBatchRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/transactions"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -1564,7 +1564,7 @@ public ArrayList deleteBatch(Integer companyId, Integer id) throws AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1594,7 +1594,7 @@ public Future> deleteBatchAsync(Integer companyId, Intege AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -1617,7 +1617,7 @@ public String downloadBatch(Integer companyId, Integer batchId, Integer id) thro path.applyField("companyId", companyId); path.applyField("batchId", batchId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -1640,7 +1640,7 @@ public Future downloadBatchAsync(Integer companyId, Integer batchId, Int path.applyField("companyId", companyId); path.applyField("batchId", batchId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -1675,7 +1675,7 @@ public BatchModel getBatch(Integer companyId, Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -1710,7 +1710,7 @@ public Future getBatchAsync(Integer companyId, Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/batches/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -1759,7 +1759,7 @@ public FetchResult listBatchesByCompany(Integer companyId, String fi path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1808,7 +1808,7 @@ public Future> listBatchesByCompanyAsync(Integer company path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -1852,7 +1852,7 @@ public FetchResult queryBatches(String filter, String include, Integ path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1896,7 +1896,7 @@ public Future> queryBatchesAsync(String filter, String i path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -1933,7 +1933,7 @@ public ArrayList createCertExpressInvitation(I AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certexpressinvites"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -1970,7 +1970,7 @@ public Future> createCertExpressInvi AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certexpressinvites"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -2010,7 +2010,7 @@ public CertExpressInvitationModel getCertExpressInvitation(Integer companyId, St path.applyField("customerCode", customerCode); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -2050,7 +2050,7 @@ public Future getCertExpressInvitationAsync(Integer path.applyField("customerCode", customerCode); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -2094,7 +2094,7 @@ public FetchResult listCertExpressInvitations(Intege path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -2138,7 +2138,7 @@ public Future> listCertExpressInvitation path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -2181,7 +2181,7 @@ public ArrayList createCertificates(Integer companyId, Boolean AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates"); path.applyField("companyId", companyId); path.addQuery("$preValidatedExemptionReason", preValidatedExemptionReason); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -2224,7 +2224,7 @@ public Future> createCertificatesAsync(Integer compa AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates"); path.applyField("companyId", companyId); path.addQuery("$preValidatedExemptionReason", preValidatedExemptionReason); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -2258,7 +2258,7 @@ public ArrayList deleteCertificate(Integer companyId, Integer id) t AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -2292,7 +2292,7 @@ public Future> deleteCertificateAsync(Integer companyId, AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -2331,7 +2331,7 @@ public String downloadCertificateImage(Integer companyId, Integer id, Integer pa path.applyField("id", id); path.addQuery("$page", page); path.addQuery("$type", type); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -2370,7 +2370,7 @@ public Future downloadCertificateImageAsync(Integer companyId, Integer i path.applyField("id", id); path.addQuery("$page", page); path.addQuery("$type", type); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -2410,7 +2410,7 @@ public CertificateModel getCertificate(Integer companyId, Integer id, String inc path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -2450,7 +2450,7 @@ public Future getCertificateAsync(Integer companyId, Integer i path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -2476,7 +2476,7 @@ public Future getCertificateAsync(Integer companyId, Integer i public ProvisionStatusModel getCertificateSetup(Integer companyId) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/setup"); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -2502,7 +2502,7 @@ public ProvisionStatusModel getCertificateSetup(Integer companyId) throws Except public Future getCertificateSetupAsync(Integer companyId) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/setup"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -2538,7 +2538,7 @@ public FetchResult linkAttributesToCertificate(Intege AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes/link"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -2574,7 +2574,7 @@ public Future> linkAttributesToCertificat AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes/link"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -2611,7 +2611,7 @@ public FetchResult linkCustomersToCertificate(Integer companyId, AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/customers/link"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -2648,7 +2648,7 @@ public Future> linkCustomersToCertificateAsync(Intege AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/customers/link"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -2683,7 +2683,7 @@ public FetchResult listAttributesForCertificate(Integ AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -2718,7 +2718,7 @@ public Future> listAttributesForCertifica AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -2755,7 +2755,7 @@ public FetchResult listCustomersForCertificate(Integer companyId, path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -2792,7 +2792,7 @@ public Future> listCustomersForCertificateAsync(Integ path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -2838,7 +2838,7 @@ public FetchResult queryCertificates(Integer companyId, String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -2884,7 +2884,7 @@ public Future> queryCertificatesAsync(Integer comp path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -2912,7 +2912,7 @@ public Future> queryCertificatesAsync(Integer comp public ProvisionStatusModel requestCertificateSetup(Integer companyId) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/setup"); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -2940,7 +2940,7 @@ public ProvisionStatusModel requestCertificateSetup(Integer companyId) throws Ex public Future requestCertificateSetupAsync(Integer companyId) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/setup"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -2976,7 +2976,7 @@ public FetchResult unlinkAttributesFromCertificate(In AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes/unlink"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -3012,7 +3012,7 @@ public Future> unlinkAttributesFromCertif AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attributes/unlink"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -3050,7 +3050,7 @@ public FetchResult unlinkCustomersFromCertificate(Integer company AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/customers/unlink"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -3088,7 +3088,7 @@ public Future> unlinkCustomersFromCertificateAsync(In AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/customers/unlink"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -3121,7 +3121,7 @@ public CertificateModel updateCertificate(Integer companyId, Integer id, Certifi AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -3154,7 +3154,7 @@ public Future updateCertificateAsync(Integer companyId, Intege AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -3190,7 +3190,7 @@ public String uploadCertificateImage(Integer companyId, Integer id, String file) AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attachment"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -3226,7 +3226,7 @@ public Future uploadCertificateImageAsync(Integer companyId, Integer id, AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/certificates/{id}/attachment"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -3267,7 +3267,7 @@ public Future uploadCertificateImageAsync(Integer companyId, Integer id, public String certifyIntegration(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/certify"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -3308,7 +3308,7 @@ public String certifyIntegration(Integer id) throws Exception { public Future certifyIntegrationAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/certify"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -3340,7 +3340,7 @@ public Future certifyIntegrationAsync(Integer id) { public String changeFilingStatus(Integer id, FilingStatusChangeModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/filingstatus"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -3372,7 +3372,7 @@ public String changeFilingStatus(Integer id, FilingStatusChangeModel model) thro public Future changeFilingStatusAsync(Integer id, FilingStatusChangeModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/filingstatus"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -3401,7 +3401,7 @@ public Future changeFilingStatusAsync(Integer id, FilingStatusChangeMode */ public CompanyModel companyInitialize(CompanyInitializationModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/initialize"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -3430,7 +3430,7 @@ public CompanyModel companyInitialize(CompanyInitializationModel model) throws E */ public Future companyInitializeAsync(CompanyInitializationModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/initialize"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -3452,7 +3452,7 @@ public Future companyInitializeAsync(CompanyInitializationModel mo */ public ArrayList createCompanies(ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies"); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -3474,7 +3474,7 @@ public ArrayList createCompanies(ArrayList model) th */ public Future> createCompaniesAsync(ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -3504,7 +3504,7 @@ public Future> createCompaniesAsync(ArrayList createCompanyParameters(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -3534,7 +3534,7 @@ public ArrayList createCompanyParameters(Integer co public Future> createCompanyParametersAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -3568,7 +3568,7 @@ public FundingStatusModel createFundingRequest(Integer id, POABusinessUnit busin path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -3602,7 +3602,7 @@ public Future createFundingRequestAsync(Integer id, POABusin path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -3621,7 +3621,7 @@ public Future createFundingRequestAsync(Integer id, POABusin public ArrayList deleteCompany(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -3640,7 +3640,7 @@ public ArrayList deleteCompany(Integer id) throws Exception { public Future> deleteCompanyAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -3666,7 +3666,7 @@ public ArrayList deleteCompanyParameter(Integer companyId, Long id) AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -3692,7 +3692,7 @@ public Future> deleteCompanyParameterAsync(Integer compan AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -3715,7 +3715,7 @@ public Future> deleteCompanyParameterAsync(Integer compan public FundingConfigurationModel fundingConfigurationByCompany(Integer companyId) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/funding/configuration"); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -3738,7 +3738,7 @@ public FundingConfigurationModel fundingConfigurationByCompany(Integer companyId public Future fundingConfigurationByCompanyAsync(Integer companyId) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/funding/configuration"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -3763,7 +3763,7 @@ public ArrayList fundingConfigurationsByCompanyAndCur AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/funding/configurations"); path.applyField("companyId", companyId); path.addQuery("currency", currency); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -3788,7 +3788,7 @@ public Future> fundingConfigurationsByCompa AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/funding/configurations"); path.applyField("companyId", companyId); path.addQuery("currency", currency); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -3821,7 +3821,7 @@ public CompanyModel getCompany(Integer id, String include) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}"); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -3854,7 +3854,7 @@ public Future getCompanyAsync(Integer id, String include) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}"); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -3884,7 +3884,7 @@ public Future getCompanyAsync(Integer id, String include) { public ArrayList getCompanyConfiguration(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/configuration"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -3914,7 +3914,7 @@ public ArrayList getCompanyConfiguration(Integer id) public Future> getCompanyConfigurationAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/configuration"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -3941,7 +3941,7 @@ public CompanyParameterDetailModel getCompanyParameterDetail(Integer companyId, AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -3968,7 +3968,7 @@ public Future getCompanyParameterDetailAsync(Intege AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -4000,7 +4000,7 @@ public Future getCompanyParameterDetailAsync(Intege public String getFilingStatus(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/filingstatus"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -4032,7 +4032,7 @@ public String getFilingStatus(Integer id) throws Exception { public Future getFilingStatusAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/filingstatus"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -4059,7 +4059,7 @@ public ArrayList listACHEntryDetailsForCompany(Integer id, path.applyField("id", id); path.applyField("periodyear", periodyear); path.applyField("periodmonth", periodmonth); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4086,7 +4086,7 @@ public Future> listACHEntryDetailsForCompanyAsync path.applyField("id", id); path.applyField("periodyear", periodyear); path.applyField("periodmonth", periodmonth); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -4122,7 +4122,7 @@ public FetchResult listCompanyParameterDetails(Inte path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4158,7 +4158,7 @@ public Future> listCompanyParameterDeta path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -4181,7 +4181,7 @@ public Future> listCompanyParameterDeta public ArrayList listFundingRequestsByCompany(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/funding"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4204,7 +4204,7 @@ public ArrayList listFundingRequestsByCompany(Integer id) th public Future> listFundingRequestsByCompanyAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/funding"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -4223,7 +4223,7 @@ public Future> listFundingRequestsByCompanyAsync(I */ public FetchResult listMrsCompanies() throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/mrs"); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4242,7 +4242,7 @@ public FetchResult listMrsCompanies() throws Exception { */ public Future> listMrsCompaniesAsync() { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/mrs"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -4285,7 +4285,7 @@ public FetchResult queryCompanies(String include, String filter, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4328,7 +4328,7 @@ public Future> queryCompaniesAsync(String include, Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -4359,7 +4359,7 @@ public Future> queryCompaniesAsync(String include, Str public ArrayList setCompanyConfiguration(Integer id, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/configuration"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4390,7 +4390,7 @@ public ArrayList setCompanyConfiguration(Integer id, public Future> setCompanyConfigurationAsync(Integer id, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/configuration"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -4420,7 +4420,7 @@ public Future> setCompanyConfigurationAsync public CompanyModel updateCompany(Integer id, CompanyModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -4450,7 +4450,7 @@ public CompanyModel updateCompany(Integer id, CompanyModel model) throws Excepti public Future updateCompanyAsync(Integer id, CompanyModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -4478,7 +4478,7 @@ public CompanyParameterDetailModel updateCompanyParameterDetail(Integer companyI AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -4506,7 +4506,7 @@ public Future updateCompanyParameterDetailAsync(Int AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/parameters/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -4539,7 +4539,7 @@ public ComplianceJurisdictionRateModel queryTaxAuthorityJurisdictionRates(Intege path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -4572,7 +4572,7 @@ public Future queryTaxAuthorityJurisdictionRate path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -4594,7 +4594,7 @@ public Future queryTaxAuthorityJurisdictionRate public ArrayList createContacts(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4616,7 +4616,7 @@ public ArrayList createContacts(Integer companyId, ArrayList> createContactsAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -4637,7 +4637,7 @@ public ArrayList deleteContact(Integer companyId, Integer id) throw AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4658,7 +4658,7 @@ public Future> deleteContactAsync(Integer companyId, Inte AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -4681,7 +4681,7 @@ public ContactModel getContact(Integer companyId, Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -4704,7 +4704,7 @@ public Future getContactAsync(Integer companyId, Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -4734,7 +4734,7 @@ public FetchResult listContactsByCompany(Integer companyId, String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4764,7 +4764,7 @@ public Future> listContactsByCompanyAsync(Integer comp path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -4794,7 +4794,7 @@ public FetchResult queryContacts(String filter, Integer top, Integ path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4824,7 +4824,7 @@ public Future> queryContactsAsync(String filter, Integ path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -4850,7 +4850,7 @@ public ContactModel updateContact(Integer companyId, Integer id, ContactModel mo AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -4876,7 +4876,7 @@ public Future updateContactAsync(Integer companyId, Integer id, Co AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/contacts/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -4911,7 +4911,7 @@ public Future updateContactAsync(Integer companyId, Integer id, Co public ArrayList createCustomers(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -4946,7 +4946,7 @@ public ArrayList createCustomers(Integer companyId, ArrayList> createCustomersAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -4979,7 +4979,7 @@ public CustomerModel deleteCustomer(Integer companyId, String customerCode) thro AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return ((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -5012,7 +5012,7 @@ public Future deleteCustomerAsync(Integer companyId, String custo AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"22.10.0")); } /** @@ -5053,7 +5053,7 @@ public CustomerModel getCustomer(Integer companyId, String customerCode, String path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -5094,7 +5094,7 @@ public Future getCustomerAsync(Integer companyId, String customer path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -5131,7 +5131,7 @@ public FetchResult linkAttributesToCustomer(Integer comp AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes/link"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -5168,7 +5168,7 @@ public Future> linkAttributesToCustomerAsync AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes/link"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -5202,7 +5202,7 @@ public FetchResult linkCertificatesToCustomer(Integer companyI AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certificates/link"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -5236,7 +5236,7 @@ public Future> linkCertificatesToCustomerAsync(Int AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certificates/link"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -5271,7 +5271,7 @@ public CustomerModel linkShipToCustomersToBillCustomer(Integer companyId, String AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/billto/{code}/shipto/link"); path.applyField("companyId", companyId); path.applyField("code", code); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -5306,7 +5306,7 @@ public Future linkShipToCustomersToBillCustomerAsync(Integer comp AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/billto/{code}/shipto/link"); path.applyField("companyId", companyId); path.applyField("code", code); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -5342,7 +5342,7 @@ public FetchResult listAttributesForCustomer(Integer com AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -5378,7 +5378,7 @@ public Future> listAttributesForCustomerAsyn AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -5421,7 +5421,7 @@ public FetchResult listCertificatesForCustomer(Integer company path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -5464,7 +5464,7 @@ public Future> listCertificatesForCustomerAsync(In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -5504,7 +5504,7 @@ public ExemptionStatusModel listValidCertificatesForCustomer(Integer companyId, path.applyField("customerCode", customerCode); path.applyField("country", country); path.applyField("region", region); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -5544,7 +5544,7 @@ public Future listValidCertificatesForCustomerAsync(Intege path.applyField("customerCode", customerCode); path.applyField("country", country); path.applyField("region", region); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -5590,7 +5590,7 @@ public FetchResult queryCustomers(Integer companyId, String inclu path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -5636,7 +5636,7 @@ public Future> queryCustomersAsync(Integer companyId, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -5673,7 +5673,7 @@ public FetchResult unlinkAttributesFromCustomer(Integer AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes/unlink"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -5710,7 +5710,7 @@ public Future> unlinkAttributesFromCustomerA AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/attributes/unlink"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -5744,7 +5744,7 @@ public FetchResult unlinkCertificatesFromCustomer(Integer comp AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certificates/unlink"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -5778,7 +5778,7 @@ public Future> unlinkCertificatesFromCustomerAsync AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}/certificates/unlink"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -5812,7 +5812,7 @@ public CustomerModel updateCustomer(Integer companyId, String customerCode, Cust AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -5846,7 +5846,7 @@ public Future updateCustomerAsync(Integer companyId, String custo AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/customers/{customerCode}"); path.applyField("companyId", companyId); path.applyField("customerCode", customerCode); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -5867,7 +5867,7 @@ public Future updateCustomerAsync(Integer companyId, String custo public ArrayList createDataSources(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -5888,7 +5888,7 @@ public ArrayList createDataSources(Integer companyId, ArrayList public Future> createDataSourcesAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -5910,7 +5910,7 @@ public ArrayList deleteDataSource(Integer companyId, Integer id) th AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -5932,7 +5932,7 @@ public Future> deleteDataSourceAsync(Integer companyId, I AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -5954,7 +5954,7 @@ public DataSourceModel getDataSourceById(Integer companyId, Integer id) throws E AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -5976,7 +5976,7 @@ public Future getDataSourceByIdAsync(Integer companyId, Integer AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -6004,7 +6004,7 @@ public FetchResult listDataSources(Integer companyId, String fi path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6032,7 +6032,7 @@ public Future> listDataSourcesAsync(Integer company path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6061,7 +6061,7 @@ public FetchResult queryDataSources(String filter, Integer top, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6090,7 +6090,7 @@ public Future> queryDataSourcesAsync(String filter, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6113,7 +6113,7 @@ public DataSourceModel updateDataSource(Integer companyId, Integer id, DataSourc AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -6136,7 +6136,7 @@ public Future updateDataSourceAsync(Integer companyId, Integer AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/datasources/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -6166,7 +6166,7 @@ public FetchResult getCrossBorderCode(String country, String hsCode AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/crossborder/{country}/{hsCode}/hierarchy"); path.applyField("country", country); path.applyField("hsCode", hsCode); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6196,7 +6196,7 @@ public Future> getCrossBorderCodeAsync(String country, AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/crossborder/{country}/{hsCode}/hierarchy"); path.applyField("country", country); path.applyField("hsCode", hsCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6219,7 +6219,7 @@ public FetchResult getLoginVerifierByForm(String form, St path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6242,7 +6242,7 @@ public Future> getLoginVerifierByFormAsync(St path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6261,7 +6261,7 @@ public FetchResult listAllMarketplaceLocations(String filter, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6280,7 +6280,7 @@ public Future> listAllMarketplaceLocationsAsync(St path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6305,7 +6305,7 @@ public FetchResult listAvaFileForms(String filter, Integer top path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6330,7 +6330,7 @@ public Future> listAvaFileFormsAsync(String filter path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6358,7 +6358,7 @@ public FetchResult listCertificateAttributes(Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6386,7 +6386,7 @@ public Future> listCertificateAttributesA path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6412,7 +6412,7 @@ public FetchResult listCertificateExemptReasons(String fil path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6438,7 +6438,7 @@ public Future> listCertificateExemptReasonsAsy path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6464,7 +6464,7 @@ public FetchResult listCertificateExposureZones(String filter path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6490,7 +6490,7 @@ public Future> listCertificateExposureZonesAsync( path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6512,7 +6512,7 @@ public FetchResult listClassificationParam path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6534,7 +6534,7 @@ public Future> listClassificat path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6555,7 +6555,7 @@ public FetchResult listCommunicationsServiceTypes(Int path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6576,7 +6576,7 @@ public Future> listCommunicationsServiceT path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6597,7 +6597,7 @@ public FetchResult listCommunicationsTransac path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6618,7 +6618,7 @@ public Future> listCommunication path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6639,7 +6639,7 @@ public FetchResult listCommunicationsTSPairs(String f path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6660,7 +6660,7 @@ public Future> listCommunicationsTSPairsA path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6682,7 +6682,7 @@ public FetchResult listCountries(String filter, Integer top, In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6704,7 +6704,7 @@ public Future> listCountriesAsync(String filter, In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6731,7 +6731,7 @@ public FetchResult listCoverLetters(String filter, Integer top path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6758,7 +6758,7 @@ public Future> listCoverLettersAsync(String filter path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6794,7 +6794,7 @@ public FetchResult listCrossBorderCodes(String country, String hsCo path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6830,7 +6830,7 @@ public Future> listCrossBorderCodesAsync(String country path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6852,7 +6852,7 @@ public Future> listCrossBorderCodesAsync(String country */ public FetchResult listCrossBorderSections() throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/crossborder/sections"); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6874,7 +6874,7 @@ public FetchResult listCrossBorderSections() throws Exception { */ public Future> listCrossBorderSectionsAsync() { AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/crossborder/sections"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6897,7 +6897,7 @@ public FetchResult listCurrencies(String filter, Integer top, Int path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6920,7 +6920,7 @@ public Future> listCurrenciesAsync(String filter, Int path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6944,7 +6944,7 @@ public FetchResult listEntityUseCodes(String filter, Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -6968,7 +6968,7 @@ public Future> listEntityUseCodesAsync(String fi path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -6989,7 +6989,7 @@ public FetchResult listFilingFrequencies(String filter, In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7010,7 +7010,7 @@ public Future> listFilingFrequenciesAsync(Stri path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7035,7 +7035,7 @@ public FetchResult listJurisdictions(String filter, Integer t path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7060,7 +7060,7 @@ public Future> listJurisdictionsAsync(String filt path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7100,7 +7100,7 @@ public FetchResult listJurisdictionsByAddress(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7140,7 +7140,7 @@ public Future> listJurisdictionsByAddress path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7177,7 +7177,7 @@ public FetchResult listJurisdictionsByR path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7214,7 +7214,7 @@ public Future> listJurisdic path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7233,7 +7233,7 @@ public ArrayList listJurisdictionTypesByRateTypeTaxTypeMapping(String co path.applyField("taxTypeId", taxTypeId); path.applyField("taxSubTypeId", taxSubTypeId); path.addQuery("rateTypeId", rateTypeId); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7252,7 +7252,7 @@ public Future> listJurisdictionTypesByRateTypeTaxTypeMappingAs path.applyField("taxTypeId", taxTypeId); path.applyField("taxSubTypeId", taxSubTypeId); path.addQuery("rateTypeId", rateTypeId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7295,7 +7295,7 @@ public FetchResult listLocationQuestionsByAddress(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7338,7 +7338,7 @@ public Future> listLocationQuestionsByAddress path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7360,7 +7360,7 @@ public FetchResult listLoginVerifiers(String filter, Inte path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7382,7 +7382,7 @@ public Future> listLoginVerifiersAsync(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7401,7 +7401,7 @@ public FetchResult listMarketplaceLocations(String mar path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7420,7 +7420,7 @@ public Future> listMarketplaceLocationsAsy path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7442,7 +7442,7 @@ public FetchResult listNexus(String filter, Integer top, Integer ski path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7464,7 +7464,7 @@ public Future> listNexusAsync(String filter, Integer top path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7502,7 +7502,7 @@ public FetchResult listNexusByAddress(String line1, String line2, St path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7540,7 +7540,7 @@ public Future> listNexusByAddressAsync(String line1, Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7564,7 +7564,7 @@ public FetchResult listNexusByCountry(String country, String filter, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7588,7 +7588,7 @@ public Future> listNexusByCountryAsync(String country, S path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7614,7 +7614,7 @@ public FetchResult listNexusByCountryAndRegion(String country, Strin path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7640,7 +7640,7 @@ public Future> listNexusByCountryAndRegionAsync(String c path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7669,7 +7669,7 @@ public Future> listNexusByCountryAndRegionAsync(String c public NexusByTaxFormModel listNexusByFormCode(String formCode) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/nexus/byform/{formCode}"); path.applyField("formCode", formCode); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -7698,7 +7698,7 @@ public NexusByTaxFormModel listNexusByFormCode(String formCode) throws Exception public Future listNexusByFormCodeAsync(String formCode) { AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/nexus/byform/{formCode}"); path.applyField("formCode", formCode); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -7722,7 +7722,7 @@ public FetchResult listNexusByTaxTypeGroup(String taxTypeGroup, Stri path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7746,7 +7746,7 @@ public Future> listNexusByTaxTypeGroupAsync(String taxTy path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7767,7 +7767,7 @@ public FetchResult listNexusTaxTypeGroups(String filter, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7788,7 +7788,7 @@ public Future> listNexusTaxTypeGroupsAsync(S path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7809,7 +7809,7 @@ public FetchResult listNoticeCustomerFundingOp path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7830,7 +7830,7 @@ public Future> listNoticeCustomerF path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7851,7 +7851,7 @@ public FetchResult listNoticeCustomerTypes(String filte path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7872,7 +7872,7 @@ public Future> listNoticeCustomerTypesAsync path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7893,7 +7893,7 @@ public FetchResult listNoticeFilingtypes(String filter, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7914,7 +7914,7 @@ public Future> listNoticeFilingtypesAsync(Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7935,7 +7935,7 @@ public FetchResult listNoticePriorities(String filter, Inte path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7956,7 +7956,7 @@ public Future> listNoticePrioritiesAsync(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -7977,7 +7977,7 @@ public FetchResult listNoticeReasons(String filter, Integer t path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -7998,7 +7998,7 @@ public Future> listNoticeReasonsAsync(String filt path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8019,7 +8019,7 @@ public FetchResult listNoticeResponsibilities(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8040,7 +8040,7 @@ public Future> listNoticeResponsibilities path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8061,7 +8061,7 @@ public FetchResult listNoticeRootCauses(String filter, Int path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8082,7 +8082,7 @@ public Future> listNoticeRootCausesAsync(Strin path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8103,7 +8103,7 @@ public FetchResult listNoticeStatuses(String filter, Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8124,7 +8124,7 @@ public Future> listNoticeStatusesAsync(String fil path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8145,7 +8145,7 @@ public FetchResult listNoticeTypes(String filter, Integer top, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8166,7 +8166,7 @@ public Future> listNoticeTypesAsync(String filter, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8188,7 +8188,7 @@ public FetchResult listParameters(String filter, Integer top, In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8210,7 +8210,7 @@ public Future> listParametersAsync(String filter, In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8252,7 +8252,7 @@ public FetchResult listParametersByItem(String companyCode, Stri path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8294,7 +8294,7 @@ public Future> listParametersByItemAsync(String comp path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8316,7 +8316,7 @@ public FetchResult listParametersUsage(String filter, Integ path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8338,7 +8338,7 @@ public Future> listParametersUsageAsync(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8355,7 +8355,7 @@ public FetchResult listPermissions(Integer top, Integer skip) throws Exc AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/permissions"); path.addQuery("$top", top); path.addQuery("$skip", skip); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8372,7 +8372,7 @@ public Future> listPermissionsAsync(Integer top, Integer ski AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/permissions"); path.addQuery("$top", top); path.addQuery("$skip", skip); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8391,7 +8391,7 @@ public FetchResult listPostalCodes(String filter, Integer top, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8410,7 +8410,7 @@ public Future> listPostalCodesAsync(String filter, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8438,7 +8438,7 @@ public FetchResult listPreferredPrograms(String filter, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8466,7 +8466,7 @@ public Future> listPreferredProgramsAsync(Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8491,7 +8491,7 @@ public FetchResult listProductClassificationSy path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.addQuery("$countryCode", countryCode); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8516,7 +8516,7 @@ public Future> listProductClassifi path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.addQuery("$countryCode", countryCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8551,7 +8551,7 @@ public FetchResult listProductClassificationSy path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.addQuery("$countryCode", countryCode); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8586,7 +8586,7 @@ public Future> listProductClassifi path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.addQuery("$countryCode", countryCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8609,7 +8609,7 @@ public FetchResult listRateTypesByCountry(String country, String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8632,7 +8632,7 @@ public Future> listRateTypesByCountryAsync(String cou path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8659,7 +8659,7 @@ public FetchResult listRateTypesByCountryTaxTypeTaxSubType(Strin path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8686,7 +8686,7 @@ public Future> listRateTypesByCountryTaxTypeTaxSubTy path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8708,7 +8708,7 @@ public FetchResult listRegions(String filter, Integer top, Integ path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8730,7 +8730,7 @@ public Future> listRegionsAsync(String filter, Integ path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8754,7 +8754,7 @@ public FetchResult listRegionsByCountry(String country, String f path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8778,7 +8778,7 @@ public Future> listRegionsByCountryAsync(String coun path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8799,7 +8799,7 @@ public FetchResult listResourceFileTypes(String filter, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8820,7 +8820,7 @@ public Future> listResourceFileTypesAsync(Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8842,7 +8842,7 @@ public FetchResult listReturnsParametersUsage(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8864,7 +8864,7 @@ public Future> listReturnsParametersUsag path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8886,7 +8886,7 @@ public FetchResult listSecurityRoles(String filter, Integer t path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8908,7 +8908,7 @@ public Future> listSecurityRolesAsync(String filt path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8931,7 +8931,7 @@ public FetchResult listSubscriptionTypes(String filter, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8954,7 +8954,7 @@ public Future> listSubscriptionTypesAsync(Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -8973,7 +8973,7 @@ public FetchResult listTags(String filter, Integer top, Integer skip, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -8992,7 +8992,7 @@ public Future> listTagsAsync(String filter, Integer top, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9013,7 +9013,7 @@ public FetchResult listTaxAuthorities(String filter, Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9034,7 +9034,7 @@ public Future> listTaxAuthoritiesAsync(String fil path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9057,7 +9057,7 @@ public FetchResult listTaxAuthorityForms(String filter, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9080,7 +9080,7 @@ public Future> listTaxAuthorityFormsAsync(Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9101,7 +9101,7 @@ public FetchResult listTaxAuthorityTypes(String filter, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9122,7 +9122,7 @@ public Future> listTaxAuthorityTypesAsync(Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9151,7 +9151,7 @@ public FetchResult listTaxCodes(String filter, Integer top, Intege path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9180,7 +9180,7 @@ public Future> listTaxCodesAsync(String filter, Intege path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9198,7 +9198,7 @@ public TaxCodeTypesModel listTaxCodeTypes(Integer top, Integer skip) throws Exce AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/taxcodetypes"); path.addQuery("$top", top); path.addQuery("$skip", skip); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -9216,7 +9216,7 @@ public Future listTaxCodeTypesAsync(Integer top, Integer skip AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/taxcodetypes"); path.addQuery("$top", top); path.addQuery("$skip", skip); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -9237,7 +9237,7 @@ public FetchResult listTaxForms(String filter, Integer top, Int path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9258,7 +9258,7 @@ public Future> listTaxFormsAsync(String filter, Int path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9279,7 +9279,7 @@ public FetchResult listTaxSubTypes(String filter, Integer top, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9300,7 +9300,7 @@ public Future> listTaxSubTypesAsync(String filter, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9325,7 +9325,7 @@ public FetchResult listTaxSubTypesByCountryAndTaxType(String co path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9350,7 +9350,7 @@ public Future> listTaxSubTypesByCountryAndTaxTypeAs path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9375,7 +9375,7 @@ public FetchResult listTaxSubTypesByJurisdictionAndRegion(Strin path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9400,7 +9400,7 @@ public Future> listTaxSubTypesByJurisdictionAndRegi path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9421,7 +9421,7 @@ public FetchResult listTaxTypeGroups(String filter, Integer t path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9442,7 +9442,7 @@ public Future> listTaxTypeGroupsAsync(String filt path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9463,7 +9463,7 @@ public FetchResult listTaxTypesByNexusAndCountry(String country, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9484,7 +9484,7 @@ public Future> listTaxTypesByNexusAndCountryAsync(Stri path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9509,7 +9509,7 @@ public FetchResult listUnitOfBasisByCountryAndTaxTypeAndTaxSub path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9534,7 +9534,7 @@ public Future> listUnitOfBasisByCountryAndTaxTypeA path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9556,7 +9556,7 @@ public FetchResult listUnitOfMeasurement(String filter, Integer top, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9578,7 +9578,7 @@ public Future> listUnitOfMeasurementAsync(String filter, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9602,7 +9602,7 @@ public Future> listUnitOfMeasurementAsync(String filter, I public ArrayList createDistanceThreshold(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9626,7 +9626,7 @@ public ArrayList createDistanceThreshold(Integer public Future> createDistanceThresholdAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -9651,7 +9651,7 @@ public ArrayList deleteDistanceThreshold(Integer companyId, Long id AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9676,7 +9676,7 @@ public Future> deleteDistanceThresholdAsync(Integer compa AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9701,7 +9701,7 @@ public CompanyDistanceThresholdModel getDistanceThreshold(Integer companyId, Lon AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -9726,7 +9726,7 @@ public Future getDistanceThresholdAsync(Integer c AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -9759,7 +9759,7 @@ public FetchResult listDistanceThresholds(Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9792,7 +9792,7 @@ public Future> listDistanceThresholds path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9826,7 +9826,7 @@ public FetchResult queryDistanceThresholds(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -9860,7 +9860,7 @@ public Future> queryDistanceThreshold path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -9889,7 +9889,7 @@ public CompanyDistanceThresholdModel updateDistanceThreshold(Integer companyId, AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -9918,7 +9918,7 @@ public Future updateDistanceThresholdAsync(Intege AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/distancethresholds/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -9940,7 +9940,7 @@ public Future updateDistanceThresholdAsync(Intege public ECommerceTokenOutputModel createECommerceToken(Integer companyId, CreateECommerceTokenInputModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/ecommercetokens"); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -9962,7 +9962,7 @@ public ECommerceTokenOutputModel createECommerceToken(Integer companyId, CreateE public Future createECommerceTokenAsync(Integer companyId, CreateECommerceTokenInputModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/ecommercetokens"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -9984,7 +9984,7 @@ public Future createECommerceTokenAsync(Integer compa public FetchResult refreshECommerceToken(Integer companyId, RefreshECommerceTokenInputModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/ecommercetokens"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -10006,7 +10006,7 @@ public FetchResult refreshECommerceToken(Integer comp public Future> refreshECommerceTokenAsync(Integer companyId, RefreshECommerceTokenInputModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/ecommercetokens"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -10025,7 +10025,7 @@ public Future> refreshECommerceTokenAsync public FirmClientLinkageOutputModel approveFirmClientLinkage(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/approve"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -10044,7 +10044,7 @@ public FirmClientLinkageOutputModel approveFirmClientLinkage(Integer id) throws public Future approveFirmClientLinkageAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/approve"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -10071,7 +10071,7 @@ public Future approveFirmClientLinkageAsync(Intege */ public FirmClientLinkageOutputModel createAndLinkNewFirmClientAccount(NewFirmClientAccountRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/createandlinkclient"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -10098,7 +10098,7 @@ public FirmClientLinkageOutputModel createAndLinkNewFirmClientAccount(NewFirmCli */ public Future createAndLinkNewFirmClientAccountAsync(NewFirmClientAccountRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/createandlinkclient"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -10116,7 +10116,7 @@ public Future createAndLinkNewFirmClientAccountAsy */ public FirmClientLinkageOutputModel createFirmClientLinkage(FirmClientLinkageInputModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -10134,7 +10134,7 @@ public FirmClientLinkageOutputModel createFirmClientLinkage(FirmClientLinkageInp */ public Future createFirmClientLinkageAsync(FirmClientLinkageInputModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -10153,7 +10153,7 @@ public Future createFirmClientLinkageAsync(FirmCli public ArrayList deleteFirmClientLinkage(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -10172,7 +10172,7 @@ public ArrayList deleteFirmClientLinkage(Integer id) throws Excepti public Future> deleteFirmClientLinkageAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -10191,7 +10191,7 @@ public Future> deleteFirmClientLinkageAsync(Integer id) { public FirmClientLinkageOutputModel getFirmClientLinkage(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -10210,7 +10210,7 @@ public FirmClientLinkageOutputModel getFirmClientLinkage(Integer id) throws Exce public Future getFirmClientLinkageAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -10229,7 +10229,7 @@ public Future getFirmClientLinkageAsync(Integer id public FetchResult listFirmClientLinkage(String filter) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages"); path.addQuery("$filter", filter); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -10248,7 +10248,7 @@ public FetchResult listFirmClientLinkage(String fi public Future> listFirmClientLinkageAsync(String filter) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages"); path.addQuery("$filter", filter); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -10267,7 +10267,7 @@ public Future> listFirmClientLinkageAs public FirmClientLinkageOutputModel rejectFirmClientLinkage(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/reject"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -10286,7 +10286,7 @@ public FirmClientLinkageOutputModel rejectFirmClientLinkage(Integer id) throws E public Future rejectFirmClientLinkageAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/reject"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -10305,7 +10305,7 @@ public Future rejectFirmClientLinkageAsync(Integer public FirmClientLinkageOutputModel resetFirmClientLinkage(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/reset"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -10324,7 +10324,7 @@ public FirmClientLinkageOutputModel resetFirmClientLinkage(Integer id) throws Ex public Future resetFirmClientLinkageAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/reset"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -10343,7 +10343,7 @@ public Future resetFirmClientLinkageAsync(Integer public FirmClientLinkageOutputModel revokeFirmClientLinkage(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/revoke"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -10362,7 +10362,7 @@ public FirmClientLinkageOutputModel revokeFirmClientLinkage(Integer id) throws E public Future revokeFirmClientLinkageAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/revoke"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -10389,7 +10389,7 @@ public Future revokeFirmClientLinkageAsync(Integer */ public NewAccountModel requestFreeTrial(FreeTrialRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/freetrials/request"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -10416,7 +10416,7 @@ public NewAccountModel requestFreeTrial(FreeTrialRequestModel model) throws Exce */ public Future requestFreeTrialAsync(FreeTrialRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/freetrials/request"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -10451,7 +10451,7 @@ public FundingStatusModel activateFundingRequest(Long id, POABusinessUnit busine path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -10486,7 +10486,7 @@ public Future activateFundingRequestAsync(Long id, POABusine path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -10519,7 +10519,7 @@ public FundingStatusModel fundingRequestStatus(Integer id, POABusinessUnit busin path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -10552,7 +10552,7 @@ public Future fundingRequestStatusAsync(Integer id, POABusin path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -10577,7 +10577,7 @@ public ArrayList batchDeleteItemClassifications(Integer companyId, AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/classifications"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -10602,7 +10602,7 @@ public Future> batchDeleteItemClassificationsAsync(Intege AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/classifications"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -10629,7 +10629,7 @@ public ArrayList batchDeleteItemParameters(Integer companyId, Long AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/parameters"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -10656,7 +10656,7 @@ public Future> batchDeleteItemParametersAsync(Integer com AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/parameters"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -10684,7 +10684,7 @@ public Future> batchDeleteItemParametersAsync(Integer com public ItemBulkUploadOutputModel bulkUploadItems(Integer companyId, ItemBulkUploadInputModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/upload"); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -10712,7 +10712,7 @@ public ItemBulkUploadOutputModel bulkUploadItems(Integer companyId, ItemBulkUplo public Future bulkUploadItemsAsync(Integer companyId, ItemBulkUploadInputModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/upload"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -10740,7 +10740,7 @@ public ArrayList createItemClassifications(Intege AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/classifications"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -10768,7 +10768,7 @@ public Future> createItemClassification AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/classifications"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -10800,7 +10800,7 @@ public ArrayList createItemParameters(Integer companyId, Lon AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/parameters"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -10832,7 +10832,7 @@ public Future> createItemParametersAsync(Integer c AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/parameters"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -10860,7 +10860,7 @@ public Future> createItemParametersAsync(Integer c public ArrayList createItems(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -10888,7 +10888,7 @@ public ArrayList createItems(Integer companyId, ArrayList public Future> createItemsAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -10912,7 +10912,7 @@ public ArrayList createItemTags(Integer companyId, Integer i AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/tags"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -10936,7 +10936,7 @@ public Future> createItemTagsAsync(Integer company AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/tags"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -10960,7 +10960,7 @@ public Future> createItemTagsAsync(Integer company public ItemTaxCodeClassificationRequestOutputModel createTaxCodeClassificationRequest(Integer companyId, ItemTaxCodeClassificationRequestInputModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/classificationrequests/taxcode"); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -10984,7 +10984,7 @@ public ItemTaxCodeClassificationRequestOutputModel createTaxCodeClassificationRe public Future createTaxCodeClassificationRequestAsync(Integer companyId, ItemTaxCodeClassificationRequestInputModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/classificationrequests/taxcode"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -11019,7 +11019,7 @@ public ArrayList deleteCatalogueItem(Integer companyId, String item AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/itemcatalogue/{itemCode}"); path.applyField("companyId", companyId); path.applyField("itemCode", itemCode); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11054,7 +11054,7 @@ public Future> deleteCatalogueItemAsync(Integer companyId AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/itemcatalogue/{itemCode}"); path.applyField("companyId", companyId); path.applyField("itemCode", itemCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11083,7 +11083,7 @@ public ArrayList deleteItem(Integer companyId, Long id) throws Exce AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11112,7 +11112,7 @@ public Future> deleteItemAsync(Integer companyId, Long id AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11139,7 +11139,7 @@ public ArrayList deleteItemClassification(Integer companyId, Long i path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11166,7 +11166,7 @@ public Future> deleteItemClassificationAsync(Integer comp path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11195,7 +11195,7 @@ public ArrayList deleteItemParameter(Integer companyId, Long itemId path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11224,7 +11224,7 @@ public Future> deleteItemParameterAsync(Integer companyId path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11249,7 +11249,7 @@ public ArrayList deleteItemTag(Integer companyId, Long itemId, Inte path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("itemTagDetailId", itemTagDetailId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11274,7 +11274,7 @@ public Future> deleteItemTagAsync(Integer companyId, Long path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("itemTagDetailId", itemTagDetailId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11297,7 +11297,7 @@ public ArrayList deleteItemTags(Integer companyId, Long itemId) thr AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/tags"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11320,7 +11320,7 @@ public Future> deleteItemTagsAsync(Integer companyId, Lon AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/tags"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11355,7 +11355,7 @@ public FetchResult getClassif path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11390,7 +11390,7 @@ public Future> ge path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11419,7 +11419,7 @@ public ItemModel getItem(Integer companyId, Long id, String include) throws Exce path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -11448,7 +11448,7 @@ public Future getItemAsync(Integer companyId, Long id, String include path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -11475,7 +11475,7 @@ public ItemClassificationOutputModel getItemClassification(Integer companyId, Lo path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -11502,7 +11502,7 @@ public Future getItemClassificationAsync(Integer path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -11531,7 +11531,7 @@ public ItemParameterModel getItemParameter(Integer companyId, Long itemId, Long path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -11560,7 +11560,7 @@ public Future getItemParameterAsync(Integer companyId, Long path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -11589,7 +11589,7 @@ public FetchResult getItemTags(Integer companyId, Long itemI path.addQuery("$filter", filter); path.addQuery("$top", top); path.addQuery("$skip", skip); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11618,7 +11618,7 @@ public Future> getItemTagsAsync(Integer companyI path.addQuery("$filter", filter); path.addQuery("$top", top); path.addQuery("$skip", skip); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11650,7 +11650,7 @@ public ItemPremiumClassificationOutputModel getPremiumClassification(Integer com path.applyField("companyId", companyId); path.applyField("itemCode", itemCode); path.applyField("systemCode", systemCode); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -11682,7 +11682,7 @@ public Future getPremiumClassificationAsyn path.applyField("companyId", companyId); path.applyField("itemCode", itemCode); path.applyField("systemCode", systemCode); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -11715,7 +11715,7 @@ public FetchResult getTaxCodeRecommendati path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11748,7 +11748,7 @@ public Future> getTaxCodeReco path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11786,7 +11786,7 @@ public FetchResult listImportRestrictions(Integer co path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11824,7 +11824,7 @@ public Future> listImportRestrictionsAsy path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11860,7 +11860,7 @@ public FetchResult listItemClassifications(Intege path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11896,7 +11896,7 @@ public Future> listItemClassification path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -11934,7 +11934,7 @@ public FetchResult listItemParameters(Integer companyId, Lon path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -11972,7 +11972,7 @@ public Future> listItemParametersAsync(Integer c path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -12021,7 +12021,7 @@ public FetchResult listItemsByCompany(Integer companyId, String filte path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.addQuery("tagName", tagName); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -12070,7 +12070,7 @@ public Future> listItemsByCompanyAsync(Integer companyId, path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.addQuery("tagName", tagName); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -12107,7 +12107,7 @@ public FetchResult queryItems(String filter, String include, Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -12144,7 +12144,7 @@ public Future> queryItemsAsync(String filter, String incl path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -12185,7 +12185,7 @@ public FetchResult queryItemsByTag(Integer companyId, String tag, Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -12226,7 +12226,7 @@ public Future> queryItemsByTagAsync(Integer companyId, St path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -12250,7 +12250,7 @@ public Future> queryItemsByTagAsync(Integer companyId, St public ItemCatalogueOutputModel syncItemCatalogue(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/itemcatalogue"); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -12274,7 +12274,7 @@ public ItemCatalogueOutputModel syncItemCatalogue(Integer companyId, ArrayList syncItemCatalogueAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/itemcatalogue"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -12305,7 +12305,7 @@ public Future syncItemCatalogueAsync(Integer companyId public SyncItemsResponseModel syncItems(Integer companyId, SyncItemsRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/sync"); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -12336,7 +12336,7 @@ public SyncItemsResponseModel syncItems(Integer companyId, SyncItemsRequestModel public Future syncItemsAsync(Integer companyId, SyncItemsRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/sync"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -12369,7 +12369,7 @@ public ItemModel updateItem(Integer companyId, Long id, ItemModel model) throws AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -12402,7 +12402,7 @@ public Future updateItemAsync(Integer companyId, Long id, ItemModel m AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -12432,7 +12432,7 @@ public ItemClassificationOutputModel updateItemClassification(Integer companyId, path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -12462,7 +12462,7 @@ public Future updateItemClassificationAsync(Integ path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -12492,7 +12492,7 @@ public ItemParameterModel updateItemParameter(Integer companyId, Long itemId, Lo path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -12522,7 +12522,7 @@ public Future updateItemParameterAsync(Integer companyId, Lo path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -12547,7 +12547,7 @@ public Future updateItemParameterAsync(Integer companyId, Lo public ArrayList createJurisdictionOverrides(Integer accountId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides"); path.applyField("accountId", accountId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -12572,7 +12572,7 @@ public ArrayList createJurisdictionOverrides(Integer public Future> createJurisdictionOverridesAsync(Integer accountId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides"); path.applyField("accountId", accountId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -12593,7 +12593,7 @@ public ArrayList deleteJurisdictionOverride(Integer accountId, Inte AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -12614,7 +12614,7 @@ public Future> deleteJurisdictionOverrideAsync(Integer ac AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -12640,7 +12640,7 @@ public JurisdictionOverrideModel getJurisdictionOverride(Integer accountId, Inte AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -12666,7 +12666,7 @@ public Future getJurisdictionOverrideAsync(Integer ac AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -12703,7 +12703,7 @@ public FetchResult listJurisdictionOverridesByAccount path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -12740,7 +12740,7 @@ public Future> listJurisdictionOverridesB path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -12775,7 +12775,7 @@ public FetchResult queryJurisdictionOverrides(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -12810,7 +12810,7 @@ public Future> queryJurisdictionOverrides path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -12832,7 +12832,7 @@ public JurisdictionOverrideModel updateJurisdictionOverride(Integer accountId, I AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -12854,7 +12854,7 @@ public Future updateJurisdictionOverrideAsync(Integer AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/jurisdictionoverrides/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -12886,7 +12886,7 @@ public ArrayList createLocationParameters(Integer compan AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{locationId}/parameters"); path.applyField("companyId", companyId); path.applyField("locationId", locationId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -12918,7 +12918,7 @@ public Future> createLocationParametersAsync(I AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{locationId}/parameters"); path.applyField("companyId", companyId); path.applyField("locationId", locationId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -12938,7 +12938,7 @@ public Future> createLocationParametersAsync(I public ArrayList createLocations(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -12958,7 +12958,7 @@ public ArrayList createLocations(Integer companyId, ArrayList> createLocationsAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -12979,7 +12979,7 @@ public ArrayList deleteLocation(Integer companyId, Integer id) thro AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -13000,7 +13000,7 @@ public Future> deleteLocationAsync(Integer companyId, Int AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -13029,7 +13029,7 @@ public ArrayList deleteLocationParameter(Integer companyId, Integer path.applyField("companyId", companyId); path.applyField("locationId", locationId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -13058,7 +13058,7 @@ public Future> deleteLocationParameterAsync(Integer compa path.applyField("companyId", companyId); path.applyField("locationId", locationId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -13090,7 +13090,7 @@ public LocationModel getLocation(Integer companyId, Integer id, String include) path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -13122,7 +13122,7 @@ public Future getLocationAsync(Integer companyId, Integer id, Str path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -13151,7 +13151,7 @@ public LocationParameterModel getLocationParameter(Integer companyId, Integer lo path.applyField("companyId", companyId); path.applyField("locationId", locationId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -13180,7 +13180,7 @@ public Future getLocationParameterAsync(Integer companyI path.applyField("companyId", companyId); path.applyField("locationId", locationId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -13218,7 +13218,7 @@ public FetchResult listLocationParameters(Integer compan path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -13256,7 +13256,7 @@ public Future> listLocationParametersAsync(I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -13296,7 +13296,7 @@ public FetchResult listLocationsByCompany(Integer companyId, Stri path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -13336,7 +13336,7 @@ public Future> listLocationsByCompanyAsync(Integer co path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -13375,7 +13375,7 @@ public FetchResult queryLocations(String filter, String include, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -13414,7 +13414,7 @@ public Future> queryLocationsAsync(String filter, Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -13438,7 +13438,7 @@ public LocationModel updateLocation(Integer companyId, Integer id, LocationModel AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -13462,7 +13462,7 @@ public Future updateLocationAsync(Integer companyId, Integer id, AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -13492,7 +13492,7 @@ public LocationParameterModel updateLocationParameter(Integer companyId, Integer path.applyField("companyId", companyId); path.applyField("locationId", locationId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -13522,7 +13522,7 @@ public Future updateLocationParameterAsync(Integer compa path.applyField("companyId", companyId); path.applyField("locationId", locationId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -13545,7 +13545,7 @@ public LocationValidationModel validateLocation(Integer companyId, Integer id) t AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}/validate"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -13568,7 +13568,7 @@ public Future validateLocationAsync(Integer companyId, AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/locations/{id}/validate"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -13610,7 +13610,7 @@ public MultiDocumentModel adjustMultiDocumentTransaction(String code, DocumentTy path.applyField("code", code); path.applyField("type", type); path.addQuery("include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -13652,7 +13652,7 @@ public Future adjustMultiDocumentTransactionAsync(String cod path.applyField("code", code); path.applyField("type", type); path.addQuery("include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -13695,7 +13695,7 @@ public AuditMultiDocumentModel auditMultiDocumentTransaction(String code, Docume AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/{code}/type/{type}/audit"); path.applyField("code", code); path.applyField("type", type); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -13738,7 +13738,7 @@ public Future auditMultiDocumentTransactionAsync(String AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/{code}/type/{type}/audit"); path.applyField("code", code); path.applyField("type", type); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -13772,7 +13772,7 @@ public Future auditMultiDocumentTransactionAsync(String */ public MultiDocumentModel commitMultiDocumentTransaction(CommitMultiDocumentModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/commit"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -13806,7 +13806,7 @@ public MultiDocumentModel commitMultiDocumentTransaction(CommitMultiDocumentMode */ public Future commitMultiDocumentTransactionAsync(CommitMultiDocumentModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/commit"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -13866,7 +13866,7 @@ public Future commitMultiDocumentTransactionAsync(CommitMult public MultiDocumentModel createMultiDocumentTransaction(String include, CreateMultiDocumentModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument"); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -13926,7 +13926,7 @@ public MultiDocumentModel createMultiDocumentTransaction(String include, CreateM public Future createMultiDocumentTransactionAsync(String include, CreateMultiDocumentModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument"); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -13969,7 +13969,7 @@ public MultiDocumentModel getMultiDocumentTransactionByCodeAndType(String code, path.applyField("code", code); path.applyField("type", type); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -14012,7 +14012,7 @@ public Future getMultiDocumentTransactionByCodeAndTypeAsync( path.applyField("code", code); path.applyField("type", type); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -14062,7 +14062,7 @@ public MultiDocumentModel getMultiDocumentTransactionById(Long id, String includ AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/{id}"); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -14112,7 +14112,7 @@ public Future getMultiDocumentTransactionByIdAsync(Long id, AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/{id}"); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -14166,7 +14166,7 @@ public FetchResult listMultiDocumentTransactions(String filt path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -14220,7 +14220,7 @@ public Future> listMultiDocumentTransactionsAsyn path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -14288,7 +14288,7 @@ public MultiDocumentModel refundMultiDocumentTransaction(String code, DocumentTy path.applyField("code", code); path.applyField("type", type); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -14356,7 +14356,7 @@ public Future refundMultiDocumentTransactionAsync(String cod path.applyField("code", code); path.applyField("type", type); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -14388,7 +14388,7 @@ public Future refundMultiDocumentTransactionAsync(String cod */ public MultiDocumentModel verifyMultiDocumentTransaction(VerifyMultiDocumentModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/verify"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -14420,7 +14420,7 @@ public MultiDocumentModel verifyMultiDocumentTransaction(VerifyMultiDocumentMode */ public Future verifyMultiDocumentTransactionAsync(VerifyMultiDocumentModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/verify"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -14459,7 +14459,7 @@ public MultiDocumentModel voidMultiDocumentTransaction(String code, DocumentType AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/{code}/type/{type}/void"); path.applyField("code", code); path.applyField("type", type); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -14498,7 +14498,7 @@ public Future voidMultiDocumentTransactionAsync(String code, AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/multidocument/{code}/type/{type}/void"); path.applyField("code", code); path.applyField("type", type); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -14536,7 +14536,7 @@ public Future voidMultiDocumentTransactionAsync(String code, public ArrayList createNexus(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -14574,7 +14574,7 @@ public ArrayList createNexus(Integer companyId, ArrayList> createNexusAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -14605,7 +14605,7 @@ public ArrayList createNexusParameters(Integer compan AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{nexusId}/parameters"); path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -14636,7 +14636,7 @@ public Future> createNexusParametersAsync(I AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{nexusId}/parameters"); path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -14670,7 +14670,7 @@ public Future> createNexusParametersAsync(I public ArrayList declareNexusByAddress(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/byaddress"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -14704,7 +14704,7 @@ public ArrayList declareNexusByAddress(Integer companyId, A public Future> declareNexusByAddressAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/byaddress"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -14734,7 +14734,7 @@ public ArrayList deleteNexus(Integer companyId, Integer id, Boolean path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("cascadeDelete", cascadeDelete); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -14764,7 +14764,7 @@ public Future> deleteNexusAsync(Integer companyId, Intege path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("cascadeDelete", cascadeDelete); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -14792,7 +14792,7 @@ public ArrayList deleteNexusParameter(Integer companyId, Integer ne path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -14820,7 +14820,7 @@ public Future> deleteNexusParameterAsync(Integer companyI path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -14846,7 +14846,7 @@ public ArrayList deleteNexusParameters(Integer companyId, Integer n AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{nexusId}/parameters"); path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -14872,7 +14872,7 @@ public Future> deleteNexusParametersAsync(Integer company AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{nexusId}/parameters"); path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -14902,7 +14902,7 @@ public NexusModel getNexus(Integer companyId, Integer id, String include) throws path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -14932,7 +14932,7 @@ public Future getNexusAsync(Integer companyId, Integer id, String in path.applyField("companyId", companyId); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -14966,7 +14966,7 @@ public NexusByTaxFormModel getNexusByFormCode(Integer companyId, String formCode path.applyField("companyId", companyId); path.applyField("formCode", formCode); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -15000,7 +15000,7 @@ public Future getNexusByFormCodeAsync(Integer companyId, St path.applyField("companyId", companyId); path.applyField("formCode", formCode); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -15028,7 +15028,7 @@ public NexusParameterDetailModel getNexusParameter(Integer companyId, Integer ne path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -15056,7 +15056,7 @@ public Future getNexusParameterAsync(Integer companyI path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -15095,7 +15095,7 @@ public FetchResult listNexusByCompany(Integer companyId, String filt path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -15134,7 +15134,7 @@ public Future> listNexusByCompanyAsync(Integer companyId path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -15175,7 +15175,7 @@ public FetchResult listNexusByCompanyAndTaxTypeGroup(Integer company path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -15216,7 +15216,7 @@ public Future> listNexusByCompanyAndTaxTypeGroupAsync(In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -15253,7 +15253,7 @@ public FetchResult listNexusParameters(Integer compan path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -15290,7 +15290,7 @@ public Future> listNexusParametersAsync(I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -15327,7 +15327,7 @@ public FetchResult queryNexus(String filter, String include, Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -15364,7 +15364,7 @@ public Future> queryNexusAsync(String filter, String inc path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -15404,7 +15404,7 @@ public NexusModel updateNexus(Integer companyId, Integer id, NexusModel model) t AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -15444,7 +15444,7 @@ public Future updateNexusAsync(Integer companyId, Integer id, NexusM AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/nexus/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -15474,7 +15474,7 @@ public NexusParameterDetailModel updateNexusParameter(Integer companyId, Integer path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -15504,7 +15504,7 @@ public Future updateNexusParameterAsync(Integer compa path.applyField("companyId", companyId); path.applyField("nexusId", nexusId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -15523,7 +15523,7 @@ public Future updateNexusParameterAsync(Integer compa */ public NoticeResponsibilityModel createNoticeResponsibilityType(CreateNoticeResponsibilityTypeModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/notices/responsibilities"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -15542,7 +15542,7 @@ public NoticeResponsibilityModel createNoticeResponsibilityType(CreateNoticeResp */ public Future createNoticeResponsibilityTypeAsync(CreateNoticeResponsibilityTypeModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/notices/responsibilities"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -15561,7 +15561,7 @@ public Future createNoticeResponsibilityTypeAsync(Cre */ public NoticeRootCauseModel createNoticeRootCauseType(CreateNoticeRootCauseTypeModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/notices/rootcauses"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -15580,7 +15580,7 @@ public NoticeRootCauseModel createNoticeRootCauseType(CreateNoticeRootCauseTypeM */ public Future createNoticeRootCauseTypeAsync(CreateNoticeRootCauseTypeModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/notices/rootcauses"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -15599,7 +15599,7 @@ public Future createNoticeRootCauseTypeAsync(CreateNoticeR public ArrayList deleteNoticeResponsibilityType(Integer responsibilityId) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/notices/responsibilities/{responsibilityId}"); path.applyField("responsibilityId", responsibilityId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -15618,7 +15618,7 @@ public ArrayList deleteNoticeResponsibilityType(Integer responsibil public Future> deleteNoticeResponsibilityTypeAsync(Integer responsibilityId) { AvaTaxPath path = new AvaTaxPath("/api/v2/notices/responsibilities/{responsibilityId}"); path.applyField("responsibilityId", responsibilityId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -15637,7 +15637,7 @@ public Future> deleteNoticeResponsibilityTypeAsync(Intege public ArrayList deleteNoticeRootCauseType(Integer rootCauseId) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/notices/rootcauses/{rootCauseId}"); path.applyField("rootCauseId", rootCauseId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -15656,7 +15656,7 @@ public ArrayList deleteNoticeRootCauseType(Integer rootCauseId) thr public Future> deleteNoticeRootCauseTypeAsync(Integer rootCauseId) { AvaTaxPath path = new AvaTaxPath("/api/v2/notices/rootcauses/{rootCauseId}"); path.applyField("rootCauseId", rootCauseId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -15688,7 +15688,7 @@ public Future> deleteNoticeRootCauseTypeAsync(Integer roo public NotificationModel dismissNotification(Long id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications/{id}/dismiss"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -15720,7 +15720,7 @@ public NotificationModel dismissNotification(Long id) throws Exception { public Future dismissNotificationAsync(Long id) { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications/{id}/dismiss"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, null, new TypeToken(){},"22.10.0")); } /** @@ -15746,7 +15746,7 @@ public Future dismissNotificationAsync(Long id) { public NotificationModel getNotification(Long id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -15772,7 +15772,7 @@ public NotificationModel getNotification(Long id) throws Exception { public Future getNotificationAsync(Long id) { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -15807,7 +15807,7 @@ public FetchResult listNotifications(String filter, Integer t path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -15842,7 +15842,7 @@ public Future> listNotificationsAsync(String filt path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -15875,7 +15875,7 @@ public Future> listNotificationsAsync(String filt */ public NewAccountModel requestNewAccount(NewAccountRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/request"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -15908,7 +15908,7 @@ public NewAccountModel requestNewAccount(NewAccountRequestModel model) throws Ex */ public Future requestNewAccountAsync(NewAccountRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/request"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -15932,7 +15932,7 @@ public OfferModel requestNewEntitlement(Integer id, String offer) throws Excepti AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/entitlements/{offer}"); path.applyField("id", id); path.applyField("offer", offer); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -15956,7 +15956,7 @@ public Future requestNewEntitlementAsync(Integer id, String offer) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}/entitlements/{offer}"); path.applyField("id", id); path.applyField("offer", offer); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -15978,7 +15978,7 @@ public Future requestNewEntitlementAsync(Integer id, String offer) { */ public ArrayList createAccount(AccountModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts"); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16000,7 +16000,7 @@ public ArrayList createAccount(AccountModel model) throws Exceptio */ public Future> createAccountAsync(AccountModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -16031,7 +16031,7 @@ public Future> createAccountAsync(AccountModel model) { */ public ArrayList createNotifications(ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications"); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16062,7 +16062,57 @@ public ArrayList createNotifications(ArrayList> createNotificationsAsync(ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); + } + + /** + * Create Avalara-supported subscription (ServiceTypes) + * + * For Registrar Use Only + * This API is for use by Avalara Registrar administrative users only. + * + * Create one service/subscription object. + * + * Returns the newly created Avalara-supported subscription (service) type. + * This API is intended to be useful for adding new Avalara-supported subscription type (service type). + * You may always contact Avalara's sales department for information on available products or services. + * + * ### Security Policies + * + * * This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. + * + * Swagger Name: AvaTaxClient + * @param model The subscription type object you wish to create. + * @return SubscriptionTypeModel + */ + public SubscriptionTypeModel createServiceTypes(SubscriptionTypeModel model) throws Exception { + AvaTaxPath path = new AvaTaxPath("/api/v2/servicetypes"); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); + } + + /** + * Create Avalara-supported subscription (ServiceTypes) + * + * For Registrar Use Only + * This API is for use by Avalara Registrar administrative users only. + * + * Create one service/subscription object. + * + * Returns the newly created Avalara-supported subscription (service) type. + * This API is intended to be useful for adding new Avalara-supported subscription type (service type). + * You may always contact Avalara's sales department for information on available products or services. + * + * ### Security Policies + * + * * This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. + * + * Swagger Name: AvaTaxClient + * @param model The subscription type object you wish to create. + * @return SubscriptionTypeModel + */ + public Future createServiceTypesAsync(SubscriptionTypeModel model) { + AvaTaxPath path = new AvaTaxPath("/api/v2/servicetypes"); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -16086,7 +16136,7 @@ public Future> createNotificationsAsync(ArrayList createSubscriptions(Integer accountId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions"); path.applyField("accountId", accountId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16110,7 +16160,7 @@ public ArrayList createSubscriptions(Integer accountId, Array public Future> createSubscriptionsAsync(Integer accountId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions"); path.applyField("accountId", accountId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -16133,7 +16183,7 @@ public Future> createSubscriptionsAsync(Integer acc public ArrayList deleteAccount(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16156,7 +16206,7 @@ public ArrayList deleteAccount(Integer id) throws Exception { public Future> deleteAccountAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -16185,7 +16235,7 @@ public Future> deleteAccountAsync(Integer id) { public ArrayList deleteNotification(Long id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications/{id}"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16214,7 +16264,53 @@ public ArrayList deleteNotification(Long id) throws Exception { public Future> deleteNotificationAsync(Long id) { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); + } + + /** + * Delete a single Subscription (ServiceTypes) object + * + * For Registrar Use Only + * This API is for use by Avalara Registrar administrative users only. + * + * Marks the Subscription (ServiceTypes) object identified by this URL as deleted. + * This API is useful for deleting an existing Avalara-supported subscription type (service type). + * + * ### Security Policies + * + * * This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. + * + * Swagger Name: AvaTaxClient + * @param id The unique ID number of the Subscription object you wish to delete. + * @return ArrayList + */ + public ArrayList deleteServiceType(Integer id) throws Exception { + AvaTaxPath path = new AvaTaxPath("/api/v2/servicetypes/{id}"); + path.applyField("id", id); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); + } + + /** + * Delete a single Subscription (ServiceTypes) object + * + * For Registrar Use Only + * This API is for use by Avalara Registrar administrative users only. + * + * Marks the Subscription (ServiceTypes) object identified by this URL as deleted. + * This API is useful for deleting an existing Avalara-supported subscription type (service type). + * + * ### Security Policies + * + * * This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. + * + * Swagger Name: AvaTaxClient + * @param id The unique ID number of the Subscription object you wish to delete. + * @return ArrayList + */ + public Future> deleteServiceTypeAsync(Integer id) { + AvaTaxPath path = new AvaTaxPath("/api/v2/servicetypes/{id}"); + path.applyField("id", id); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -16238,7 +16334,7 @@ public ArrayList deleteSubscription(Integer accountId, Integer id) AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16262,7 +16358,69 @@ public Future> deleteSubscriptionAsync(Integer accountId, AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); + } + + /** + * Retrieve the full list of Avalara-supported subscription (ServiceTypes) + * + * For Registrar Use Only + * This API is for use by Avalara Registrar administrative users only. + * + * Returns the full list of Avalara-supported subscription types. + * This API is intended to be useful for identifying which features you have added to your account. + * You may always contact Avalara's sales department for information on available products or services. + * You cannot change your subscriptions/service directly through the API. + * + * ### Security Policies + * + * * This API requires one of the following user roles: AccountAdmin, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. + * + * Swagger Name: AvaTaxClient + * @param filter A filter statement to identify specific records to retrieve. For more information on filtering, see [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/). + * @param top If nonzero, return no more than this number of results. Used with `$skip` to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records. + * @param skip If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets. + * @param orderBy A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`. + * @return FetchResult + */ + public FetchResult listServiceTypes(String filter, Integer top, Integer skip, String orderBy) throws Exception { + AvaTaxPath path = new AvaTaxPath("/api/v2/servicetypes/servicetypes"); + path.addQuery("$filter", filter); + path.addQuery("$top", top); + path.addQuery("$skip", skip); + path.addQuery("$orderBy", orderBy); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); + } + + /** + * Retrieve the full list of Avalara-supported subscription (ServiceTypes) + * + * For Registrar Use Only + * This API is for use by Avalara Registrar administrative users only. + * + * Returns the full list of Avalara-supported subscription types. + * This API is intended to be useful for identifying which features you have added to your account. + * You may always contact Avalara's sales department for information on available products or services. + * You cannot change your subscriptions/service directly through the API. + * + * ### Security Policies + * + * * This API requires one of the following user roles: AccountAdmin, AccountUser, BatchServiceAdmin, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. + * + * Swagger Name: AvaTaxClient + * @param filter A filter statement to identify specific records to retrieve. For more information on filtering, see [Filtering in REST](http://developer.avalara.com/avatax/filtering-in-rest/). + * @param top If nonzero, return no more than this number of results. Used with `$skip` to provide pagination for large datasets. Unless otherwise specified, the maximum number of records that can be returned from an API call is 1,000 records. + * @param skip If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets. + * @param orderBy A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`. + * @return FetchResult + */ + public Future> listServiceTypesAsync(String filter, Integer top, Integer skip, String orderBy) { + AvaTaxPath path = new AvaTaxPath("/api/v2/servicetypes/servicetypes"); + path.addQuery("$filter", filter); + path.addQuery("$top", top); + path.addQuery("$skip", skip); + path.addQuery("$orderBy", orderBy); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -16290,7 +16448,7 @@ public String resetPassword(Integer userId, Boolean isUndoMigrateRequest, SetPas AvaTaxPath path = new AvaTaxPath("/api/v2/passwords/{userId}/reset"); path.applyField("userId", userId); path.addQuery("isUndoMigrateRequest", isUndoMigrateRequest); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -16318,7 +16476,7 @@ public Future resetPasswordAsync(Integer userId, Boolean isUndoMigrateRe AvaTaxPath path = new AvaTaxPath("/api/v2/passwords/{userId}/reset"); path.applyField("userId", userId); path.addQuery("isUndoMigrateRequest", isUndoMigrateRequest); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -16341,7 +16499,7 @@ public Future resetPasswordAsync(Integer userId, Boolean isUndoMigrateRe public AccountModel updateAccount(Integer id, AccountModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -16364,7 +16522,7 @@ public AccountModel updateAccount(Integer id, AccountModel model) throws Excepti public Future updateAccountAsync(Integer id, AccountModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -16394,7 +16552,7 @@ public Future updateAccountAsync(Integer id, AccountModel model) { public NotificationModel updateNotification(Long id, NotificationModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -16424,7 +16582,57 @@ public NotificationModel updateNotification(Long id, NotificationModel model) th public Future updateNotificationAsync(Long id, NotificationModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/notifications/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); + } + + /** + * Update existing Avalara-supported subscription (ServiceTypes) + * + * For Registrar Use Only + * This API is for use by Avalara Registrar administrative users only. + * + * Returns the updated Avalara-supported service types. + * This API is intended to be useful for updating an existing subscription(service) type detail. + * You may always contact Avalara's sales department for information on available products or services. + * + * ### Security Policies + * + * * This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. + * + * Swagger Name: AvaTaxClient + * @param id The unique ID number of the existing subscription type object to replace. + * @param model The subscription type object to update. + * @return SubscriptionTypeModel + */ + public SubscriptionTypeModel updateServiceType(Integer id, SubscriptionTypeModel model) throws Exception { + AvaTaxPath path = new AvaTaxPath("/api/v2/servicetypes/{id}"); + path.applyField("id", id); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); + } + + /** + * Update existing Avalara-supported subscription (ServiceTypes) + * + * For Registrar Use Only + * This API is for use by Avalara Registrar administrative users only. + * + * Returns the updated Avalara-supported service types. + * This API is intended to be useful for updating an existing subscription(service) type detail. + * You may always contact Avalara's sales department for information on available products or services. + * + * ### Security Policies + * + * * This API requires one of the following user roles: BatchServiceAdmin, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin. + * + * Swagger Name: AvaTaxClient + * @param id The unique ID number of the existing subscription type object to replace. + * @param model The subscription type object to update. + * @return SubscriptionTypeModel + */ + public Future updateServiceTypeAsync(Integer id, SubscriptionTypeModel model) { + AvaTaxPath path = new AvaTaxPath("/api/v2/servicetypes/{id}"); + path.applyField("id", id); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -16453,7 +16661,7 @@ public SubscriptionModel updateSubscription(Integer accountId, Integer id, Subsc AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -16482,7 +16690,7 @@ public Future updateSubscriptionAsync(Integer accountId, Inte AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -16514,7 +16722,7 @@ public Future updateSubscriptionAsync(Integer accountId, Inte public String downloadReport(Long id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/reports/{id}/attachment"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -16546,7 +16754,7 @@ public String downloadReport(Long id) throws Exception { public Future downloadReportAsync(Long id) { AvaTaxPath path = new AvaTaxPath("/api/v2/reports/{id}/attachment"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -16570,7 +16778,7 @@ public Future downloadReportAsync(Long id) { public ReportModel getReport(Long id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/reports/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -16594,7 +16802,7 @@ public ReportModel getReport(Long id) throws Exception { public Future getReportAsync(Long id) { AvaTaxPath path = new AvaTaxPath("/api/v2/reports/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -16633,7 +16841,7 @@ public Future getReportAsync(Long id) { public ArrayList initiateExportDocumentLineReport(Integer companyId, ExportDocumentLineModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/reports/exportdocumentline/initiate"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16672,7 +16880,7 @@ public ArrayList initiateExportDocumentLineReport(Integer companyId public Future> initiateExportDocumentLineReportAsync(Integer companyId, ExportDocumentLineModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/reports/exportdocumentline/initiate"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -16707,7 +16915,7 @@ public FetchResult listReports(Integer companyId, String pageKey, I path.addQuery("pageKey", pageKey); path.addQuery("$skip", skip); path.addQuery("$top", top); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16742,7 +16950,7 @@ public Future> listReportsAsync(Integer companyId, Stri path.addQuery("pageKey", pageKey); path.addQuery("$skip", skip); path.addQuery("$top", top); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -16776,7 +16984,7 @@ public Future> listReportsAsync(Integer companyId, Stri public ArrayList createSettings(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/settings"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16810,7 +17018,7 @@ public ArrayList createSettings(Integer companyId, ArrayList> createSettingsAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/settings"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -16840,7 +17048,7 @@ public ArrayList deleteSetting(Integer companyId, Integer id) throw AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -16870,7 +17078,7 @@ public Future> deleteSettingAsync(Integer companyId, Inte AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -16900,7 +17108,7 @@ public SettingModel getSetting(Integer companyId, Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -16930,7 +17138,7 @@ public Future getSettingAsync(Integer companyId, Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -16971,7 +17179,7 @@ public FetchResult listSettingsByCompany(Integer companyId, String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -17012,7 +17220,7 @@ public Future> listSettingsByCompanyAsync(Integer comp path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -17051,7 +17259,7 @@ public FetchResult querySettings(String filter, String include, In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -17090,7 +17298,7 @@ public Future> querySettingsAsync(String filter, Strin path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -17125,7 +17333,7 @@ public SettingModel updateSetting(Integer companyId, Integer id, SettingModel mo AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -17160,7 +17368,7 @@ public Future updateSettingAsync(Integer companyId, Integer id, Se AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/settings/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -17183,7 +17391,7 @@ public SubscriptionModel getSubscription(Integer accountId, Integer id) throws E AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -17206,7 +17414,7 @@ public Future getSubscriptionAsync(Integer accountId, Integer AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/subscriptions/{id}"); path.applyField("accountId", accountId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -17238,7 +17446,7 @@ public FetchResult listSubscriptionsByAccount(Integer account path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -17270,7 +17478,7 @@ public Future> listSubscriptionsByAccountAsync(In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -17300,7 +17508,7 @@ public FetchResult querySubscriptions(String filter, Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -17330,7 +17538,7 @@ public Future> querySubscriptionsAsync(String fil path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -17354,7 +17562,7 @@ public Future> querySubscriptionsAsync(String fil public ArrayList createTaxCodes(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -17378,7 +17586,7 @@ public ArrayList createTaxCodes(Integer companyId, ArrayList> createTaxCodesAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -17399,7 +17607,7 @@ public ArrayList deleteTaxCode(Integer companyId, Integer id) throw AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -17420,7 +17628,7 @@ public Future> deleteTaxCodeAsync(Integer companyId, Inte AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -17445,7 +17653,7 @@ public TaxCodeModel getTaxCode(Integer companyId, Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -17470,7 +17678,7 @@ public Future getTaxCodeAsync(Integer companyId, Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -17506,7 +17714,7 @@ public FetchResult listTaxCodesByCompany(Integer companyId, String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -17542,7 +17750,7 @@ public Future> listTaxCodesByCompanyAsync(Integer comp path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -17576,7 +17784,7 @@ public FetchResult queryTaxCodes(String filter, String include, In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -17610,7 +17818,7 @@ public Future> queryTaxCodesAsync(String filter, Strin path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -17638,7 +17846,7 @@ public TaxCodeModel updateTaxCode(Integer companyId, Integer id, TaxCodeModel mo AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -17666,7 +17874,7 @@ public Future updateTaxCodeAsync(Integer companyId, Integer id, Ta AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxcodes/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -17707,7 +17915,7 @@ public Future updateTaxCodeAsync(Integer companyId, Integer id, Ta */ public String buildTaxContentFile(PointOfSaleDataRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/pointofsaledata/build"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -17748,7 +17956,7 @@ public String buildTaxContentFile(PointOfSaleDataRequestModel model) throws Exce */ public Future buildTaxContentFileAsync(PointOfSaleDataRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/pointofsaledata/build"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -17800,7 +18008,7 @@ public String buildTaxContentFileForLocation(Integer companyId, Integer id, Date path.addQuery("format", format); path.addQuery("partnerId", partnerId); path.addQuery("includeJurisCodes", includeJurisCodes); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -17852,7 +18060,7 @@ public Future buildTaxContentFileForLocationAsync(Integer companyId, Int path.addQuery("format", format); path.addQuery("partnerId", partnerId); path.addQuery("includeJurisCodes", includeJurisCodes); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -17912,7 +18120,7 @@ public String downloadTaxRatesByZipCode(Date date, String region) throws Excepti AvaTaxPath path = new AvaTaxPath("/api/v2/taxratesbyzipcode/download/{date}"); path.applyField("date", date); path.addQuery("region", region); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -17972,7 +18180,7 @@ public Future downloadTaxRatesByZipCodeAsync(Date date, String region) { AvaTaxPath path = new AvaTaxPath("/api/v2/taxratesbyzipcode/download/{date}"); path.applyField("date", date); path.addQuery("region", region); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -18017,7 +18225,7 @@ public TaxRateModel taxRatesByAddress(String line1, String line2, String line3, path.addQuery("region", region); path.addQuery("postalCode", postalCode); path.addQuery("country", country); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -18062,7 +18270,7 @@ public Future taxRatesByAddressAsync(String line1, String line2, S path.addQuery("region", region); path.addQuery("postalCode", postalCode); path.addQuery("country", country); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -18099,7 +18307,7 @@ public TaxRateModel taxRatesByPostalCode(String country, String postalCode) thro AvaTaxPath path = new AvaTaxPath("/api/v2/taxrates/bypostalcode"); path.addQuery("country", country); path.addQuery("postalCode", postalCode); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -18136,7 +18344,7 @@ public Future taxRatesByPostalCodeAsync(String country, String pos AvaTaxPath path = new AvaTaxPath("/api/v2/taxrates/bypostalcode"); path.addQuery("country", country); path.addQuery("postalCode", postalCode); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -18168,7 +18376,7 @@ public Future taxRatesByPostalCodeAsync(String country, String pos public ArrayList createTaxRules(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -18200,7 +18408,7 @@ public ArrayList createTaxRules(Integer companyId, ArrayList> createTaxRulesAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -18233,7 +18441,7 @@ public ArrayList deleteTaxRule(Integer companyId, Integer id) throw AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -18266,7 +18474,7 @@ public Future> deleteTaxRuleAsync(Integer companyId, Inte AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -18299,7 +18507,7 @@ public TaxRuleModel getTaxRule(Integer companyId, Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -18332,7 +18540,7 @@ public Future getTaxRuleAsync(Integer companyId, Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -18376,7 +18584,7 @@ public FetchResult listTaxRules(Integer companyId, String filter, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -18420,7 +18628,7 @@ public Future> listTaxRulesAsync(Integer companyId, St path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -18462,7 +18670,7 @@ public FetchResult queryTaxRules(String filter, String include, In path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -18504,7 +18712,7 @@ public Future> queryTaxRulesAsync(String filter, Strin path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -18538,7 +18746,7 @@ public TaxRuleModel updateTaxRule(Integer companyId, Integer id, TaxRuleModel mo AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -18572,7 +18780,7 @@ public Future updateTaxRuleAsync(Integer companyId, Integer id, Ta AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/taxrules/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -18612,7 +18820,7 @@ public Future updateTaxRuleAsync(Integer companyId, Integer id, Ta public TransactionModel addLines(String include, AddTransactionLineModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/transactions/lines/add"); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -18652,7 +18860,7 @@ public TransactionModel addLines(String include, AddTransactionLineModel model) public Future addLinesAsync(String include, AddTransactionLineModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/transactions/lines/add"); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -18707,7 +18915,7 @@ public TransactionModel adjustTransaction(String companyCode, String transaction path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -18762,7 +18970,7 @@ public Future adjustTransactionAsync(String companyCode, Strin path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -18806,7 +19014,7 @@ public AuditTransactionModel auditTransaction(String companyCode, String transac AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyCode}/transactions/{transactionCode}/audit"); path.applyField("companyCode", companyCode); path.applyField("transactionCode", transactionCode); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -18850,7 +19058,7 @@ public Future auditTransactionAsync(String companyCode, S AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyCode}/transactions/{transactionCode}/audit"); path.applyField("companyCode", companyCode); path.applyField("transactionCode", transactionCode); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -18896,7 +19104,7 @@ public AuditTransactionModel auditTransactionWithType(String companyCode, String path.applyField("companyCode", companyCode); path.applyField("transactionCode", transactionCode); path.applyField("documentType", documentType); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -18942,7 +19150,7 @@ public Future auditTransactionWithTypeAsync(String compan path.applyField("companyCode", companyCode); path.applyField("transactionCode", transactionCode); path.applyField("documentType", documentType); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -18967,7 +19175,7 @@ public Future auditTransactionWithTypeAsync(String compan */ public BulkLockTransactionResult bulkLockTransaction(BulkLockTransactionModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/lock"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -18992,7 +19200,7 @@ public BulkLockTransactionResult bulkLockTransaction(BulkLockTransactionModel mo */ public Future bulkLockTransactionAsync(BulkLockTransactionModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/lock"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -19047,7 +19255,7 @@ public TransactionModel changeTransactionCode(String companyCode, String transac path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -19102,7 +19310,7 @@ public Future changeTransactionCodeAsync(String companyCode, S path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -19155,7 +19363,7 @@ public TransactionModel commitTransaction(String companyCode, String transaction path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -19208,7 +19416,7 @@ public Future commitTransactionAsync(String companyCode, Strin path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -19261,7 +19469,7 @@ public Future commitTransactionAsync(String companyCode, Strin public TransactionModel createOrAdjustTransaction(String include, CreateOrAdjustTransactionModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/createoradjust"); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -19314,7 +19522,7 @@ public TransactionModel createOrAdjustTransaction(String include, CreateOrAdjust public Future createOrAdjustTransactionAsync(String include, CreateOrAdjustTransactionModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/createoradjust"); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -19374,7 +19582,7 @@ public Future createOrAdjustTransactionAsync(String include, C public TransactionModel createTransaction(String include, CreateTransactionModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/create"); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -19434,7 +19642,7 @@ public TransactionModel createTransaction(String include, CreateTransactionModel public Future createTransactionAsync(String include, CreateTransactionModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/create"); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -19471,7 +19679,7 @@ public Future createTransactionAsync(String include, CreateTra public TransactionModel deleteLines(String include, RemoveTransactionLineModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/transactions/lines/delete"); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -19508,7 +19716,7 @@ public TransactionModel deleteLines(String include, RemoveTransactionLineModel m public Future deleteLinesAsync(String include, RemoveTransactionLineModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/transactions/lines/delete"); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -19559,7 +19767,7 @@ public TransactionModel getTransactionByCode(String companyCode, String transact path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -19610,7 +19818,7 @@ public Future getTransactionByCodeAsync(String companyCode, St path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -19644,7 +19852,7 @@ public TransactionModel getTransactionByCodeAndType(String companyCode, String t path.applyField("transactionCode", transactionCode); path.applyField("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -19678,7 +19886,7 @@ public Future getTransactionByCodeAndTypeAsync(String companyC path.applyField("transactionCode", transactionCode); path.applyField("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -19715,7 +19923,7 @@ public TransactionModel getTransactionById(Long id, String include) throws Excep AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/{id}"); path.applyField("id", id); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -19752,7 +19960,7 @@ public Future getTransactionByIdAsync(Long id, String include) AvaTaxPath path = new AvaTaxPath("/api/v2/transactions/{id}"); path.applyField("id", id); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -19812,7 +20020,7 @@ public FetchResult listTransactionsByCompany(String companyCod path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -19872,7 +20080,7 @@ public Future> listTransactionsByCompanyAsync(Stri path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -19927,7 +20135,7 @@ public TransactionModel lockTransaction(String companyCode, String transactionCo path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -19982,7 +20190,7 @@ public Future lockTransactionAsync(String companyCode, String path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -20049,7 +20257,7 @@ public TransactionModel refundTransaction(String companyCode, String transaction path.addQuery("$include", include); path.addQuery("documentType", documentType); path.addQuery("useTaxDateOverride", useTaxDateOverride); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -20116,7 +20324,7 @@ public Future refundTransactionAsync(String companyCode, Strin path.addQuery("$include", include); path.addQuery("documentType", documentType); path.addQuery("useTaxDateOverride", useTaxDateOverride); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -20169,7 +20377,7 @@ public TransactionModel settleTransaction(String companyCode, String transaction path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -20222,7 +20430,7 @@ public Future settleTransactionAsync(String companyCode, Strin path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -20269,7 +20477,7 @@ public TransactionModel uncommitTransaction(String companyCode, String transacti path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -20316,7 +20524,7 @@ public Future uncommitTransactionAsync(String companyCode, Str path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -20360,7 +20568,7 @@ public TransactionModel unvoidTransaction(String companyCode, String transaction path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -20404,7 +20612,7 @@ public Future unvoidTransactionAsync(String companyCode, Strin path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.10.0")); } /** @@ -20456,7 +20664,7 @@ public TransactionModel verifyTransaction(String companyCode, String transaction path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -20508,7 +20716,7 @@ public Future verifyTransactionAsync(String companyCode, Strin path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -20562,7 +20770,7 @@ public TransactionModel voidTransaction(String companyCode, String transactionCo path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -20616,7 +20824,7 @@ public Future voidTransactionAsync(String companyCode, String path.applyField("transactionCode", transactionCode); path.addQuery("documentType", documentType); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -20638,7 +20846,7 @@ public Future voidTransactionAsync(String companyCode, String public ArrayList createUPCs(Integer companyId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -20660,7 +20868,7 @@ public ArrayList createUPCs(Integer companyId, ArrayList mod public Future> createUPCsAsync(Integer companyId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -20682,7 +20890,7 @@ public ArrayList deleteUPC(Integer companyId, Integer id) throws Ex AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -20704,7 +20912,7 @@ public Future> deleteUPCAsync(Integer companyId, Integer AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -20727,7 +20935,7 @@ public UPCModel getUPC(Integer companyId, Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -20750,7 +20958,7 @@ public Future getUPCAsync(Integer companyId, Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -20784,7 +20992,7 @@ public FetchResult listUPCsByCompany(Integer companyId, String filter, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -20818,7 +21026,7 @@ public Future> listUPCsByCompanyAsync(Integer companyId, S path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -20850,7 +21058,7 @@ public FetchResult queryUPCs(String filter, String include, Integer to path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -20882,7 +21090,7 @@ public Future> queryUPCsAsync(String filter, String includ path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -20908,7 +21116,7 @@ public UPCModel updateUPC(Integer companyId, Integer id, UPCModel model) throws AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -20934,7 +21142,7 @@ public Future updateUPCAsync(Integer companyId, Integer id, UPCModel m AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/upcs/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -20956,7 +21164,7 @@ public ArrayList deleteUserDefinedField(Integer companyId, Long id) AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/userdefinedfields/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -20978,7 +21186,7 @@ public Future> deleteUserDefinedFieldAsync(Integer compan AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/userdefinedfields/{id}"); path.applyField("companyId", companyId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -21002,7 +21210,7 @@ public FetchResult listUserDefinedFieldsByCompanyI path.applyField("companyId", companyId); path.addQuery("udfType", udfType); path.addQuery("allowDefaults", allowDefaults); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -21026,7 +21234,7 @@ public Future> listUserDefinedFieldsBy path.applyField("companyId", companyId); path.addQuery("udfType", udfType); path.addQuery("allowDefaults", allowDefaults); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -21049,7 +21257,7 @@ public CompanyUserDefinedFieldModel updateUserDefinedField(Integer companyId, Lo AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/userdefinedfields"); path.applyField("companyId", companyId); path.addQuery("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -21072,7 +21280,7 @@ public Future updateUserDefinedFieldAsync(Integer AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/userdefinedfields"); path.applyField("companyId", companyId); path.addQuery("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.10.0")); } /** @@ -21096,7 +21304,7 @@ public Future updateUserDefinedFieldAsync(Integer */ public String changePassword(PasswordChangeModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/passwords"); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -21120,7 +21328,7 @@ public String changePassword(PasswordChangeModel model) throws Exception { */ public Future changePasswordAsync(PasswordChangeModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/passwords"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -21148,7 +21356,7 @@ public Future changePasswordAsync(PasswordChangeModel model) { public ArrayList createUsers(Integer accountId, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/users"); path.applyField("accountId", accountId); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")).call(); } /** @@ -21176,7 +21384,7 @@ public ArrayList createUsers(Integer accountId, ArrayList public Future> createUsersAsync(Integer accountId, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/users"); path.applyField("accountId", accountId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.10.0")); } /** @@ -21202,7 +21410,7 @@ public ArrayList deleteUser(Integer id, Integer accountId) throws E AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}"); path.applyField("id", id); path.applyField("accountId", accountId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -21228,7 +21436,7 @@ public Future> deleteUserAsync(Integer id, Integer accoun AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}"); path.applyField("id", id); path.applyField("accountId", accountId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -21256,7 +21464,7 @@ public UserModel getUser(Integer id, Integer accountId, String include) throws E path.applyField("id", id); path.applyField("accountId", accountId); path.addQuery("$include", include); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -21284,7 +21492,7 @@ public Future getUserAsync(Integer id, Integer accountId, String incl path.applyField("id", id); path.applyField("accountId", accountId); path.addQuery("$include", include); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -21319,7 +21527,7 @@ public UserEntitlementModel getUserEntitlements(Integer id, Integer accountId) t AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}/entitlements"); path.applyField("id", id); path.applyField("accountId", accountId); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -21354,7 +21562,7 @@ public Future getUserEntitlementsAsync(Integer id, Integer AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}/entitlements"); path.applyField("id", id); path.applyField("accountId", accountId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -21394,7 +21602,7 @@ public FetchResult listUsersByAccount(Integer accountId, String inclu path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -21434,7 +21642,7 @@ public Future> listUsersByAccountAsync(Integer accountId, path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -21474,7 +21682,7 @@ public FetchResult queryUsers(String include, String filter, Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -21514,7 +21722,7 @@ public Future> queryUsersAsync(String include, String fil path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -21539,7 +21747,7 @@ public UserModel updateUser(Integer id, Integer accountId, UserModel model) thro AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}"); path.applyField("id", id); path.applyField("accountId", accountId); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")).call(); } /** @@ -21564,7 +21772,7 @@ public Future updateUserAsync(Integer id, Integer accountId, UserMode AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{accountId}/users/{id}"); path.applyField("id", id); path.applyField("accountId", accountId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.10.0")); } /** @@ -21585,7 +21793,7 @@ public Future updateUserAsync(Integer id, Integer accountId, UserMode public SubscriptionModel getMySubscription(String serviceTypeId) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/utilities/subscriptions/{serviceTypeId}"); path.applyField("serviceTypeId", serviceTypeId); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -21606,7 +21814,7 @@ public SubscriptionModel getMySubscription(String serviceTypeId) throws Exceptio public Future getMySubscriptionAsync(String serviceTypeId) { AvaTaxPath path = new AvaTaxPath("/api/v2/utilities/subscriptions/{serviceTypeId}"); path.applyField("serviceTypeId", serviceTypeId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /** @@ -21625,7 +21833,7 @@ public Future getMySubscriptionAsync(String serviceTypeId) { */ public FetchResult listMySubscriptions() throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/utilities/subscriptions"); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")).call(); } /** @@ -21644,7 +21852,7 @@ public FetchResult listMySubscriptions() throws Exception { */ public Future> listMySubscriptionsAsync() { AvaTaxPath path = new AvaTaxPath("/api/v2/utilities/subscriptions"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.9.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.10.0")); } /** @@ -21676,7 +21884,7 @@ public Future> listMySubscriptionsAsync() { */ public PingResultModel ping() throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/utilities/ping"); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")).call(); } /** @@ -21708,7 +21916,7 @@ public PingResultModel ping() throws Exception { */ public Future pingAsync() { AvaTaxPath path = new AvaTaxPath("/api/v2/utilities/ping"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.9.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.10.0")); } /**