diff --git a/build.sbt b/build.sbt index cd27eed5..10b76f16 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ name := """avatax-rest-v2-api-java""" organization := "net.avalara.avatax" -version := "22.3.0" +version := "22.5.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 2f6d7fc0..cd5868ec 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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -3564,7 +3564,7 @@ public Future> createCompanyParametersAsy public FundingStatusModel createFundingRequest(Integer id, FundingInitiateModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/funding/setup"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -3594,7 +3594,7 @@ public FundingStatusModel createFundingRequest(Integer id, FundingInitiateModel public Future createFundingRequestAsync(Integer id, FundingInitiateModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}/funding/setup"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -3613,7 +3613,7 @@ public Future createFundingRequestAsync(Integer id, FundingI 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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -3632,7 +3632,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -3658,7 +3658,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -3684,7 +3684,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -3707,7 +3707,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -3730,7 +3730,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -3755,7 +3755,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -3780,7 +3780,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -3813,7 +3813,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -3846,7 +3846,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -3876,7 +3876,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -3906,7 +3906,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -3933,7 +3933,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -3960,7 +3960,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -3992,7 +3992,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -4024,7 +4024,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -4051,7 +4051,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4078,7 +4078,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -4114,7 +4114,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4150,7 +4150,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -4173,7 +4173,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4196,7 +4196,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -4215,7 +4215,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4234,7 +4234,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -4277,7 +4277,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4320,7 +4320,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -4351,7 +4351,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4382,7 +4382,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -4412,7 +4412,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -4442,7 +4442,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -4470,7 +4470,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -4498,7 +4498,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -4531,7 +4531,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -4564,7 +4564,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -4586,7 +4586,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4608,7 +4608,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -4629,7 +4629,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4650,7 +4650,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -4673,7 +4673,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -4696,7 +4696,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -4726,7 +4726,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4756,7 +4756,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -4786,7 +4786,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4816,7 +4816,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -4842,7 +4842,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -4868,7 +4868,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -4903,7 +4903,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -4938,7 +4938,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -4971,7 +4971,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -5004,7 +5004,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"22.5.0")); } /** @@ -5045,7 +5045,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -5086,7 +5086,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -5123,7 +5123,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -5160,7 +5160,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -5194,7 +5194,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -5228,7 +5228,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -5263,7 +5263,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -5298,7 +5298,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -5334,7 +5334,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -5370,7 +5370,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -5413,7 +5413,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -5456,7 +5456,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -5496,7 +5496,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -5536,7 +5536,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -5582,7 +5582,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -5628,7 +5628,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -5665,7 +5665,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -5702,7 +5702,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -5736,7 +5736,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -5770,7 +5770,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -5804,7 +5804,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -5838,7 +5838,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -5859,7 +5859,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -5880,7 +5880,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -5902,7 +5902,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -5924,7 +5924,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -5946,7 +5946,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -5968,7 +5968,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -5996,7 +5996,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6024,7 +6024,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6053,7 +6053,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6082,7 +6082,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6105,7 +6105,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -6128,7 +6128,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -6158,7 +6158,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6188,7 +6188,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6211,7 +6211,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6234,7 +6234,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6253,7 +6253,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6272,7 +6272,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6297,7 +6297,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6322,7 +6322,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6350,7 +6350,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6378,7 +6378,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6404,7 +6404,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6430,7 +6430,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6456,7 +6456,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6482,7 +6482,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6504,7 +6504,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6526,7 +6526,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6547,7 +6547,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6568,7 +6568,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6589,7 +6589,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6610,7 +6610,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6631,7 +6631,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6652,7 +6652,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6674,7 +6674,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6696,7 +6696,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6723,7 +6723,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6750,7 +6750,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6786,7 +6786,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6822,7 +6822,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6844,7 +6844,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6866,7 +6866,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6889,7 +6889,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6912,7 +6912,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6936,7 +6936,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -6960,7 +6960,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -6981,7 +6981,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7002,7 +7002,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7027,7 +7027,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7052,7 +7052,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7092,7 +7092,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7132,7 +7132,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7165,7 +7165,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7198,7 +7198,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7241,7 +7241,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7284,7 +7284,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7306,7 +7306,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7328,7 +7328,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7347,7 +7347,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7366,7 +7366,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7388,7 +7388,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7410,7 +7410,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7448,7 +7448,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7486,7 +7486,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7510,7 +7510,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7534,7 +7534,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7560,7 +7560,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7586,7 +7586,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7615,7 +7615,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -7644,7 +7644,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -7668,7 +7668,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7692,7 +7692,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7713,7 +7713,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7734,7 +7734,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7755,7 +7755,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7776,7 +7776,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7797,7 +7797,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7818,7 +7818,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7839,7 +7839,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7860,7 +7860,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7881,7 +7881,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7902,7 +7902,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7923,7 +7923,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7944,7 +7944,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -7965,7 +7965,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -7986,7 +7986,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8007,7 +8007,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8028,7 +8028,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8049,7 +8049,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8070,7 +8070,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8091,7 +8091,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8112,7 +8112,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8134,7 +8134,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8156,7 +8156,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8198,7 +8198,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8240,7 +8240,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8262,7 +8262,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8284,7 +8284,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8301,7 +8301,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8318,7 +8318,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8337,7 +8337,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8356,7 +8356,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8384,7 +8384,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8412,7 +8412,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8437,7 +8437,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8462,7 +8462,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8497,7 +8497,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8532,7 +8532,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8555,7 +8555,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8578,7 +8578,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8605,7 +8605,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8632,7 +8632,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8654,7 +8654,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8676,7 +8676,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8700,7 +8700,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8724,7 +8724,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8745,7 +8745,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8766,7 +8766,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8788,7 +8788,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8810,7 +8810,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8832,7 +8832,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8854,7 +8854,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8877,7 +8877,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8900,7 +8900,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8919,7 +8919,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8938,7 +8938,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -8959,7 +8959,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -8980,7 +8980,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9003,7 +9003,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9026,7 +9026,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9047,7 +9047,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9068,7 +9068,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9097,7 +9097,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9126,7 +9126,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9144,7 +9144,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -9162,7 +9162,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -9183,7 +9183,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9204,7 +9204,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9225,7 +9225,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9246,7 +9246,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9271,7 +9271,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9296,7 +9296,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9321,7 +9321,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9346,7 +9346,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9367,7 +9367,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9388,7 +9388,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9409,7 +9409,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9430,7 +9430,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9455,7 +9455,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9480,7 +9480,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9502,7 +9502,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9524,7 +9524,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9548,7 +9548,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9572,7 +9572,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -9597,7 +9597,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9622,7 +9622,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9647,7 +9647,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -9672,7 +9672,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -9705,7 +9705,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9738,7 +9738,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9772,7 +9772,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9806,7 +9806,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -9835,7 +9835,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -9864,7 +9864,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -9886,7 +9886,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -9908,7 +9908,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -9930,7 +9930,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -9952,285 +9952,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.3.0")); - } - - /** - * Add or Edit options - * - * Returns a list of options for adding tax forms for the company and tax form code specified. - * Returns edit options when modifying a filing calendar. - * This API is available by invitation only. - * - * ### Security Policies - * - * * This API requires openId bearer token for authentication - * * This API depends on the following active services:*Returns* (at least one of): Mrs, MRSComplianceManager, AvaTaxCsp.*Firm Managed* (for accounts managed by a firm): ARA, ARAManaged. - * - * Swagger Name: AvaTaxClient - * @param companyId The unique ID of the company that owns the filing calendar object - * @param model Cycle Safe Options Request - * @return CycleSafeOptionResultModel - */ - public CycleSafeOptionResultModel cycleSafeOptions(Integer companyId, CycleSafeEditRequestModel model) throws Exception { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filingcalendars/edit/cycleSafeOptions"); - path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.3.0")).call(); - } - - /** - * Add or Edit options - * - * Returns a list of options for adding tax forms for the company and tax form code specified. - * Returns edit options when modifying a filing calendar. - * This API is available by invitation only. - * - * ### Security Policies - * - * * This API requires openId bearer token for authentication - * * This API depends on the following active services:*Returns* (at least one of): Mrs, MRSComplianceManager, AvaTaxCsp.*Firm Managed* (for accounts managed by a firm): ARA, ARAManaged. - * - * Swagger Name: AvaTaxClient - * @param companyId The unique ID of the company that owns the filing calendar object - * @param model Cycle Safe Options Request - * @return CycleSafeOptionResultModel - */ - public Future cycleSafeOptionsAsync(Integer companyId, CycleSafeEditRequestModel model) { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filingcalendars/edit/cycleSafeOptions"); - path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.3.0")); - } - - /** - * Delete a company return setting - * - * This API is available by invitation only and only available for users with Compliance access - * - * ### Security Policies - * - * * This API requires openId bearer token for authentication - * * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPTester, FirmAdmin, FirmUser, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. - * - * Swagger Name: AvaTaxClient - * @param companyId The unique ID of the company - * @param filingCalendarId The unique ID of the filing calendar that will remove setting - * @param companyReturnSettingId The unique ID of the company return setting that will be deleted from the filing calendar - * @return ArrayList - */ - public ArrayList deleteCompanyReturnSettings(Integer companyId, Integer filingCalendarId, Long companyReturnSettingId) throws Exception { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filingcalendars/{filingCalendarId}/setting/{companyReturnSettingId}"); - path.applyField("companyId", companyId); - path.applyField("filingCalendarId", filingCalendarId); - path.applyField("companyReturnSettingId", companyReturnSettingId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.3.0")).call(); - } - - /** - * Delete a company return setting - * - * This API is available by invitation only and only available for users with Compliance access - * - * ### Security Policies - * - * * This API requires openId bearer token for authentication - * * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPTester, FirmAdmin, FirmUser, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. - * - * Swagger Name: AvaTaxClient - * @param companyId The unique ID of the company - * @param filingCalendarId The unique ID of the filing calendar that will remove setting - * @param companyReturnSettingId The unique ID of the company return setting that will be deleted from the filing calendar - * @return ArrayList - */ - public Future> deleteCompanyReturnSettingsAsync(Integer companyId, Integer filingCalendarId, Long companyReturnSettingId) { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filingcalendars/{filingCalendarId}/setting/{companyReturnSettingId}"); - path.applyField("companyId", companyId); - path.applyField("filingCalendarId", filingCalendarId); - path.applyField("companyReturnSettingId", companyReturnSettingId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.3.0")); - } - - /** - * Retrieve all legacy filing calendars for this company - * - * This API is available by invitation only. - * - * ### Security Policies - * - * * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. - * * This API depends on the following active services:*Returns* (at least one of): Mrs, MRSComplianceManager, AvaTaxCsp.*Firm Managed* (for accounts managed by a firm): ARA, ARAManaged. - * - * Swagger Name: AvaTaxClient - * @param companyId The ID of the company that owns these batches - * @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/).
*Not filterable:* taxTypes, taxAuthorityId, taxAuthorityName, taxAuthorityType, settings - * @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`. - * @param returnCountry A comma separated list of countries - * @param returnRegion A comma separated list of regions - * @return FetchResult - */ - public FetchResult legacyFilingCalendars(Integer companyId, String filter, Integer top, Integer skip, String orderBy, String returnCountry, String returnRegion) throws Exception { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filingcalendars/Legacy"); - path.applyField("companyId", companyId); - path.addQuery("$filter", filter); - path.addQuery("$top", top); - path.addQuery("$skip", skip); - path.addQuery("$orderBy", orderBy); - path.addQuery("returnCountry", returnCountry); - path.addQuery("returnRegion", returnRegion); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.3.0")).call(); - } - - /** - * Retrieve all legacy filing calendars for this company - * - * This API is available by invitation only. - * - * ### Security Policies - * - * * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. - * * This API depends on the following active services:*Returns* (at least one of): Mrs, MRSComplianceManager, AvaTaxCsp.*Firm Managed* (for accounts managed by a firm): ARA, ARAManaged. - * - * Swagger Name: AvaTaxClient - * @param companyId The ID of the company that owns these batches - * @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/).
*Not filterable:* taxTypes, taxAuthorityId, taxAuthorityName, taxAuthorityType, settings - * @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`. - * @param returnCountry A comma separated list of countries - * @param returnRegion A comma separated list of regions - * @return FetchResult - */ - public Future> legacyFilingCalendarsAsync(Integer companyId, String filter, Integer top, Integer skip, String orderBy, String returnCountry, String returnRegion) { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filingcalendars/Legacy"); - path.applyField("companyId", companyId); - path.addQuery("$filter", filter); - path.addQuery("$top", top); - path.addQuery("$skip", skip); - path.addQuery("$orderBy", orderBy); - path.addQuery("returnCountry", returnCountry); - path.addQuery("returnRegion", returnRegion); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.3.0")); - } - - /** - * Retrieve a filing containing the return and all its accrual returns. - * - * - * - * ### Security Policies - * - * * This API requires openId bearer token for authentication - * * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPTester, FirmAdmin, FirmUser, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. - * - * Swagger Name: AvaTaxClient - * @param companyId The ID of the company that owns these returns - * @param filingReturnId The ID of the filing return - * @return FetchResult - */ - public FetchResult getAccrualFilings(Integer companyId, Long filingReturnId) throws Exception { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filings/accrual/{filingReturnId}"); - path.applyField("companyId", companyId); - path.applyField("filingReturnId", filingReturnId); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.3.0")).call(); - } - - /** - * Retrieve a filing containing the return and all its accrual returns. - * - * - * - * ### Security Policies - * - * * This API requires openId bearer token for authentication - * * This API requires one of the following user roles: AccountAdmin, CompanyAdmin, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPTester, FirmAdmin, FirmUser, SSTAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. - * - * Swagger Name: AvaTaxClient - * @param companyId The ID of the company that owns these returns - * @param filingReturnId The ID of the filing return - * @return FetchResult - */ - public Future> getAccrualFilingsAsync(Integer companyId, Long filingReturnId) { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filings/accrual/{filingReturnId}"); - path.applyField("companyId", companyId); - path.applyField("filingReturnId", filingReturnId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.3.0")); - } - - /** - * Retrieve a list of filed returns for the specified company in the year and month of a given filing period. - * - * - * - * ### Security Policies - * - * * This API requires openId bearer token for authentication - * * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, ProStoresOperator, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. - * * This API is available by invitation only.*Exempt security roles*: ComplianceRootUser, ComplianceAdmin, ComplianceUser, TechnicalSupportAdmin, TechnicalSupportUser, CompanyUser, AccountUser, CompanyAdmin, AccountAdmin. - * * This API depends on the following active services:*Returns* (at least one of): Mrs, MRSComplianceManager, AvaTaxCsp.*Firm Managed* (for accounts managed by a firm): ARA, ARAManaged. - * - * Swagger Name: AvaTaxClient - * @param companyId The ID of the company that owns these batches - * @param endPeriodMonth The month of the period you are trying to retrieve - * @param endPeriodYear The year of the period you are trying to retrieve - * @param frequency The frequency of the return you are trying to retrieve (See FilingFrequencyId::* for a list of allowable values) - * @param status The status of the return(s) you are trying to retrieve (See FilingStatusId::* for a list of allowable values) - * @param country The country of the return(s) you are trying to retrieve - * @param region The region of the return(s) you are trying to retrieve - * @param filingCalendarId The filing calendar id of the return you are trying to retrieve - * @param taxformCode The unique tax form code of the form. - * @return FetchResult - */ - public FetchResult getFiledReturns(Integer companyId, Integer endPeriodMonth, Integer endPeriodYear, FilingFrequencyId frequency, FilingStatusId status, String country, String region, Long filingCalendarId, String taxformCode) throws Exception { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filings/returns/filed"); - path.applyField("companyId", companyId); - path.addQuery("endPeriodMonth", endPeriodMonth); - path.addQuery("endPeriodYear", endPeriodYear); - path.addQuery("frequency", frequency); - path.addQuery("status", status); - path.addQuery("country", country); - path.addQuery("region", region); - path.addQuery("filingCalendarId", filingCalendarId); - path.addQuery("taxformCode", taxformCode); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.3.0")).call(); - } - - /** - * Retrieve a list of filed returns for the specified company in the year and month of a given filing period. - * - * - * - * ### Security Policies - * - * * This API requires openId bearer token for authentication - * * This API requires one of the following user roles: AccountAdmin, AccountOperator, AccountUser, CompanyAdmin, CompanyUser, Compliance Root User, ComplianceAdmin, ComplianceUser, CSPAdmin, CSPTester, FirmAdmin, FirmUser, ProStoresOperator, Registrar, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser, TreasuryAdmin, TreasuryUser. - * * This API is available by invitation only.*Exempt security roles*: ComplianceRootUser, ComplianceAdmin, ComplianceUser, TechnicalSupportAdmin, TechnicalSupportUser, CompanyUser, AccountUser, CompanyAdmin, AccountAdmin. - * * This API depends on the following active services:*Returns* (at least one of): Mrs, MRSComplianceManager, AvaTaxCsp.*Firm Managed* (for accounts managed by a firm): ARA, ARAManaged. - * - * Swagger Name: AvaTaxClient - * @param companyId The ID of the company that owns these batches - * @param endPeriodMonth The month of the period you are trying to retrieve - * @param endPeriodYear The year of the period you are trying to retrieve - * @param frequency The frequency of the return you are trying to retrieve (See FilingFrequencyId::* for a list of allowable values) - * @param status The status of the return(s) you are trying to retrieve (See FilingStatusId::* for a list of allowable values) - * @param country The country of the return(s) you are trying to retrieve - * @param region The region of the return(s) you are trying to retrieve - * @param filingCalendarId The filing calendar id of the return you are trying to retrieve - * @param taxformCode The unique tax form code of the form. - * @return FetchResult - */ - public Future> getFiledReturnsAsync(Integer companyId, Integer endPeriodMonth, Integer endPeriodYear, FilingFrequencyId frequency, FilingStatusId status, String country, String region, Long filingCalendarId, String taxformCode) { - AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/filings/returns/filed"); - path.applyField("companyId", companyId); - path.addQuery("endPeriodMonth", endPeriodMonth); - path.addQuery("endPeriodYear", endPeriodYear); - path.addQuery("frequency", frequency); - path.addQuery("status", status); - path.addQuery("country", country); - path.addQuery("region", region); - path.addQuery("filingCalendarId", filingCalendarId); - path.addQuery("taxformCode", taxformCode); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -10249,7 +9971,7 @@ public Future> getFiledReturnsAsync(Integer compan 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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -10268,7 +9990,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")); } /** @@ -10295,7 +10017,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -10322,7 +10044,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -10340,7 +10062,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -10358,7 +10080,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -10377,7 +10099,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -10396,7 +10118,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -10415,7 +10137,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -10434,7 +10156,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -10453,7 +10175,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -10472,7 +10194,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -10491,7 +10213,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -10510,7 +10232,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")); } /** @@ -10529,7 +10251,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -10548,7 +10270,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")); } /** @@ -10567,7 +10289,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -10586,7 +10308,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")); } /** @@ -10613,7 +10335,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -10640,7 +10362,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -10671,7 +10393,7 @@ public Future requestFreeTrialAsync(FreeTrialRequestModel model public FundingStatusModel activateFundingRequest(Long id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/fundingrequests/{id}/widget"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -10702,7 +10424,7 @@ public FundingStatusModel activateFundingRequest(Long id) throws Exception { public Future activateFundingRequestAsync(Long id) { AvaTaxPath path = new AvaTaxPath("/api/v2/fundingrequests/{id}/widget"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -10731,7 +10453,7 @@ public Future activateFundingRequestAsync(Long id) { public FundingStatusModel fundingRequestStatus(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/fundingrequests/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -10760,7 +10482,7 @@ public FundingStatusModel fundingRequestStatus(Integer id) throws Exception { public Future fundingRequestStatusAsync(Integer id) { AvaTaxPath path = new AvaTaxPath("/api/v2/fundingrequests/{id}"); path.applyField("id", id); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -10785,7 +10507,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -10810,7 +10532,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -10837,7 +10559,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -10864,7 +10586,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -10892,7 +10614,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -10920,7 +10642,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -10948,7 +10670,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -10976,7 +10698,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -11008,7 +10730,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11040,7 +10762,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -11068,7 +10790,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11096,7 +10818,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -11120,7 +10842,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11144,7 +10866,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -11168,7 +10890,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -11192,7 +10914,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -11227,7 +10949,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11262,7 +10984,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -11291,7 +11013,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11320,7 +11042,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -11347,7 +11069,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11374,7 +11096,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -11403,7 +11125,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11432,7 +11154,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -11457,7 +11179,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11482,7 +11204,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -11505,7 +11227,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11528,7 +11250,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -11563,7 +11285,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11598,7 +11320,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -11627,7 +11349,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -11656,7 +11378,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -11683,7 +11405,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -11710,7 +11432,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -11739,7 +11461,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -11768,7 +11490,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -11797,7 +11519,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11826,7 +11548,71 @@ 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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); + } + + /** + * Retrieve premium classification for a company's item based on its ItemCode and SystemCode. + * + * Retrieves the premium classification for an ItemCode and SystemCode. + * + * NOTE: If your item code contains any of these characters /, +, ?,",' ,% or #, please use the following encoding before making a request: + * * Replace '/' with '\_-ava2f-\_' For example: 'Item/Code' becomes 'Item_-ava2f-_Code' + * * Replace '+' with '\_-ava2b-\_' For example: 'Item+Code' becomes 'Item_-ava2b-_Code' + * * Replace '?' with '\_-ava3f-\_' For example: 'Item?Code' becomes 'Item_-ava3f-_Code' + * * Replace '%' with '\_-ava25-\_' For example: 'Item%Code' becomes 'Item_-ava25-_Code' + * * Replace '#' with '\_-ava23-\_' For example: 'Item#Code' becomes 'Item_-ava23-_Code' + * * Replace ''' with '\_-ava27-\_' For example: 'Item'Code' becomes 'Item_-ava27-_Code' + * * Replace '"' with '\_-ava22-\_' For example: 'Item"Code' becomes 'Item_-ava22-_Code' + * + * ### Security Policies + * + * * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser. + * + * Swagger Name: AvaTaxClient + * @param companyId The ID of the company that owns this item object + * @param itemCode The ItemCode of the item for which you want to retrieve premium classification + * @param systemCode The SystemCode for which you want to retrieve premium classification + * @return ItemPremiumClassificationOutputModel + */ + public ItemPremiumClassificationOutputModel getPremiumClassification(Integer companyId, String itemCode, String systemCode) throws Exception { + AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemCode}/premiumClassification/{systemCode}"); + path.applyField("companyId", companyId); + path.applyField("itemCode", itemCode); + path.applyField("systemCode", systemCode); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); + } + + /** + * Retrieve premium classification for a company's item based on its ItemCode and SystemCode. + * + * Retrieves the premium classification for an ItemCode and SystemCode. + * + * NOTE: If your item code contains any of these characters /, +, ?,",' ,% or #, please use the following encoding before making a request: + * * Replace '/' with '\_-ava2f-\_' For example: 'Item/Code' becomes 'Item_-ava2f-_Code' + * * Replace '+' with '\_-ava2b-\_' For example: 'Item+Code' becomes 'Item_-ava2b-_Code' + * * Replace '?' with '\_-ava3f-\_' For example: 'Item?Code' becomes 'Item_-ava3f-_Code' + * * Replace '%' with '\_-ava25-\_' For example: 'Item%Code' becomes 'Item_-ava25-_Code' + * * Replace '#' with '\_-ava23-\_' For example: 'Item#Code' becomes 'Item_-ava23-_Code' + * * Replace ''' with '\_-ava27-\_' For example: 'Item'Code' becomes 'Item_-ava27-_Code' + * * Replace '"' with '\_-ava22-\_' For example: 'Item"Code' becomes 'Item_-ava22-_Code' + * + * ### Security Policies + * + * * This API requires one of the following user roles: AccountAdmin, AccountUser, CompanyAdmin, CompanyUser, CSPAdmin, CSPTester, SiteAdmin, SSTAdmin, SystemAdmin, TechnicalSupportAdmin, TechnicalSupportUser. + * + * Swagger Name: AvaTaxClient + * @param companyId The ID of the company that owns this item object + * @param itemCode The ItemCode of the item for which you want to retrieve premium classification + * @param systemCode The SystemCode for which you want to retrieve premium classification + * @return ItemPremiumClassificationOutputModel + */ + public Future getPremiumClassificationAsync(Integer companyId, String itemCode, String systemCode) { + AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemCode}/premiumClassification/{systemCode}"); + 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.5.0")); } /** @@ -11859,7 +11645,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11892,7 +11678,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -11930,7 +11716,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -11968,7 +11754,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -12004,7 +11790,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -12040,7 +11826,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -12078,7 +11864,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -12116,7 +11902,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -12165,7 +11951,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -12214,7 +12000,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -12251,7 +12037,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -12288,7 +12074,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -12329,7 +12115,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -12370,7 +12156,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -12394,7 +12180,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -12418,7 +12204,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -12449,7 +12235,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -12480,7 +12266,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -12513,7 +12299,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -12546,7 +12332,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -12576,7 +12362,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -12606,7 +12392,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -12636,7 +12422,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -12666,7 +12452,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -12691,7 +12477,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -12716,7 +12502,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -12737,7 +12523,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -12758,7 +12544,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -12784,7 +12570,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -12810,7 +12596,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -12847,7 +12633,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -12884,7 +12670,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -12919,7 +12705,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -12954,7 +12740,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -12976,7 +12762,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -12998,7 +12784,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -13030,7 +12816,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -13062,7 +12848,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -13082,7 +12868,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -13102,7 +12888,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -13123,7 +12909,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -13144,7 +12930,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -13173,7 +12959,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -13202,7 +12988,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -13234,7 +13020,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -13266,7 +13052,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -13295,7 +13081,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -13324,7 +13110,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -13362,7 +13148,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -13400,7 +13186,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -13440,7 +13226,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -13480,7 +13266,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -13519,7 +13305,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -13558,7 +13344,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -13582,7 +13368,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -13606,7 +13392,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -13636,7 +13422,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -13666,7 +13452,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -13689,7 +13475,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -13712,7 +13498,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -13754,7 +13540,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -13796,7 +13582,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -13839,7 +13625,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -13882,7 +13668,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -13916,7 +13702,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -13950,7 +13736,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -14010,7 +13796,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -14070,7 +13856,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -14113,7 +13899,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -14156,7 +13942,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -14206,7 +13992,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -14256,7 +14042,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -14310,7 +14096,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -14364,7 +14150,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -14432,7 +14218,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -14500,7 +14286,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -14532,7 +14318,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -14564,7 +14350,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -14603,7 +14389,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -14642,7 +14428,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -14680,7 +14466,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -14718,7 +14504,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -14749,7 +14535,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -14780,7 +14566,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -14814,7 +14600,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -14848,7 +14634,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -14878,7 +14664,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -14908,7 +14694,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -14936,7 +14722,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -14964,7 +14750,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -14990,7 +14776,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -15016,7 +14802,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -15046,7 +14832,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -15076,7 +14862,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -15110,7 +14896,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -15144,7 +14930,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -15172,7 +14958,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -15200,7 +14986,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -15239,7 +15025,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -15278,7 +15064,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -15319,7 +15105,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -15360,7 +15146,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -15397,7 +15183,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -15434,7 +15220,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -15471,7 +15257,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -15508,7 +15294,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -15548,7 +15334,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -15588,7 +15374,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -15618,7 +15404,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -15648,7 +15434,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -15667,7 +15453,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -15686,7 +15472,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -15705,7 +15491,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -15724,7 +15510,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -15743,7 +15529,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -15762,7 +15548,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -15781,7 +15567,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -15800,7 +15586,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -15832,7 +15618,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -15864,7 +15650,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, null, new TypeToken(){},"22.5.0")); } /** @@ -15890,7 +15676,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -15916,7 +15702,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -15951,7 +15737,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -15986,7 +15772,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -16019,7 +15805,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -16052,7 +15838,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -16076,7 +15862,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -16100,7 +15886,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")); } /** @@ -16122,7 +15908,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -16144,7 +15930,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -16175,7 +15961,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -16206,7 +15992,7 @@ 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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -16230,7 +16016,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -16254,7 +16040,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -16277,7 +16063,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -16300,7 +16086,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -16329,7 +16115,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -16358,7 +16144,7 @@ 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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -16382,7 +16168,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -16406,7 +16192,7 @@ 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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -16426,15 +16212,15 @@ public Future> deleteSubscriptionAsync(Integer accountId, * * Swagger Name: AvaTaxClient * @param userId The unique ID of the user whose password will be changed - * @param unmigrateFromAi If user's password was migrated to AI, undo this. + * @param isUndoMigrateRequest If user's password was migrated to AI, undo this. * @param model The new password for this user * @return String */ - public String resetPassword(Integer userId, Boolean unmigrateFromAi, SetPasswordModel model) throws Exception { + public String resetPassword(Integer userId, Boolean isUndoMigrateRequest, SetPasswordModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/passwords/{userId}/reset"); path.applyField("userId", userId); - path.addQuery("unmigrateFromAi", unmigrateFromAi); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.3.0")).call(); + path.addQuery("isUndoMigrateRequest", isUndoMigrateRequest); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -16454,15 +16240,15 @@ public String resetPassword(Integer userId, Boolean unmigrateFromAi, SetPassword * * Swagger Name: AvaTaxClient * @param userId The unique ID of the user whose password will be changed - * @param unmigrateFromAi If user's password was migrated to AI, undo this. + * @param isUndoMigrateRequest If user's password was migrated to AI, undo this. * @param model The new password for this user * @return String */ - public Future resetPasswordAsync(Integer userId, Boolean unmigrateFromAi, SetPasswordModel model) { + public Future resetPasswordAsync(Integer userId, Boolean isUndoMigrateRequest, SetPasswordModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/passwords/{userId}/reset"); path.applyField("userId", userId); - path.addQuery("unmigrateFromAi", unmigrateFromAi); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.3.0")); + path.addQuery("isUndoMigrateRequest", isUndoMigrateRequest); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -16485,7 +16271,7 @@ public Future resetPasswordAsync(Integer userId, Boolean unmigrateFromAi 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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -16508,7 +16294,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -16538,7 +16324,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -16568,7 +16354,7 @@ 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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -16597,7 +16383,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -16626,7 +16412,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -16658,7 +16444,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -16690,7 +16476,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -16714,7 +16500,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -16738,7 +16524,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -16777,7 +16563,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -16816,7 +16602,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -16851,7 +16637,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -16886,7 +16672,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -16920,7 +16706,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -16954,7 +16740,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -16984,7 +16770,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -17014,7 +16800,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -17044,7 +16830,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -17074,7 +16860,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -17115,7 +16901,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -17156,7 +16942,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -17195,7 +16981,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -17234,7 +17020,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -17269,7 +17055,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -17304,7 +17090,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -17327,7 +17113,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -17350,7 +17136,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -17382,7 +17168,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -17414,7 +17200,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -17444,7 +17230,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -17474,7 +17260,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -17498,7 +17284,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -17522,7 +17308,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -17543,7 +17329,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -17564,7 +17350,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -17589,7 +17375,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -17614,7 +17400,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -17650,7 +17436,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -17686,7 +17472,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -17720,7 +17506,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -17754,7 +17540,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -17782,7 +17568,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -17810,7 +17596,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -17851,7 +17637,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -17892,7 +17678,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -17944,7 +17730,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -17996,7 +17782,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -18056,7 +17842,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -18116,7 +17902,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -18161,7 +17947,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -18206,7 +17992,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -18243,7 +18029,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -18280,7 +18066,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -18312,7 +18098,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -18344,7 +18130,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -18377,7 +18163,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -18410,7 +18196,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -18443,7 +18229,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -18476,7 +18262,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -18520,7 +18306,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -18564,7 +18350,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -18606,7 +18392,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -18648,7 +18434,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -18682,7 +18468,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -18716,7 +18502,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -18756,7 +18542,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -18796,7 +18582,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -18851,7 +18637,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -18906,7 +18692,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -18950,7 +18736,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -18994,7 +18780,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -19040,7 +18826,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -19086,7 +18872,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -19111,7 +18897,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -19136,7 +18922,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -19191,7 +18977,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -19246,7 +19032,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -19299,7 +19085,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -19352,7 +19138,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -19405,7 +19191,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -19458,7 +19244,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -19518,7 +19304,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -19578,7 +19364,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -19615,7 +19401,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -19652,7 +19438,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -19703,7 +19489,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -19754,7 +19540,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -19788,7 +19574,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -19822,7 +19608,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -19859,7 +19645,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -19896,7 +19682,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -19956,7 +19742,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -20016,7 +19802,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -20071,7 +19857,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -20126,7 +19912,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -20193,7 +19979,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -20260,7 +20046,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -20313,7 +20099,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -20366,7 +20152,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -20413,7 +20199,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -20460,7 +20246,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")); } /** @@ -20504,7 +20290,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -20548,7 +20334,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"22.5.0")); } /** @@ -20600,7 +20386,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -20652,7 +20438,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -20706,7 +20492,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -20760,7 +20546,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -20782,7 +20568,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -20804,7 +20590,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -20826,7 +20612,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -20848,7 +20634,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -20871,7 +20657,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -20894,7 +20680,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -20928,7 +20714,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -20962,7 +20748,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -20994,7 +20780,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -21026,7 +20812,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -21052,7 +20838,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -21078,7 +20864,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -21100,7 +20886,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -21122,7 +20908,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -21146,7 +20932,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -21170,7 +20956,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -21193,7 +20979,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -21216,7 +21002,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"22.5.0")); } /** @@ -21240,7 +21026,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -21264,7 +21050,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -21292,7 +21078,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")).call(); } /** @@ -21320,7 +21106,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"22.5.0")); } /** @@ -21346,7 +21132,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -21372,7 +21158,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -21400,7 +21186,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -21428,7 +21214,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -21463,7 +21249,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -21498,7 +21284,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -21538,7 +21324,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -21578,7 +21364,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -21618,7 +21404,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -21658,7 +21444,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -21683,7 +21469,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")).call(); } /** @@ -21708,7 +21494,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"22.5.0")); } /** @@ -21729,7 +21515,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -21750,7 +21536,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** @@ -21769,7 +21555,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.3.0")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")).call(); } /** @@ -21788,7 +21574,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.3.0")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"22.5.0")); } /** @@ -21820,7 +21606,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.3.0")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")).call(); } /** @@ -21852,7 +21638,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.3.0")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"22.5.0")); } /** diff --git a/src/main/java/net/avalara/avatax/rest/client/enums/ErrorCodeId.java b/src/main/java/net/avalara/avatax/rest/client/enums/ErrorCodeId.java index 753fcb60..f4f99604 100644 --- a/src/main/java/net/avalara/avatax/rest/client/enums/ErrorCodeId.java +++ b/src/main/java/net/avalara/avatax/rest/client/enums/ErrorCodeId.java @@ -1490,6 +1490,11 @@ public enum ErrorCodeId { */ InvalidParameter(1734), + /** + * + */ + InvalidSystemCode(1735), + /** * */ diff --git a/src/main/java/net/avalara/avatax/rest/client/enums/FilingStatusId.java b/src/main/java/net/avalara/avatax/rest/client/enums/FilingStatusId.java index 43c00c05..8309d45d 100644 --- a/src/main/java/net/avalara/avatax/rest/client/enums/FilingStatusId.java +++ b/src/main/java/net/avalara/avatax/rest/client/enums/FilingStatusId.java @@ -103,7 +103,12 @@ public enum FilingStatusId { /** * */ - ApprovedToFileOnBehalf(16); + ApprovedToFileOnBehalf(16), + + /** + * + */ + FiledByCustomer(17); private int value; private static HashMap map = new HashMap<>(); diff --git a/src/main/java/net/avalara/avatax/rest/client/enums/ReportSource.java b/src/main/java/net/avalara/avatax/rest/client/enums/ReportSource.java new file mode 100644 index 00000000..db4a2351 --- /dev/null +++ b/src/main/java/net/avalara/avatax/rest/client/enums/ReportSource.java @@ -0,0 +1,53 @@ +package net.avalara.avatax.rest.client.enums; +import java.util.HashMap; + +/* + * AvaTax Software Development Kit for Java JRE based environments + * + * (c) 2004-2018 Avalara, Inc. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @author Dustin Welden + * @copyright 2004-2018 Avalara, Inc. + * @license https://www.apache.org/licenses/LICENSE-2.0 + * @link https://github.com/avadev/AvaTax-REST-V2-JRE-SDK + * Swagger name: AvaTaxClient + */ + +/** + * + */ +public enum ReportSource { + /** + * + */ + SNOWFLAKE(0), + + /** + * + */ + MONGODB(1); + + private int value; + private static HashMap map = new HashMap<>(); + + private ReportSource(int value) { + this.value = value; + } + + static { + for (ReportSource enumName : ReportSource.values()) { + map.put(enumName.value, enumName); + } + } + + public static ReportSource valueOf(int intValue) { + return (ReportSource) map.get(intValue); + } + + public int getValue() { + return value; + } +} diff --git a/src/main/java/net/avalara/avatax/rest/client/models/AgeVerifyResult.java b/src/main/java/net/avalara/avatax/rest/client/models/AgeVerifyResult.java index c0c12d7a..86c2b7f7 100644 --- a/src/main/java/net/avalara/avatax/rest/client/models/AgeVerifyResult.java +++ b/src/main/java/net/avalara/avatax/rest/client/models/AgeVerifyResult.java @@ -50,14 +50,14 @@ public void setIsOfAge(Boolean value) { this.isOfAge = value; } - private ArrayList failureCodes; + private ArrayList failureCodes; /** * Getter for failureCodes * * A list of failure codes describing why a *false* age determination was made. */ - public ArrayList getFailureCodes() { + public ArrayList getFailureCodes() { return this.failureCodes; } @@ -66,7 +66,7 @@ public ArrayList getFailureCodes() { * * A list of failure codes describing why a *false* age determination was made. */ - public void setFailureCodes(ArrayList value) { + public void setFailureCodes(ArrayList value) { this.failureCodes = value; } diff --git a/src/main/java/net/avalara/avatax/rest/client/models/ClassificationDetailsModel.java b/src/main/java/net/avalara/avatax/rest/client/models/ClassificationDetailsModel.java index dc2bbf33..dadec1f0 100644 --- a/src/main/java/net/avalara/avatax/rest/client/models/ClassificationDetailsModel.java +++ b/src/main/java/net/avalara/avatax/rest/client/models/ClassificationDetailsModel.java @@ -90,6 +90,46 @@ public void setNotClassified(Integer value) { this.notClassified = value; } + private Integer failed; + + /** + * Getter for failed + * + * The number of items which are failed because of some error + */ + public Integer getFailed() { + return this.failed; + } + + /** + * Setter for failed + * + * The number of items which are failed because of some error + */ + public void setFailed(Integer value) { + this.failed = value; + } + + private Integer notFound; + + /** + * Getter for notFound + * + * The number of items which are not found as they may be deleted + */ + public Integer getNotFound() { + return this.notFound; + } + + /** + * Setter for notFound + * + * The number of items which are not found as they may be deleted + */ + public void setNotFound(Integer value) { + this.notFound = value; + } + /** * Returns a JSON string representation of ClassificationDetailsModel */ diff --git a/src/main/java/net/avalara/avatax/rest/client/models/ExportDocumentLineModel.java b/src/main/java/net/avalara/avatax/rest/client/models/ExportDocumentLineModel.java index e2efefe8..ea21861b 100644 --- a/src/main/java/net/avalara/avatax/rest/client/models/ExportDocumentLineModel.java +++ b/src/main/java/net/avalara/avatax/rest/client/models/ExportDocumentLineModel.java @@ -442,6 +442,26 @@ public void setTaxSubType(String value) { this.taxSubType = value; } + private ReportSource reportSource; + + /** + * Getter for reportSource + * + * Defines report source. + */ + public ReportSource getReportSource() { + return this.reportSource; + } + + /** + * Setter for reportSource + * + * Defines report source. + */ + public void setReportSource(ReportSource value) { + this.reportSource = value; + } + /** * Returns a JSON string representation of ExportDocumentLineModel */ diff --git a/src/main/java/net/avalara/avatax/rest/client/models/ItemCatalogueInputModel.java b/src/main/java/net/avalara/avatax/rest/client/models/ItemCatalogueInputModel.java index 3b5bf701..a1cf4882 100644 --- a/src/main/java/net/avalara/avatax/rest/client/models/ItemCatalogueInputModel.java +++ b/src/main/java/net/avalara/avatax/rest/client/models/ItemCatalogueInputModel.java @@ -90,46 +90,6 @@ public void setSummary(String value) { this.summary = value; } - private Integer accountId; - - /** - * Getter for accountId - * - * The account ID that owns this item. - */ - public Integer getAccountId() { - return this.accountId; - } - - /** - * Setter for accountId - * - * The account ID that owns this item. - */ - public void setAccountId(Integer value) { - this.accountId = value; - } - - private Integer companyId; - - /** - * Getter for companyId - * - * The unique ID of the company that owns this item. - */ - public Integer getCompanyId() { - return this.companyId; - } - - /** - * Setter for companyId - * - * The unique ID of the company that owns this item. - */ - public void setCompanyId(Integer value) { - this.companyId = value; - } - private String taxCode; /** @@ -210,26 +170,6 @@ public void setCategory(String value) { this.category = value; } - private ArrayList productCategories; - - /** - * Getter for productCategories - * - * The AvaTax category to identify the product. - */ - public ArrayList getProductCategories() { - return this.productCategories; - } - - /** - * Setter for productCategories - * - * The AvaTax category to identify the product. - */ - public void setProductCategories(ArrayList value) { - this.productCategories = value; - } - private String source; /** diff --git a/src/main/java/net/avalara/avatax/rest/client/models/ItemPremiumClassificationInputModel.java b/src/main/java/net/avalara/avatax/rest/client/models/ItemPremiumClassificationInputModel.java new file mode 100644 index 00000000..23942705 --- /dev/null +++ b/src/main/java/net/avalara/avatax/rest/client/models/ItemPremiumClassificationInputModel.java @@ -0,0 +1,80 @@ +package net.avalara.avatax.rest.client.models; + +import net.avalara.avatax.rest.client.enums.*; +import net.avalara.avatax.rest.client.serializer.JsonSerializer; + +import java.lang.Override; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.Date; +import java.util.HashMap; + +/* + * AvaTax Software Development Kit for Java JRE based environments + * + * (c) 2004-2018 Avalara, Inc. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @author Dustin Welden + * @copyright 2004-2018 Avalara, Inc. + * @license https://www.apache.org/licenses/LICENSE-2.0 + * @link https://github.com/avadev/AvaTax-REST-V2-JRE-SDK + * Swagger name: AvaTaxClient + */ + +/** + * Represents a premium classification associated with an item's HS code for a system code. + */ +public class ItemPremiumClassificationInputModel { + + + private String hsCode; + + /** + * Getter for hsCode + * + * The HsCode for which this premium classification is being created. + */ + public String getHsCode() { + return this.hsCode; + } + + /** + * Setter for hsCode + * + * The HsCode for which this premium classification is being created. + */ + public void setHsCode(String value) { + this.hsCode = value; + } + + private String justification; + + /** + * Getter for justification + * + * Justification why this HsCode is attached to this item. + */ + public String getJustification() { + return this.justification; + } + + /** + * Setter for justification + * + * Justification why this HsCode is attached to this item. + */ + public void setJustification(String value) { + this.justification = value; + } + + /** + * Returns a JSON string representation of ItemPremiumClassificationInputModel + */ + @Override + public String toString() { + return JsonSerializer.SerializeObject(this); + } +} diff --git a/src/main/java/net/avalara/avatax/rest/client/models/ItemPremiumClassificationOutputModel.java b/src/main/java/net/avalara/avatax/rest/client/models/ItemPremiumClassificationOutputModel.java new file mode 100644 index 00000000..b138530f --- /dev/null +++ b/src/main/java/net/avalara/avatax/rest/client/models/ItemPremiumClassificationOutputModel.java @@ -0,0 +1,200 @@ +package net.avalara.avatax.rest.client.models; + +import net.avalara.avatax.rest.client.enums.*; +import net.avalara.avatax.rest.client.serializer.JsonSerializer; + +import java.lang.Override; +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.Date; +import java.util.HashMap; + +/* + * AvaTax Software Development Kit for Java JRE based environments + * + * (c) 2004-2018 Avalara, Inc. + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @author Dustin Welden + * @copyright 2004-2018 Avalara, Inc. + * @license https://www.apache.org/licenses/LICENSE-2.0 + * @link https://github.com/avadev/AvaTax-REST-V2-JRE-SDK + * Swagger name: AvaTaxClient + */ + +/** + * Represents a Premium Classification output model associated with an item's SystemCode.. + */ +public class ItemPremiumClassificationOutputModel { + + + private String id; + + /** + * Getter for id + * + * ItemPremiumClassificationDetailId + */ + public String getId() { + return this.id; + } + + /** + * Setter for id + * + * ItemPremiumClassificationDetailId + */ + public void setId(String value) { + this.id = value; + } + + private String itemCode; + + /** + * Getter for itemCode + * + * Item associated with this premium classification. + */ + public String getItemCode() { + return this.itemCode; + } + + /** + * Setter for itemCode + * + * Item associated with this premium classification. + */ + public void setItemCode(String value) { + this.itemCode = value; + } + + private Integer companyId; + + /** + * Getter for companyId + * + * CompanyId with which the Item is associated. + */ + public Integer getCompanyId() { + return this.companyId; + } + + /** + * Setter for companyId + * + * CompanyId with which the Item is associated. + */ + public void setCompanyId(Integer value) { + this.companyId = value; + } + + private String hsCode; + + /** + * Getter for hsCode + * + * The HS code associated with this item's premium classification. + */ + public String getHsCode() { + return this.hsCode; + } + + /** + * Setter for hsCode + * + * The HS code associated with this item's premium classification. + */ + public void setHsCode(String value) { + this.hsCode = value; + } + + private String systemCode; + + /** + * Getter for systemCode + * + * SystemCode associated with this premium classificaitons. + */ + public String getSystemCode() { + return this.systemCode; + } + + /** + * Setter for systemCode + * + * SystemCode associated with this premium classificaitons. + */ + public void setSystemCode(String value) { + this.systemCode = value; + } + + private String justification; + + /** + * Getter for justification + * + * Justification why this HsCode is attached to this item. + */ + public String getJustification() { + return this.justification; + } + + /** + * Setter for justification + * + * Justification why this HsCode is attached to this item. + */ + public void setJustification(String value) { + this.justification = value; + } + + private Date createdDate; + + /** + * Getter for createdDate + * + * The date when this record was created. + */ + public Date getCreatedDate() { + return this.createdDate; + } + + /** + * Setter for createdDate + * + * The date when this record was created. + */ + public void setCreatedDate(Date value) { + this.createdDate = value; + } + + private Integer createdUserId; + + /** + * Getter for createdUserId + * + * The user who created the record. + */ + public Integer getCreatedUserId() { + return this.createdUserId; + } + + /** + * Setter for createdUserId + * + * The user who created the record. + */ + public void setCreatedUserId(Integer value) { + this.createdUserId = value; + } + + /** + * Returns a JSON string representation of ItemPremiumClassificationOutputModel + */ + @Override + public String toString() { + return JsonSerializer.SerializeObject(this); + } +} diff --git a/src/main/java/net/avalara/avatax/rest/client/models/NoticeModel.java b/src/main/java/net/avalara/avatax/rest/client/models/NoticeModel.java index a2554425..1767c461 100644 --- a/src/main/java/net/avalara/avatax/rest/client/models/NoticeModel.java +++ b/src/main/java/net/avalara/avatax/rest/client/models/NoticeModel.java @@ -1002,6 +1002,26 @@ public void setModifiedUserId(Integer value) { this.modifiedUserId = value; } + private String registrationId; + + /** + * Getter for registrationId + * + * The registration id of the notice + */ + public String getRegistrationId() { + return this.registrationId; + } + + /** + * Setter for registrationId + * + * The registration id of the notice + */ + public void setRegistrationId(String value) { + this.registrationId = value; + } + /** * Returns a JSON string representation of NoticeModel */ diff --git a/src/main/java/net/avalara/avatax/rest/client/models/SetPasswordModel.java b/src/main/java/net/avalara/avatax/rest/client/models/SetPasswordModel.java index 92b09380..a686e968 100644 --- a/src/main/java/net/avalara/avatax/rest/client/models/SetPasswordModel.java +++ b/src/main/java/net/avalara/avatax/rest/client/models/SetPasswordModel.java @@ -50,6 +50,26 @@ public void setNewPassword(String value) { this.newPassword = value; } + private Boolean suppressResetPasswordEmail; + + /** + * Getter for suppressResetPasswordEmail + * + * SuppressResetPasswordEmail + */ + public Boolean getSuppressResetPasswordEmail() { + return this.suppressResetPasswordEmail; + } + + /** + * Setter for suppressResetPasswordEmail + * + * SuppressResetPasswordEmail + */ + public void setSuppressResetPasswordEmail(Boolean value) { + this.suppressResetPasswordEmail = value; + } + /** * Returns a JSON string representation of SetPasswordModel */